cancel
Showing results for 
Search instead for 
Did you mean: 

LIKP-ZUKRS Delivery spilt for sales orders

Rushikesh_Yeole
Contributor
0 Kudos

HI,

In copy control, we are using routine to split the deliveries The length of LIKP-ZUKRL is 40 characters.

But we need to accommodate several criterion for which length exceeds 40 characters

.Is there any option available to achieve? any user exit?

In routine, we can refer current sales order at a time.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

an idea ...

define a ztable where you group criteria by a code and use this code in your routine.

For example, your split critera consist of 5 fields:

Field A (char 5), B (char 20), C (char 15),  D (char  😎 and E (char 7) total 55 characters.

Decide which fields will be in ztable (for example B and C). Combination of all values of B and C is less than 1000.

Define a ztable with this structure:

ZZ (number 3), ZB (char 20) and ZC (char 15). Maintain table with all combinations.

Now define a transfer routine where you read ztable,  retrieven value ZZ where ZB = B and ZC = C and fill ZUKRI field with fields A, ZZ, D and E (total 23 characters).

Regards,

JM

Answers (1)

Answers (1)

0 Kudos

Hi Rushikesh,

This query has been discussed previously in the forum. Please see the following threads for

further information:

http://scn.sap.com/thread/1920002

http://scn.sap.com/thread/3417417

Also, please review SAP Note 166397 - Delivery split according to customer field ZUKRL.

I hope this helps.

Kind regards,

Catherine

Rushikesh_Yeole
Contributor
0 Kudos

HI,

Thanks for your reply.

I am using the same method. The criterion for splitting likp-zukrl is more than 40 characters in our case. And limitation for this field is 40 char only.


Please suggest.