cancel
Showing results for 
Search instead for 
Did you mean: 

double condition value

Former Member
0 Kudos

Hi,

During sale order creation by mistake user entering ZP00 (basic price) condition type

twice which results 1st line of condition type showing zero value from order to bill and

same zero value updating in J_1IEXCDTL-EXBAS table.Plz advice without using any user exit

how I can restrict this.

regards,

sps.

Accepted Solutions (1)

Accepted Solutions (1)

Lakshmipathi
Active Contributor
0 Kudos
Plz advice without using any user exit how I can restrict this.

Its only a user discipline. If user continue to commit mistakes, what SAP will do. The only option is go with user exit or write the coding in your existing routine.

thanks

G. Lakshmipathi

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi dear,

Only user exit is the solution for this issue.

use this logic with the help of abaper .

Include Name : - MV45AFZZ.

FORM USEREXIT_PRICING_PREPARE_TKOMP.

LOOP AT XKOMV.

IF XKOMV-zaehk > '01'.

DELETE ADJACENT DUPLICATES FROM xkomv COMPARING kschl.

endif.

Endloop.

ENDFORM.

Thanks & Regards

Amit Karalkar