2007 Jan 03 9:08 AM
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.
2007 Jan 03 9:27 AM
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
2007 Jan 03 9:29 AM
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
2007 Jan 03 6:46 PM
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.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |