cancel
Showing results for 
Search instead for 
Did you mean: 

OVA8 user defined check

Former Member
0 Kudos

With regard to the transaction OVA8,for the Auto credit control setting for risk category COD

there is a setting for the User 2 field set.

Does anyone know wut's its usage? and whether the setting in this field is linked to any user exit and the function of this exit?

Thanks in advance.

Desmond

Accepted Solutions (1)

Accepted Solutions (1)

former_member189545
Participant
0 Kudos

Hi Desmond,

all the credit checks are performed in program SAPLVKMP, INCLUDE

LVKMPU01, function modules SD_ORDER_CREDIT_CHECK (central function

module for credit check in sales order) and SD_DELIVERY_CREDIT_CHECK

(central function module for credit check in delivery processing).

SAPLVKMP is the main program for credit checks and contains includes for

all credit checks. It is the main program for function modules in

Credit Management. In SE38 you can see all the includes contained in

this program for all the credit checks:

INCLUDE LVKMPF0A. " Subprogram: static credit check

INCLUDE LVKMPF0B. " Subprogram: dynamic credit check

INCLUDE LVKMPF0C. " Subprogram: credit check document value

INCLUDE LVKMPF0D. " Subprogram: critical fields

INCLUDE LVKMPF0E. " Subprogram: review date

INCLUDE LVKMPF0F. " Subprogram: open item

INCLUDE LVKMPF0G. " Subprogram: oldest open item

INCLUDE LVKMPF0H. " Subprogram: dunning level

Moreover, in transaction OVA8, customers can program themselves their

own credit checks via the user defined checks (user1, user2 and user3).

In SAPLVKMP, include LVKMPU01, SD_ORDER_CREDIT_CHECK and

SD_DELIVERY_CREDIT_CHECK, you can find:

...

  • user credit check 1

...

PERFORM USER_CREDIT_CHECK1

...

Here you have userexit USER_CREDIT_CHECK1 (Include LVKMPFZ1).

You can find further information in IMG-> Sales and Distribution/

System Modifications/ User Exits/ User Exits For Credit Checks And Risk

Management.

I hope that this information is of assistance to you.

Kind regards,

Zsuzsanna

Former Member
0 Kudos

thanks very much

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Desmondyoung,

Your guess is right. The user1,user2, user3 checks are linked to the user exits. The user exits are LVKMPFZ1, LVKMPFZ2, LVKMPFZ3 respectively. The functionality of these exits depends on your business requirement and how they were coded by your technical team.

regards

prasad