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

Hi

Former Member
0 Likes
462

Hi All,

Waht is Orders03 if the data is available in that how can i Process the Orders03 for further.

any sample code Please.

Thanks in Advance .

Thanks&Regards.

Ramu.

Hi All,

Waht is Orders03 if the data is available in that how can i Process the Orders03 for further.

any sample code Please.

Thanks in Advance .

Thanks&Regards.

Ramu.

3 REPLIES 3
Read only

Former Member
0 Likes
424

Please give more details

Read only

0 Likes
424

My requairment is:

When the ORDERS03 IDOC received in R/3, determine the related sales order and item by searching table VBFA from the purchase order number in the IDOC. The sales order number resides in the PO item, account assignment – sale order

User exit requirement

Modify this user exit ZYVEDU03 to derive sales order no and item no from purchase order no and item no. Search in table VBFA where VBELN = PO number and POSNN = PO Item and VBTYO_V = ‘C’. Field VBELV will be the SO number and POSNV will be the SO item.

- - I do't know whether this user exit is available or not.

Create new process code which is a copy of ORDC e.g. ZORDC to include the delivery date update logic and bypass the update logic to the schedule quantity in the sales order

Use userexit ZXVEDU03 to enhance sales order look up. In the exit, trigger BAPI_SALESORDER_CHANGE to update the sales order.

Can any one Please explain this and kindly give me the coding how to process it.

It is urgent.

Thanks&Regards.

Ramu.

Read only

Former Member
0 Likes
424

ORDERS03 is an IDoc Type.

The IDoc type is the version number. The highest number always represents the latest version.

Steps to customize a new IDoc >>>

1. Define IDoc Segment (WE31)

2. Convert Segments into an IDoc type (WE30)

3. Create a Message Type (WE81)

4. Create valid Combination of Message & IDoc type(WE82)

5. Define Processing Code(WE41 for OUT / WE42 for IN)

6. Define Partner Profile(WE20)

IDoc Type ORDERS03:: Delivery order segments>>

E1EDL37 - Shipping unit header

E1EDL38 - Control segment for shipping units

E1EDL39 - Shipping unit header descriptions

E1EDL44 - Shipping unit item (delivery)

-Vishal