cancel
Showing results for 
Search instead for 
Did you mean: 

hiding fields in contract management SRM.

Former Member
0 Kudos

Hi,

How can we hide fields in the item data in the process contracts.

the fields that i need to hide are:

product type

vendor number.

Can we achieve it without using the BADI ???

Thanks,

Pradeep.

Edited by: Pradeep Purushottam on Apr 22, 2008 11:28 AM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Easy way is find the template

with right click on the web screen

and go to "view source"

drill down to exact template

and then modify the HTML code to hide the field you want

BUT this is NOT recommended

as the template changes are not transported during upgrades

and sometimes SAP may object

you can try BADI BBP_SCREENVARIANT

also read the documentation under

SRM IMG ->SRM Server->Cross-Application Basic Settings->Personalization->Personalize Display

BR

Dinesh

Former Member
0 Kudos

hey dinesh,

thanks a lot for providing the information....

but the problem is that i dont have lot of idea bout html ....

so is it possible to provide some more help on changing the HTML code???

Points have been awarded....

Thanks,

Pradeep.

Former Member
0 Kudos

Hi,

Try the following steps.

1. Create implementation for BADI: BBP_UI_CONTROL_BADI

2. Filter: BUS2000113

3. Method: BBP_CTR_UI_CTRL

4. Here is a sample coding to supress Incoterms field in browser

if iv_fieldname = 'BBPS_CTR_UI_ITEM-INCOTERM_KEY' or

iv_fieldname = 'BBPS_CTR_UI_ITEM-INCOTERM_LOC'.

cv_invisible = 'X'.

cv_input_ready = ''.

endif.

5. Comment (<!-- ...... --> ) the incoterm field in respective ITS template.

6. Publish the template.

The fields will be hidden.

Cheers, Renga

  • Award Points for usefull answers *

Answers (0)