‎2011 Feb 07 8:59 AM
Friends,
I am trying to Grayout one column Delivered Quantity in Item Overview Tab.
Unfortunately the version I am working with is 4.6, so I am not getting any IMPLICIT USER EXIT.
Can anybody tell me which explicit user exit I should use? Or if I am wrong, is there any implicit user exit?
please revert ...
Thanks,
Mahesh
‎2011 Feb 08 12:34 PM
Hi Mahesh,
In order to make delivery quantity input disable you can make use of BADI "LE_SHP_DELIVERY_PROC" and method "CHANGE_FIELD_ATTRIBUTES". For identifying item overview tab you can make use of parameter 'IF_PANEL' which has value 'ITOV' for item tab. Sample code is given below for your reference.
data: ls_field_attributes type shp_screen_attributes,
*LIPSD-G_LFIMG is screen field for delivery quantity.
ls_field_attributes-name = 'LIPSD-G_LFIMG'.
ls_field_attributes-input = 0.
append ls_field_attributes to ct_field_attributes.
Hope this helps you.
Best Regards,
Akanksha.
Edited by: Akanksha on Feb 8, 2011 1:43 PM