cancel
Showing results for 
Search instead for 
Did you mean: 

Custom dropdown field mandatory in Bid response

aromalr
Active Participant
0 Kudos

Hi,

I have to make a custom field in Bid reponse screen as mandatory field. For this I have used the maintanace view /SAPSRM/V_MDF_IC to bring the mandatory symbol in the screen also. To make the madatory check I am trying to implement the badi BBP_DOC_CHECK_BADI.

My issue is using the guid gow to get the current screen values item details . ( the funtion module BBP_PDS_QUOT_ITEM_D is returing saved values only).

Regards

Aromal

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Try this. If it works to get the data from buffer instance.



  DATA: LO_PD_MODEL    TYPE REF TO /SAPSRM/IF_PDO_MODEL_ACCESS.

  LO_PD_MODEL = /SAPSRM/CL_PDO_MODEL_FACTORY=>GET_INSTANCE( ).

  LO_PD_MODEL->GET_DETAIL( EXPORTING IV_GUID    = IV_DOC_GUID
                           IMPORTING                                      ET_ITEM    = LT_ITEM ).

Answers (1)

Answers (1)

aromalr
Active Participant
0 Kudos

issue resolved