cancel
Showing results for 
Search instead for 
Did you mean: 

Hide SRM BID Inv. Fields in ITS

Former Member
0 Kudos

Hello Friends

We are using SRM 5.0 & want to hide few fields in BID Invitation screen fields available in ITS i.e. follow on document, type of publication etc in basic data screen.

Any help.....

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Try using the BADI " BBP_UI_CONTROL_BADI".

This is the sample code for Bid invitation screen fields:

*To make the TYPE OF PUBLICATION field under BASIC DATA tab in BI screen as display only

IF iv_fieldname = 'BBPS_BID_UI_HEADER-BID_TYPE'.

cv_input_ready = c_space.

ENDIF.

*To make the responsible Purchasing organisation field display only

IF iv_fieldname = 'BBPS_BID_UI_HEADER-PROC_ORG'.

cv_input_ready = c_space.

ENDIF.

*To make the responsible Purchasing Group field display only

IF iv_fieldname = 'BBPS_BID_UI_HEADER-PROC_GROUP'.

cv_input_ready = c_space.

ENDIF.

*To hide the links for WEIGHTING and ANALYSES

IF iv_fieldname = 'SB_HWEIGHT'.

cv_invisible = c_mark.

ENDIF.

HTH.

Also See this OSS Note ->

Note 1062639 - BBP_BID_INV: BBP_UI_CONTROL_BADI fails to hide fields

BR,

Deepti.

Former Member
0 Kudos

Hi,

you can use BBP_UI_CONTROL_BADI.

I hope i could help.

Best regards,

Georg