SAP EXIT_SAPL1036_008 Function Module for Exit 2 (Output) for BusinessProcess.GetList
EXIT_SAPL1036_008 is a standard exit sapl1036 008 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Exit 2 (Output) for BusinessProcess.GetList 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 exit sapl1036 008 FM, simply by entering the name EXIT_SAPL1036_008 into the relevant SAP transaction such as SE37 or SE38.
Function Group: X1036
Program Name: SAPLX1036
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EXIT_SAPL1036_008 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 'EXIT_SAPL1036_008'"Exit 2 (Output) for BusinessProcess.GetList.
TABLES
EXTENSIONOUT = "Reference Structure for BAPI Parameters EXTENSIONIN/EXTENSIONOUT
RETURN = "Return parameter
Related Function Modules
Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.ALE_PROCESS_CHANGEMULTIPLE
ALE_PROCESS_CREATEMULTIPLE
ALE_PROCESS_SAVE_PRICES
ALE_PROCESS_SAVE_REPLICA
ALE_PROCESS_SETSTRUCTURE
BAPI_PROCESS_ACTIVATE_MULTIPLE Activate inactive BP
BAPI_PROCESS_CHANGEMULTIPLE Change One or More Business Processes
BAPI_PROCESS_CHECKMULTIPLE Check changes in one or more business processes
BAPI_PROCESS_CREATEMULTIPLE Create One or More Business Processes
BAPI_PROCESS_DELETEMULTIPLE Delete one or more BP's
BAPI_PROCESS_GETACTALLOCTYPES
BAPI_PROCESS_GETDETAIL Detail information for business process on key date
BAPI_PROCESS_GETLIST List of business processes per selection conditions
BAPI_PROCESS_GETPRICES
BAPI_PROCESS_SAVE_PRICES ALE: replicate price from business processes
BAPI_PROCESS_SAVE_REPLICA Replicate individual business process (ALE)
BAPI_PROCESS_SETSTRUCTURE Enter template in business process master data
IDOC_INPUT_COABCM
IDOC_INPUT_COABCV
IDOC_INPUT_CO_ABC_BPROC_CHANGE
IDOC_INPUT_CO_ABC_BPROC_CREATE
IDOC_INPUT_CO_ABC_BPROC_SETSTR
MAP2E_CBPRP_TO_BAPI1036_BPALST
MAP2E_CBPRV_TO_BAPI1036_BPOLST
MAP2I_BAPI1036_BPALST_TO_CBPRP
MAP2I_BAPI1036_BPILST_TO_CBPRP
TABLES Parameters details for EXIT_SAPL1036_008
EXTENSIONOUT - Reference Structure for BAPI Parameters EXTENSIONIN/EXTENSIONOUT
Data type: BAPIPAREXOptional: No
Call by Reference: No ( called with pass by value option)
RETURN - Return parameter
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EXIT_SAPL1036_008 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: | ||||
| lt_extensionout | TYPE STANDARD TABLE OF BAPIPAREX, " | |||
| lt_return | TYPE STANDARD TABLE OF BAPIRET2. " |
|   CALL FUNCTION 'EXIT_SAPL1036_008' "Exit 2 (Output) for BusinessProcess.GetList |
| TABLES | ||
| EXTENSIONOUT | = lt_extensionout | |
| RETURN | = lt_return | |
| . " EXIT_SAPL1036_008 | ||
ABAP code using 7.40 inline data declarations to call FM EXIT_SAPL1036_008
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