SAP EWM_SD_SINGLE_ORDER_GET_DATA Function Module for Get original sales order
EWM_SD_SINGLE_ORDER_GET_DATA is a standard ewm sd single order get data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get original sales order processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for ewm sd single order get data FM, simply by entering the name EWM_SD_SINGLE_ORDER_GET_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: ERP_SD_EWM
Program Name: SAPLERP_SD_EWM
Main Program: SAPLERP_SD_EWM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function EWM_SD_SINGLE_ORDER_GET_DATA pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'EWM_SD_SINGLE_ORDER_GET_DATA'"Get original sales order.
EXPORTING
IV_DOC_NUMBER = "Sales and Distribution Document Number
IMPORTING
ES_HEADER_FOR_RETURNS = "Header data for EWM returns scenario
ET_ITEMS_FOR_RETURNS = "Item data for EWM returns scenario
ET_ADDRESSES_FOR_RETURNS = "Addresses for EWM returns scenario
ET_PARTNERS_FOR_RETURNS = "Partners for EWM returns scenario
ET_RETURN = "Table with BAPI Return Information
ET_DELIVERY_FOR_ORDER = "delivery data for EWM returns scenario
ET_BATCH_RETURNABLE = "EWM returnable batch quantities
IMPORTING Parameters details for EWM_SD_SINGLE_ORDER_GET_DATA
IV_DOC_NUMBER - Sales and Distribution Document Number
Data type: VBELNOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for EWM_SD_SINGLE_ORDER_GET_DATA
ES_HEADER_FOR_RETURNS - Header data for EWM returns scenario
Data type: TDS_HEAD_FOR_EWM_RETURNSOptional: No
Call by Reference: No ( called with pass by value option)
ET_ITEMS_FOR_RETURNS - Item data for EWM returns scenario
Data type: TDT_ITEMS_FOR_EWM_RETURNSOptional: No
Call by Reference: No ( called with pass by value option)
ET_ADDRESSES_FOR_RETURNS - Addresses for EWM returns scenario
Data type: TDT_ADDRESSES_FOR_EWM_RETURNSOptional: No
Call by Reference: No ( called with pass by value option)
ET_PARTNERS_FOR_RETURNS - Partners for EWM returns scenario
Data type: TDT_PARTNERS_FOR_EWM_RETURNSOptional: No
Call by Reference: No ( called with pass by value option)
ET_RETURN - Table with BAPI Return Information
Data type: BAPIRETTABOptional: No
Call by Reference: No ( called with pass by value option)
ET_DELIVERY_FOR_ORDER - delivery data for EWM returns scenario
Data type: TDT_DLV_FOR_EWM_RETURNSOptional: No
Call by Reference: No ( called with pass by value option)
ET_BATCH_RETURNABLE - EWM returnable batch quantities
Data type: TDT_BATCH_RETURNABLEOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EWM_SD_SINGLE_ORDER_GET_DATA Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_iv_doc_number | TYPE VBELN, " | |||
| lv_es_header_for_returns | TYPE TDS_HEAD_FOR_EWM_RETURNS, " | |||
| lv_et_items_for_returns | TYPE TDT_ITEMS_FOR_EWM_RETURNS, " | |||
| lv_et_addresses_for_returns | TYPE TDT_ADDRESSES_FOR_EWM_RETURNS, " | |||
| lv_et_partners_for_returns | TYPE TDT_PARTNERS_FOR_EWM_RETURNS, " | |||
| lv_et_return | TYPE BAPIRETTAB, " | |||
| lv_et_delivery_for_order | TYPE TDT_DLV_FOR_EWM_RETURNS, " | |||
| lv_et_batch_returnable | TYPE TDT_BATCH_RETURNABLE. " |
|   CALL FUNCTION 'EWM_SD_SINGLE_ORDER_GET_DATA' "Get original sales order |
| EXPORTING | ||
| IV_DOC_NUMBER | = lv_iv_doc_number | |
| IMPORTING | ||
| ES_HEADER_FOR_RETURNS | = lv_es_header_for_returns | |
| ET_ITEMS_FOR_RETURNS | = lv_et_items_for_returns | |
| ET_ADDRESSES_FOR_RETURNS | = lv_et_addresses_for_returns | |
| ET_PARTNERS_FOR_RETURNS | = lv_et_partners_for_returns | |
| ET_RETURN | = lv_et_return | |
| ET_DELIVERY_FOR_ORDER | = lv_et_delivery_for_order | |
| ET_BATCH_RETURNABLE | = lv_et_batch_returnable | |
| . " EWM_SD_SINGLE_ORDER_GET_DATA | ||
ABAP code using 7.40 inline data declarations to call FM EWM_SD_SINGLE_ORDER_GET_DATA
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects