‎2008 Jun 19 2:59 PM
Hi freinds,
I am doing a screen exit for a sales order VAO1 adding an addition field "data message indicator"...
i have done that..now the problem is..even if i am in display mode that field is is change mode..
for both display and change mode it is s change mode..
So wat could be done to make it display mode if m in disply mode..
thanks
Sahil
‎2008 Jun 19 3:03 PM
hi,
SImple.
In the PBO event write this:
if sy-tcode = 'VA03'.
loop at screen.
screen-active = 0.
modity screen.
endloop.
endif.
THis will wrok.
Regards,
Subramanian
‎2008 Jun 19 3:03 PM
hi,
SImple.
In the PBO event write this:
if sy-tcode = 'VA03'.
loop at screen.
screen-active = 0.
modity screen.
endloop.
endif.
THis will wrok.
Regards,
Subramanian