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

Invoice split logic..

Former Member
0 Likes
708

Hello All,

Our business requirement is to split invoices based tax rate. The items of the same tax rate have to go into one invoice. I know that this logic can be implemented by modifying copy control routines. I observed that in the standard routine FV60C007, VBRK-ZUKRI is used for this purpose. But I don’t see splitting logic in that.

Could some one explain about this standard logic so that I can implement the same for my requirement?

Points are rewarded.

Regards,

Krishna

1 REPLY 1
Read only

Jelena_Perfiljeva
Active Contributor
0 Likes
472

Just put the tax rate value into VBRK-ZUKRI field. As soon as the program sees different value, it should split the invoice.

We don't split by tax rate but, for example, we split by material class (MATKL), so we do:

VBRK-ZUKRI = VBAP-MATKL.

Good luck!