cancel
Showing results for 
Search instead for 
Did you mean: 

Confirmation Reversal and Deletion

Former Member
0 Kudos

Hi All,

Is there a configuration to disable "Delete" and "Return Delivery" buttons for all POs?

We have a requirement to do not allow users to perform above actions.

We are using SRM 5.0 SP13

Thanks,

Nikhil

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

you need to control this by roles. Please check with S&A Team.

Regards

Satish

former_member183819
Active Contributor
0 Kudos

Hi

br

muthu

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Nikhil,

Delete Button is

IV_FIELDNAME BUTTON_DELETE

IV_PROGNAME SAPLBBP_CF

IV_DYNPNAME 2310

Return Delivery Button is

IV_FIELDNAME BUTTON_RETURN

IV_PROGNAME SAPLBBP_CF

IV_DYNPNAME 2310

You can use the BBP_UI_CONTROL_BADI to hide this buttons.

BBP_UI_CONTROL_BADI~BBP_CONF_UI_CTRL

IF sy-dynnr = '2310'.

CASE iv_fieldname.

WHEN ' BUTTON_RETURN'.

cv_invisible = 'X'.

ENDCASE.

ENDIF.

The parameter cv_invisible when has the value 'X' hides the button.

Regards,

Matthew