on ‎2022 Dec 22 3:05 AM
Dear All,
I'm trying to create an invoice based on 2 sales order documents. However it is still being split into 2 invoices. After running VF04 and the split analysis, these are the results:

and if check document have the same criteria like,
1. Payer
2. Payment Terms
3. Incoterms
4. Billing date
5. Billing doc type
6. Shipping conditions
Am I missing something here?
Thanks,
Request clarification before answering.
Hello Setyaningtyas Wardhani,
Please check each tab of Header Data in which field these values are maintained as values are different in those fields. Please enter same value in both sale order field and try to post invoice.
Also refer below accepted SAP thread and Help link on same field.
https://answers.sap.com/questions/3031245/combination-criteria-in-the-billing-document.html
Please confirm if it's works for you.
Regards,
Neeraj Jain
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have updated the answer with relevant SAP thread and help link.
Have also seen exactly in the middle of both values, the number 69000 and 70500 is different. Rest prefix and suffix values are same. Try to find out what is these values in both sale orders.
Also check in delivery Header. Is there any field. Please check and confirm if it's works for you.
Dear Mr. Neeraj,
Thanks for the guide, the problem has been successfully resolved
Hello setyaningtyasdw
setyaningtyasdwThe split analysis shows that the invoices are split due to different values in the "combination criteria" field, which is VBRK-ZUKRI. The field is populated in the invoice header with copy routines. They are assigned in the configuration paths: Sales and Distribution -> Billing -> Billing Documents -> Maintain Copying Control for Billing Documents:
e.g.

The copy routines can be defined in the VOFM transaction, menu: Data transfer -> Billing documents.
The copy routine 001 is implemented as follows:
* Additional split criteria
DATA: BEGIN OF ZUK,
MODUL(3) VALUE '001',
VTWEG LIKE VBAK-VTWEG,
SPART LIKE VBAK-SPART,
END OF ZUK.
ZUK-SPART = VBAK-SPART.
ZUK-VTWEG = VBAK-VTWEG.
VBRK-ZUKRI = ZUK.
So it splits invoices by distribution channels (VBAK-VTWEG) and divisions (VBAK-SPART).
VBRK-ZUKRI and a custom copy routine are commonly used to implement custom split criteria.
It is not possible to tell from your question how the "combination criteria" field (VBRK-ZUKRI) is populated in your case. You need to check how combination criteria are built in your case and only then you will know why the invoices are being split.
Best regards
Dominik Tylczynski
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 55 | |
| 29 | |
| 21 | |
| 10 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.