Application Development 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: 

Screen Exits for VA01/VA02

Former Member
0 Kudos

Hi,

I need to add 2 custom fields in VA01/VA02 transaction under the line item - additonal data B screen. Is there any screen exit available to do this? If so what is the enhancement that can be used and what are the FM exits that can be used? I donot want to change the standard screen.

1 ACCEPTED SOLUTION

ferry_lianto
Active Contributor
0 Kudos

Hi,

Welcome to SDN.

Please check this link.

http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm

Screen 8459 in program SAPMV45A is the additional data B tab to add your custom fields. In order to capture the data from this custon field you can use user exit USEREXIT_SAVE_DOCUMENT_PREPARE OR

USEREXIT_SAVE_DOCUMENT in program MV45AFZZ.

Hope this will help.

Regards,

Ferry Lianto

Please reward points if helpful.

5 REPLIES 5

Former Member
0 Kudos

Get the access key from basis for the program SAPMV45A. And change the screen.

First create a subscreen with that two fields, call that subscreen in the screen 8309.

call subscreen s2 including 'SAPMV45A' '9002'.

Regards,

Prakash.

ferry_lianto
Active Contributor
0 Kudos

Hi,

Welcome to SDN.

Please check this link.

http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm

Screen 8459 in program SAPMV45A is the additional data B tab to add your custom fields. In order to capture the data from this custon field you can use user exit USEREXIT_SAVE_DOCUMENT_PREPARE OR

USEREXIT_SAVE_DOCUMENT in program MV45AFZZ.

Hope this will help.

Regards,

Ferry Lianto

Please reward points if helpful.

former_member181962
Active Contributor
0 Kudos

Refer these links:

Regards,

Ravi

Former Member
0 Kudos

HI,

Look at the following help documentation.

http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm

Regards

Sudheer

0 Kudos

Hi,

So in this case i can just change the SAPMV45A 8459 screen add my custom fields using the access key Right. Do i need to take care of data movement from Screen fields to ABAP fields ??? What i mean to say is suppose i have added yycode and yydesc in vbap. i can just access the data entered in the screen yycode and yydesc by using xvbap-yycode and xvbap-yydesc right? Please let me know about this ...