Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Exit Points for TCODE VL02N

Former Member
0 Likes
356

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

1 REPLY 1
Read only

Former Member
0 Likes
297

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