on 2008 Apr 21 7:24 AM
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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 *
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.