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

split invoice for amount

Former Member
0 Likes
313

I put code in my copy routine

IF NOT vbrp-fklmg IS INITIAL.

lv_netwr1 = ( vbrp-fklmg * vbrp-cmpre ) - vbrp-mwsbp.

lv_netwr = lv_netwr + lv_netwr1.

ENDIF.

But the lv_netwr is clear when the next item is process.

Please help me

1 REPLY 1
Read only

Former Member
0 Likes
274

Either one thing you can do

1. Define new variable and pass the value in that instead of lv_netwr

2. Check some where inside the loop variables values are getting reset

Regards

Ashok Advani