cancel
Showing results for 
Search instead for 
Did you mean: 

Immediate delivery for specific customer for 1 month

0 Kudos

There is only order type allowed - OR for a company.

Now 1 customer wants to have immediate delivery for 1 month.

How to get this thing configured when another another order type creation is not allowed ?

Message title was edited by: Jyoti Prakash - Please use meaningful and precise subject titles to represent discussion. Don't put discussion body in discussion title.

Accepted Solutions (1)

Accepted Solutions (1)

moazzam_ali
Active Contributor
0 Kudos

Hi

What do you mean by immediate delivery for one month? IF you want to create delivery automatically for this one customer than this is not possible through standard settings. You need to go for ABAP solution and ask ABAPEr to write code with IF condition in MV45AFZZ.

Thank$

0 Kudos

Thanks for your reply.

Immediate Delivery, I mean to say that automatic delivery will be created as in case of CASH SALES- but only for 1 month and only for 1 customer.

Apart from ABAP change, is there no option via customization/ SAP table maintenance.

Former Member
0 Kudos

Hi Bipul,

for this issue's solution with help of abaper you can go for the Z table where inputs filed combination would be-

order type + partner name = immediate delivery

i hope it will be helpful for you

moazzam_ali
Active Contributor
0 Kudos

Hi

This is only possible by using userexit and BAPI. There is no solution without involving ABAP for this requirement.

Thank$

former_member182378
Active Contributor
0 Kudos

Bipul,

Can you give some business background information, why this requirement is needed for 1 month?

Also, after immediate creation of delivery, what will happen? Will picking, packing, PGI be done manually?

Thanks!

TW


former_member182378
Active Contributor
0 Kudos

Vicky,

Why would you have field "order type" in this custom table? There is only one order type used (OR).

We can add field partner function (AG, WE etc.), after discussing the business scenario in more detail.

TW

Former Member
0 Kudos

Bipul,

Well, you could run a Delivery due list, restricted to this one customer (either Shipto or Soldto), in Batch, every, say, 15 minutes.

Collective Processing of Documents due for Delivery - Shipping (LE-SHP) - SAP Library

In this way, any confirmed sales order from this customer would automagically have a delivery created every 15 minutes.  Not 'instant', but pretty close in most companies. Might satisfy the business' requirements......

Best Regards,

DB49

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Singh,

Do one thing you have maintain the item category determination for the combination of OR+ZORM+USGE+TAN like this you have maintain, After that go to t-code VD51 here enter required customer, sales Org and distribution channel than press enter after you will get next screen enter material code, select the line item click on details, you find the item usage bottom of screen you have to maintain the USGE for the field item usage than save the info record.

While creating the sales order system consider what ere the combination you maintain in VD51 that combination system allowed.

If in case create SO other customer with VD51 maintain material code system shows error massage.

Regards,

Pandu


Lakshmipathi
Active Contributor
0 Kudos

Irrespective of your configurations / customizations, unless stock is not made available, you cannot create a delivery.  Hence, you can make use of Delivery Priority from customer master based on which, system will allocate stocks in sale order.

G. Lakshmipathi

hualin_zhang
Participant
0 Kudos

As mentioned by MoazzaM, you can ask ABAPer to write code in userexit.


You just need to check partner AG. If it is the cusotmer, modify structureTVAK-LISOF.

I tested below code in  USEREXIT_MOVE_FIELD_TO_VBAK, it works.


READ TABLE xvbpa WITH KEY PARVW = 'AG'.

If xvbpa-KUNNR = '0000001000'.

  TVAK-LISOF = 'A'.

Endif.

Hope it is helpfu for you.

Best regards,

Hualin

0 Kudos

Hey TW Typewriter,

The Business Scenario might be for 1 month, Customer is expecting a lot of orders to come up (might be due to festive season or the promotional feature added up)- there is a requirement now, not to waste time in delivery creation for the 1 time customers and it should be created automatically during order creation.

Thanks!!

Bipul