SAP SEPA_CUSTOMIZING_READ Function Module for
SEPA_CUSTOMIZING_READ is a standard sepa customizing read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 sepa customizing read FM, simply by entering the name SEPA_CUSTOMIZING_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: SEPA_CUSTOMIZING
Program Name: SAPLSEPA_CUSTOMIZING
Main Program: SAPLSEPA_CUSTOMIZING
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SEPA_CUSTOMIZING_READ 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 'SEPA_CUSTOMIZING_READ'".
EXPORTING
* I_ANWND = "
* I_PARAMETER_ID = "
* I_PARAMETER_LEVEL = 'X' "
IMPORTING
E_CUST = "
E_CTRL = "
ET_FIELDS = "
ET_SFIELDS = "
ET_CUST = "
ET_PARAMETERS = "
E_PARAMETER_VALUE = "
EXCEPTIONS
NOT_ACTIV = 1
IMPORTING Parameters details for SEPA_CUSTOMIZING_READ
I_ANWND -
Data type: SEPA_ANWNDOptional: Yes
Call by Reference: No ( called with pass by value option)
I_PARAMETER_ID -
Data type: SEPA_PARAM_IDOptional: Yes
Call by Reference: No ( called with pass by value option)
I_PARAMETER_LEVEL -
Data type:Default: 'X'
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for SEPA_CUSTOMIZING_READ
E_CUST -
Data type: SEPA_CUSTOptional: No
Call by Reference: No ( called with pass by value option)
E_CTRL -
Data type: SEPA_CTRLOptional: No
Call by Reference: No ( called with pass by value option)
ET_FIELDS -
Data type: SEPA_FIELDS_TOptional: No
Call by Reference: No ( called with pass by value option)
ET_SFIELDS -
Data type: SEPA_SFIELDS_TOptional: No
Call by Reference: No ( called with pass by value option)
ET_CUST -
Data type: SEPA_CUST_TOptional: No
Call by Reference: No ( called with pass by value option)
ET_PARAMETERS -
Data type: SEPA_TAB_PARAMETEROptional: No
Call by Reference: Yes
E_PARAMETER_VALUE -
Data type:Optional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_ACTIV -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SEPA_CUSTOMIZING_READ 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_e_cust | TYPE SEPA_CUST, " | |||
| lv_i_anwnd | TYPE SEPA_ANWND, " | |||
| lv_not_activ | TYPE SEPA_ANWND, " | |||
| lv_e_ctrl | TYPE SEPA_CTRL, " | |||
| lv_i_parameter_id | TYPE SEPA_PARAM_ID, " | |||
| lv_et_fields | TYPE SEPA_FIELDS_T, " | |||
| lv_i_parameter_level | TYPE SEPA_FIELDS_T, " 'X' | |||
| lv_et_sfields | TYPE SEPA_SFIELDS_T, " | |||
| lv_et_cust | TYPE SEPA_CUST_T, " | |||
| lv_et_parameters | TYPE SEPA_TAB_PARAMETER, " | |||
| lv_e_parameter_value | TYPE SEPA_TAB_PARAMETER. " |
|   CALL FUNCTION 'SEPA_CUSTOMIZING_READ' " |
| EXPORTING | ||
| I_ANWND | = lv_i_anwnd | |
| I_PARAMETER_ID | = lv_i_parameter_id | |
| I_PARAMETER_LEVEL | = lv_i_parameter_level | |
| IMPORTING | ||
| E_CUST | = lv_e_cust | |
| E_CTRL | = lv_e_ctrl | |
| ET_FIELDS | = lv_et_fields | |
| ET_SFIELDS | = lv_et_sfields | |
| ET_CUST | = lv_et_cust | |
| ET_PARAMETERS | = lv_et_parameters | |
| E_PARAMETER_VALUE | = lv_e_parameter_value | |
| EXCEPTIONS | ||
| NOT_ACTIV = 1 | ||
| . " SEPA_CUSTOMIZING_READ | ||
ABAP code using 7.40 inline data declarations to call FM SEPA_CUSTOMIZING_READ
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.| DATA(ld_i_parameter_level) | = 'X'. | |||
Search for further information about these or an SAP related objects