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

wht is the difference between USER EXIT and FUNCTION EXIT

Former Member
0 Likes
398

i am doing one issue.that is in VA01 Tcode.

that is validation of price.

which exit i want to use.

please tell me .

2 REPLIES 2
Read only

Former Member
0 Likes
351

Hi,

Try using this User exit in report MV45AFZZ which can be editable.

write the code in this form FORM USEREXIT_SAVE_DOCUMENT_PREPARE

Regards

Shiva

Read only

Former Member
0 Likes
351

SDAPO001 Activating Sourcing Subitem Quantity Propagation

SDTRM001 Reschedule schedule lines without a new ATP check

V45A0001 Determine alternative materials for product selection

V45A0002 Predefine sold-to party in sales document

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

these are the user exits available for VA01 transaction

Customer Exit and User Exit – Difference:

Previously there were only user-exits.Then came the concept of customer-exits.

User exits were nothing but subroutines where FORM/PERFORM are called from standard programs.

The FORM definition was placed inside an empty include file. So it was called EVERYTIME and we need to MODIFY/REPAIR the standard include.

Then came concept of customer-exit.

It consists of calling a FUNCTION MODULE, which is called only if the user-exit is ACTIVATED (otherwise it will not be called)

The code in put inside a pre-defined ZX includes.

Functionality of both is same, however we can note the following important differences:

a) Customer exit is called only if activated. (Hence, it does not waste resources)

b) In Customer exit, REPAIR does not happen to the standard include.