RE:[sap-log-sd] Freight condition from route determination

Posted by srikant (SAP SD Senior Cnsultant)
on Jun 14 at 1:26 AM
For additional split criteria -Data transfer for delivery related Billing=

---------*
VBAK Order header KUAGV View Sold-to party*
?VBAP Order item KURGV View Payer *
?VBKD Business data order KUREV View Bill-to party?*
?LIKP Delivery header KUWEV View Ship-to party*
?LIPS Delivery item
.code VOFM- Data -Copying requirements you must create a routine and assign to your delivery type & billing type Copying control (VTFL) for Material group to be included in yur split criteria

if you want to add additional split criteria based on Material group need to write a routine say for ex 902

not too sure but check with Technical guy for the below code for implementing Split criteria
Ex
DATA: T_VBRK TYPE STANDARD TABLE OF VBRK. "Billing header
DATA: WA_VBRK TYPE VBRK. "Work area for Billing
DATA: BEGIN OF ZUK,
MODUL(3) VALUE '902',
MATKL=A0LIKE VBRK-MATKL,
END OF ZUK.

Regarding your below queries

1 field ZUKRI (in billing doc header) -VBRK

It is in Billing document in Copying control(VTFL) at Item level Under Data -VBRK/VBRP
which would provide under what scenarios /combinations the Billing would combine into a single invoice in the billing document

Hope this helps ,mark as useful

srikant

---------------Original Message---------------
From: Typewriter
Sent: Monday, June 13, 2011 11:14 AM
Subject: Freight condition from route determination

Hi Srikant, Naughtybudgie,
Many thanks for this post.

I do not understand - How to configure additional split requirements in configuration.
SAP says in field VBRK-ZUKRI is used to store these additional split requirements.

Could an expert please explain this to me (in detail)?
Where is field ZUKRI (in billing doc header?)? In below routine 001 (Invoice split Sample) how are things working? What is ZUK?
If I want to add (say) Material group additional split criterion, then how & where to do that?

e.g.
FORM DATEN_KOPIEREN_001.

* Header data
* VBRK-xxxxx = ............

* Item data
* VBRP-xxxxx = ............

* 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.

ENDFORM.

__.____._
Copyright © 2011 Toolbox.com and message author.

Toolbox.com 4343 N. Scottsdale Road Suite 280, Scottsdale, AZ 85251
Mark as helpful
View this online
  
srikant
SAP Logistics Sales and Distribution Enthusiast

Contributed 100 posts in a group to earn a Bronze Achievement
Popular White Papers

In the Spotlight
SAP Enterprise Mobility Webcast Watch today!
_.____.__