SAP ISU_DB_EDEREGSWITCH2005_SELECT Function Module for
ISU_DB_EDEREGSWITCH2005_SELECT is a standard isu db ederegswitch2005 select 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 isu db ederegswitch2005 select FM, simply by entering the name ISU_DB_EDEREGSWITCH2005_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: EDEREG_SWITCH
Program Name: SAPLEDEREG_SWITCH
Main Program: SAPLEDEREG_SWITCH
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_DB_EDEREGSWITCH2005_SELECT 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 'ISU_DB_EDEREGSWITCH2005_SELECT'".
IMPORTING
Y_DEREGSWITCH2005 = "
Y_SERV_PROV_ACTIVE = "
Y_PAYMNT_PROC_ACTIVE = "
Y_GDPDU_TINV_ACTIVE = "
Y_PAYMNT_PROC_PRN = "
Y_BILL_AGENT_ACTIVE = "
Y_DIVISION_CAT = "
EXCEPTIONS
CUSTOMIZING_NOT_DEFINED = 1 ERROR_OCURRED = 2
EXPORTING Parameters details for ISU_DB_EDEREGSWITCH2005_SELECT
Y_DEREGSWITCH2005 -
Data type: EDEREGSWITCH2005Optional: No
Call by Reference: Yes
Y_SERV_PROV_ACTIVE -
Data type: E_DEREGSWITCH_SERV_PROVOptional: No
Call by Reference: Yes
Y_PAYMNT_PROC_ACTIVE -
Data type: E_DEREGSWITCH_PAYMNT_PROCOptional: No
Call by Reference: Yes
Y_GDPDU_TINV_ACTIVE -
Data type: E_DEREGSWITCH_GDPDU_TINVOptional: No
Call by Reference: Yes
Y_PAYMNT_PROC_PRN -
Data type: E_DEREGSWITCH_PAYMNT_PROC_PRNOptional: No
Call by Reference: Yes
Y_BILL_AGENT_ACTIVE -
Data type: E_DEREGSWITCH_BILL_AGENTOptional: No
Call by Reference: Yes
Y_DIVISION_CAT -
Data type: E_DEREGSWITCH_DIVISION_CATOptional: No
Call by Reference: Yes
EXCEPTIONS details
CUSTOMIZING_NOT_DEFINED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ERROR_OCURRED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_DB_EDEREGSWITCH2005_SELECT 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_y_deregswitch2005 | TYPE EDEREGSWITCH2005, " | |||
| lv_customizing_not_defined | TYPE EDEREGSWITCH2005, " | |||
| lv_error_ocurred | TYPE EDEREGSWITCH2005, " | |||
| lv_y_serv_prov_active | TYPE E_DEREGSWITCH_SERV_PROV, " | |||
| lv_y_paymnt_proc_active | TYPE E_DEREGSWITCH_PAYMNT_PROC, " | |||
| lv_y_gdpdu_tinv_active | TYPE E_DEREGSWITCH_GDPDU_TINV, " | |||
| lv_y_paymnt_proc_prn | TYPE E_DEREGSWITCH_PAYMNT_PROC_PRN, " | |||
| lv_y_bill_agent_active | TYPE E_DEREGSWITCH_BILL_AGENT, " | |||
| lv_y_division_cat | TYPE E_DEREGSWITCH_DIVISION_CAT. " |
|   CALL FUNCTION 'ISU_DB_EDEREGSWITCH2005_SELECT' " |
| IMPORTING | ||
| Y_DEREGSWITCH2005 | = lv_y_deregswitch2005 | |
| Y_SERV_PROV_ACTIVE | = lv_y_serv_prov_active | |
| Y_PAYMNT_PROC_ACTIVE | = lv_y_paymnt_proc_active | |
| Y_GDPDU_TINV_ACTIVE | = lv_y_gdpdu_tinv_active | |
| Y_PAYMNT_PROC_PRN | = lv_y_paymnt_proc_prn | |
| Y_BILL_AGENT_ACTIVE | = lv_y_bill_agent_active | |
| Y_DIVISION_CAT | = lv_y_division_cat | |
| EXCEPTIONS | ||
| CUSTOMIZING_NOT_DEFINED = 1 | ||
| ERROR_OCURRED = 2 | ||
| . " ISU_DB_EDEREGSWITCH2005_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM ISU_DB_EDEREGSWITCH2005_SELECT
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