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

Screen exit

Former Member
0 Likes
326

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
307

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

1 REPLY 1
Read only

Former Member
0 Likes
308

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