2012 Dec 24 11:25 AM
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
2012 Dec 24 11:57 AM
2012 Dec 24 5:00 PM
2012 Dec 25 4:22 AM
2012 Dec 25 4:53 AM
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