cancel
Showing results for 
Search instead for 
Did you mean: 

Custom field not displayed in the Search criteria of Find Bid Invitation

Former Member
0 Kudos

Dear All,

I've added a custom field to structures INCL_EEW_PD_HEADER_CSF_BID and INCL_EEW_PD_SEARCH_HDR_CSF_BID. I can see the field appear in the header of the Bid invitation but could not see the same appear in the search criteria in the Process Bid --> Find Bid Invitation screen of the bidder.

I checked the other threads in the forum related to this and as specified in OSS note No. 672960, I've also implemented method MODIFY_SCREEN of Badi BBP_CUF_BADI_2 as follows,

ls_et_fields-fieldname = 'ZZCOMMODITY'.

ls_et_fields-include_name = 'INCL_EEW_PD_HEADER_CSF_BID'.

ls_et_fields-xdisplay = 'X'.

ls_et_fields-xinput = ' X'.

APPEND ls_et_fields TO et_fields.

ls_et_fields-fieldname = 'ZZCOMMODITY'.

ls_et_fields-include_name = 'INCL_EEW_PD_SEARCH_HDR_CSF_BID'.

ls_et_fields-xdisplay = 'X'.

ls_et_fields-xinput = 'X'.

APPEND ls_et_fields TO et_fields.

And still I could not see the field in the Search criteria. Please help me resolve this issue.

Thanks and Regards,

Kayal Priyadarshini

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

Please go through the related pointers ->

The OSS note 672960 has already indicated you need to use BADI to address it.

For Search criteria

You can also use user-defined fields as search criteria. To do this, you have to set fields XINPUT and XDISPLAY to 'X' in table ET_FIELDS for the fields you want to use in BADI BBP_CUF_BADI_2 in method MODIFY_SCREEN. The fields defined this way are displayed if you choose the 'Extended search' link.

Do let me know.

Regards

- Atul

Former Member
0 Kudos

Dear Atul,

As I've mentioned, I've already checked the threads and have implemented the Badi BBP_CUF_BADI_2 also. But still it doesnt seem to be working.

Is something wrong with the coding that I've done in the Badi??

Former Member
0 Kudos

Note 984441 Customer fields when searching for bid invitations

Former Member
0 Kudos

Thanks for all.

Actually i shud have modified the table et_fields instead of appending entries into the same.