SAP BAPI_EXTORDER_GETDETAIL Function Module for IS-H: BAPI ExternalOrder.GetExternalOrder - Display External Order
BAPI_EXTORDER_GETDETAIL is a standard bapi extorder getdetail SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-H: BAPI ExternalOrder.GetExternalOrder - Display External 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 bapi extorder getdetail FM, simply by entering the name BAPI_EXTORDER_GETDETAIL into the relevant SAP transaction such as SE37 or SE38.
Function Group: 1312
Program Name: SAPL1312
Main Program: SAPL1312
Appliation area:
Release date: 13-Jul-2007
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BAPI_EXTORDER_GETDETAIL 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 'BAPI_EXTORDER_GETDETAIL'"IS-H: BAPI ExternalOrder.GetExternalOrder - Display External Order.
EXPORTING
INSTITUTION = "IS-H: Institution
EXTERNAL_ORDER_ID = "External Order Number
IMPORTING
EXTERNAL_ORDER = "IS-H: External Order
EXTERNAL_ORDERER = "IS-H: External Order Placer
WORST_RETURNED_MSGTY = "Most Severe Message Type
TABLES
* REMARK_INTERNAL = "Internal Comment
* REMARK_EXTERNAL = "External Comment
* RETURN = "Return Messages
IMPORTING Parameters details for BAPI_EXTORDER_GETDETAIL
INSTITUTION - IS-H: Institution
Data type: BAPI1312NEO_NFAL-INSTITUTIONOptional: No
Call by Reference: No ( called with pass by value option)
EXTERNAL_ORDER_ID - External Order Number
Data type: BAPI1312NEO_NFAL-PATCASEIDOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for BAPI_EXTORDER_GETDETAIL
EXTERNAL_ORDER - IS-H: External Order
Data type: BAPI1312NEO_NFALOptional: No
Call by Reference: No ( called with pass by value option)
EXTERNAL_ORDERER - IS-H: External Order Placer
Data type: BAPI1309BPARTNER-BPARTNEROptional: No
Call by Reference: No ( called with pass by value option)
WORST_RETURNED_MSGTY - Most Severe Message Type
Data type: BAPINALL-WORSTRETMSGOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BAPI_EXTORDER_GETDETAIL
REMARK_INTERNAL - Internal Comment
Data type: BAPI1312LTEXTOptional: Yes
Call by Reference: Yes
REMARK_EXTERNAL - External Comment
Data type: BAPI1312LTEXTOptional: Yes
Call by Reference: Yes
RETURN - Return Messages
Data type: BAPIRET2Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for BAPI_EXTORDER_GETDETAIL 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_institution | TYPE BAPI1312NEO_NFAL-INSTITUTION, " | |||
| lv_external_order | TYPE BAPI1312NEO_NFAL, " | |||
| lt_remark_internal | TYPE STANDARD TABLE OF BAPI1312LTEXT, " | |||
| lt_remark_external | TYPE STANDARD TABLE OF BAPI1312LTEXT, " | |||
| lv_external_orderer | TYPE BAPI1309BPARTNER-BPARTNER, " | |||
| lv_external_order_id | TYPE BAPI1312NEO_NFAL-PATCASEID, " | |||
| lt_return | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lv_worst_returned_msgty | TYPE BAPINALL-WORSTRETMSG. " |
|   CALL FUNCTION 'BAPI_EXTORDER_GETDETAIL' "IS-H: BAPI ExternalOrder.GetExternalOrder - Display External Order |
| EXPORTING | ||
| INSTITUTION | = lv_institution | |
| EXTERNAL_ORDER_ID | = lv_external_order_id | |
| IMPORTING | ||
| EXTERNAL_ORDER | = lv_external_order | |
| EXTERNAL_ORDERER | = lv_external_orderer | |
| WORST_RETURNED_MSGTY | = lv_worst_returned_msgty | |
| TABLES | ||
| REMARK_INTERNAL | = lt_remark_internal | |
| REMARK_EXTERNAL | = lt_remark_external | |
| RETURN | = lt_return | |
| . " BAPI_EXTORDER_GETDETAIL | ||
ABAP code using 7.40 inline data declarations to call FM BAPI_EXTORDER_GETDETAIL
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.| "SELECT single INSTITUTION FROM BAPI1312NEO_NFAL INTO @DATA(ld_institution). | ||||
| "SELECT single BPARTNER FROM BAPI1309BPARTNER INTO @DATA(ld_external_orderer). | ||||
| "SELECT single PATCASEID FROM BAPI1312NEO_NFAL INTO @DATA(ld_external_order_id). | ||||
| "SELECT single WORSTRETMSG FROM BAPINALL INTO @DATA(ld_worst_returned_msgty). | ||||
Search for further information about these or an SAP related objects