cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Disable 'Item type' in Shopping cart

Former Member
0 Likes
375

Hi all,

My requirement: The Service 'Item Type' on the Shopping Cart 'Item Data' tab needs to be disabled.

I understood that it can be disabled using BADI BBP_SC_MODIFY_UI. Please advise me which field in IS_SCR_ITMCHOICE structure has to be cleared to disable ITEM TYPE

Moreover in general, how to identify which field in IS_SCR_ITMCHOICE structure has to be cleared to activate/deactivate fields in Shopping cart page.

Thanks,

Prem

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Likes

The two item types, i.e. material and service are hardcoded in the following class/method:

class: /SAPSRM/CL_CH_WD_DODM_SC_I_BD

method: /SAPSRM/IF_CLL_MAPPER~REFRESH

You can enhance the code by implementing an overwrite-exit for the above mentioned method to remove the "service" part of it.

Former Member
0 Likes

Which SRM version??

Former Member
0 Likes

SRM version is SAP SRM 7.0

Please help me out to disable the "Item type" in shipping cart

Former Member
0 Likes

Hi,

Please anyone give me some idea to disable "Item Type' in Shopping cart.

Can this be done using BADI or this needs to be done in Webdynpro application?

Former Member
0 Likes

Firstly you won't able to use this BADI BBP_SC_MODIFY_UI for that purpose.

Former Member
0 Likes

In SRM 7.0 , field visibility is been controlled by Metadata.

To make changes for the field 'item type'.

<SM30>

View : /SAPSRM/V_MDF_IT

Entry:

Structure Field Name PRODUCT_TYPE

Bus. Object Type BUS2121

You can change the field values

eg: Field Enabled to BLANK

or replace the Dynamic Class & Method .

HTH,

Chandu