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

How to disable material description field in VL01N / VL02N

Pragnesh_7se7
Participant
0 Kudos
1,396

hii Friends,

I want to disable  material description editing during delivery creation (in VL01N / VL02N ).

Moderator message: please do more research before posting, descibe what you have tried when posting.

Message was edited by: Thomas Zloch

4 REPLIES 4
Read only

Former Member
0 Kudos
868

Hi

Refer the below link

http://scn.sap.com/message/10853886

Read only

Former Member
0 Kudos
868

Use transaction variant SHD0

Read only

0 Kudos
868

In SHD0 there is no field regarding material description

Read only

Former Member
0 Kudos
868

Hi Pragnesh,

Can you please try this

Write your code in USER_EXIT_SAVE_DOCUMENT_PREPARE.

Eg.

*******Write this in the PBO of your screen Number*************

if sy-tcode = 'VL02N.' or sy-tcode = 'VL01N.

loop at screen

if screen name = 'Name of the description field'

screen-input = 0.

modify screen index sy-tabix.

endloop.

endif.

Hope this will help.

Regards,

Amit