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
336

h iexperts,

i want to add one field in VA01 transaction, but i couldnt find any Screen Exit,

how can i go further.

2 REPLIES 2
Read only

Former Member
0 Likes
319

Hi,

You should you the screen 8309 of program <b>SAPMV45A</b> to add custom fields for header data, and screen 8459 of program SAPMV45A for item data.

These screen are the subscreen of the additional data tabs.

In the PBO of these screen you can manage input/output attribute by LOOP AT SCREEN/ENDLOOP, for example:

IF SY-TCODE+3(1) = '3'.

LOOP AT SCREEN.

SCREEN-INPUT = 0.

MODIFY SCREEN.

ENDLOOP.

ENDIF.

Regards

Read only

0 Likes
319

thank u for your reply.

but that PBO and PAI modules are empty,

and that screen is in display mode,

how can i go further.