cancel
Showing results for 
Search instead for 
Did you mean: 

User exit upon saving the customer

Former Member
0 Kudos

Hi

can any one tell me what user exit is triggered upon saving the customer in XD01,XD02,VD01 & VD02 Tcodes.

Thanks

Sonali

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You can use function EXIT_SAPMF02D_001 in enhancement SAPMF02D (User exits: Customer master data).

Rgrds,

Gyurka

Answers (3)

Answers (3)

former_member217082
Active Contributor
0 Kudos

Hi sonali

Check these user exits which are used at partner determination level. May be this inputs will help you

EXIT_SAPLV09A_001

You can use this user exit to control whether an address that was entered manually and has already been used in other documents (referenced), should be referenced again if it changes or whether a new address should be created (duplicated).

EXIT_SAPLV09A_002

Call up this user exit if a customer has not been maintained in the current sales area.

EXIT_SAPLV09A_003

Use this user exit to control the origin of partners in the partner determination procedure (origin X, Y or Z). If X, Y, or Z has been entered in the Origin field, this user exit is automatically called up during partner determination.

EXIT_SAPLV09A_004

Use this user exit to integrate your own check in a program that runs before the partner is saved in the document.

For more detailed information, see the program documentation for each of the user exits

Regards

Srinath

former_member209705
Participant
0 Kudos

Hi Sonali,

Try this exit RFDRRANZ.

Ravi shankar.

Former Member
0 Kudos

Userexits allow us to add our own functionality to SAP standard program without making any modifications to SAP program.

These are implemented in the form of subroutines that call a function module during program execution.

When you save the customer in XD01,XD02,VD01 & VD02 Tcodes, you do not call any other program. The data is updated in customer master record i.e. SAP tables are updated.

Hence no user exits are trigerred when saving customer in XD01,XD02,VD01 & VD02