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

user exit - va03

Former Member
0 Likes
850

Hi all,

i have added 3 new fields to VA01 in the Item -> Additional Data B screen.

In va01 it is getting the values from the user and populating the 3 custom fields in VBAP table.

these 3 fields in VA03 should retrive data for that particular Order Number and these 3 fields have to be in Display mode in VA03.

how to do this?

thanks in advance.

suki.

Hi all,

i have added 3 new fields to VA01 in the Item -> Additional Data B screen.

In va01 it is getting the values from the user and populating the 3 custom fields in VBAP table.

these 3 fields in VA03 should retrive data for that particular Order Number and these 3 fields have to be in Display mode in VA03.

how to do this?

thanks in advance.

suki.

3 REPLIES 3
Read only

Former Member
0 Likes
754

Hi Suki,

Below is the link which will give you info about user exits in VA03. May be useful to you, just have a look.

<a href="http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm">User Exits for VA03</a>

I hope it helps.

Best Regards,

Vibha

*Please mark all the helpful answers

Read only

Former Member
0 Likes
754

Hi

Please check if userexit: USEREXIT_FIELD_MODIFICATION of include: MV45AFZZ can help you in this case.

LOOP AT SCREEN.
     IF SCREEN-NAME = 'FLD1' OR
        SCREEN-NAME = 'FLD2' OR
        SCREEN-NAME = 'FLD3'.
        SCREEN-INPUT = 0.
        MODIFY SCREEN.
     ENDIF.
ENDLOOP.

Kind Regards

Eswar

Read only

0 Likes
754

Just to clarify...

I do not think you need to loop at screen in this userexit as it is called form the loop itself, you just need to check screen-name, sy-tcode, may check sy-dynnr.

modify screen is done by SAP later as well, so just set screen-input if screen-name = your field and sy-tcode = VA03.