SAP Managed Tags: ABAP Development From table LIPS . You can see sales order reference on item line of delivery item in tr.code VL02 .it also has the sales order item number . quantity in sales order on schedule line is GR. 101 and 102 and delivers is 601 and 602. you’...
actually your are picking up the correct data from Table EKET (EKET-EINDT) but your are printing that in item data loop for EKET might have already executed in your script and the header of that internal table consist the last entry of the table so for that. Fetch the delivery date expl...
DATA: item_data LIKE bapiobdlvitemcon OCCURS 0 WITH HEADER LINE,item_control LIKE bapiobdlvitemctrlcon OCCURS 0 WITH HEADER LINE,header_deadlines LIKE bapidlvdeadln OCCURS 0 WITH HEADER LINE.DATA: wa_import LIKE zsd_vtimport,itab_import LIKE STANDARD TABLE OF zsd_vtimport WITH D...
可以看得出,交货单item里的交货日期取的是delivery schedule里最早的一个交货日期,即2022-09-11。 2, 为该STO单据执行事务代码VL10B。 执行, 选中item,然后点击background按钮之后,显示创建出来的交货单, 由于delivery schedule line有2条,交货日期不同,所以VL10B的执行结果就是会创建2张不同的outbound delivery。这...
Delivery item Segment field Table field POSNR Item number of sales document LIPS-POSNR MATNR Material number LIPS-MATNR CHARG Batch number LIPS-CHARG LFIMG Quantity actually delivered LIPS-LFIMG NTGEW Net weight LIPS-NTGEW BRGEW Total weight LIPS-BRGEW GEWEI We...
SAP Managed Tags: ABAP Development Hi Experts, Could someone tell me how I can make use of BAPI_OUTB_DELIVERY_CHANGE to create a Batch Split. I need an output like this: LIPS table before Batch split. Delivery Line Item Matnr Qty UOM - 80001200 10 100 2 EA 80001200 20 101 10 EA ...
Before ECC 6.0 Enhancement Package 4, the system logic has been explained in notes below: SAP Note No. 1093582 1. Question Which effects has the "delivery completed" indicator?Answer Although a further delivery is not expected, it is still possible. SAP Note No. 856279 However, another deli...
ABAPER used append structure functionality and added three custom fields in VBRK table. I am not going into detail that how ABAPER added these fields as this is purely ABAP area. If you want to see how it was done you can check this in below link. The difference is only with field ...
SAP Managed Tags: ABAP Development Hi Use the 'BAPI_OUTB_DELIVERY_CHANGE' see the sample code DATA: LWA_HEADER_DATA LIKE BAPIOBDLVHDRCHG, LWA_HEADER_CONTROL LIKE BAPIOBDLVHDRCTRLCHG, LT_ITEM_DATA LIKE TABLE OF BAPIOBDLVITEMCHG, LWA_ITEM_DATA LIKE LINE OF LT_ITEM_DATA, LV_OLD_DELIV...
SAP Managed Tags: ABAP Development Hi, I am looking at a link where in get the sales order, line item (ETENR) and corresponding delivery document . Like Sale Ordr Posnr Etenr Delivery 12345 10 1 XXXXXXXXXX 12345 10 3 XXXXXXXXXX 12345 10 7 XXXXXXXXXX I get the sale Oder , Pos No...