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

help needed in userexits.

Former Member
0 Likes
501

Hi All,

Iam new to userexits.......i have a requirement....

How to Develop User exit which captures the sales data, delivery data and shipment data at the time of creation and copy that to a custom table?

need ur help pls....

thnx in advance,

Pavani.

Hi All,

Iam new to userexits.......i have a requirement....

How to Develop User exit which captures the sales data, delivery data and shipment data at the time of creation and copy that to a custom table?

need ur help pls....

thnx in advance,

Pavani.

3 REPLIES 3
Read only

Former Member
0 Likes
481

there is an include for user exits named MV45AFZZ (for VA02). Set a BP there, at that point check if you are getting all the required values that you want in ur ztable. If you are, code in MV45AFZZ.

Thanks

Best of luck!

Read only

Former Member
0 Likes
481

How to create user Exit check

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sapgenie.com/abap/code/abap26.htm

http://www.sap-img.com/abap/what-is-user-exits.htm

http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction

http://www.easymarketplace.de/userexit.php

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sappoint.com/abap/userexit.pdfUser-Exit

Transaction Code - VA02 Change Sales Order

Exit Name Description

SDTRM001 Reschedule schedule lines without a new ATP check

V45A0001 Determine alternative materials for product selection

V45A0002 Predefine sold-to party in sales document

V45A0003 Collector for customer function modulpool MV45A

V45A0004 Copy packing proposal

V45E0001 Update the purchase order from the sales order

V45E0002 Data transfer in procurement elements (PRreq., assembly)

V45L0001 SD component supplier processing (customer enhancements)

V45P0001 SD customer function for cross-company code sales

V45S0001 Update sales document from configuration

V45S0003 MRP-relevance for incomplete configuration

V45S0004 Effectivity type in sales order

V45W0001 SD Service Management: Forward Contract Data to Item

V46H0001 SD Customer functions for resource-related billing

V60F0001 SD Billing plan (customer enhancement) diff. to billing plan

No of Exits: 15

Rewards if useful....................

Minal

Read only

Former Member
0 Likes
481

Hi,

Go to the program MV45AFZZ and wirte your coding

eg :

check vbak-auart = 'ZXOR'.

loop at xvbap.

IF xvbap-werks = '8300' .

xvbap-gsber = '4165'.

modify xvbap index sy-tabix transporting lgort gsber.

ENDIF.

modify based on your requirement..you can update in Z table also.

Regards,

Sangeetha.A