‎2007 Feb 17 4:41 AM
i am doing one issue.that is in VA01 Tcode.
that is validation of price.
which exit i want to use.
please tell me .
‎2007 Feb 17 5:21 AM
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
‎2007 Feb 19 5:36 AM
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.