cancel
Showing results for 
Search instead for 
Did you mean: 

Hide Business Area tab in Shopping card cost assignment

Former Member
0 Kudos

Hi,

I have to hide the Business Area tab in Shopping card cost assignment.

Please help me how to do it.

Thanks & Regards,

AG

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi AG,

The fieldname is T_SCREEN_ACCLIST-BUS_AREA

So write the following code:

CASE IV_FIELDNAME.

WHEN 'T_SCREEN_ACCLIST-BUS_AREA'.

CV_INVISIBLE = '1'.

ENDCASE.

This will hide the field Business Area.

Thanks,

Pradeep

Former Member
0 Kudos

Hi AG,

You can use BBP_UI_CONTROL_BADI.

Method: BBP_SC_UI_CTRL

Sample coding:

CASE IV_FIELDNAME.

WHEN 'fieldname for Business Area'.

CV_INVISIBLE = '1'.

ENDCASE.

Hope this helps.

Thanks,

Pradeep