SAP CORU_S_SET_CUSTOMIZING Function Module for Copy Customizing Texts for Call from Customizing
CORU_S_SET_CUSTOMIZING is a standard coru s set customizing SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Copy Customizing Texts for Call from Customizing 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 coru s set customizing FM, simply by entering the name CORU_S_SET_CUSTOMIZING into the relevant SAP transaction such as SE37 or SE38.
Function Group: CORU_S
Program Name: SAPLCORU_S
Main Program: SAPLCORU_S
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CORU_S_SET_CUSTOMIZING 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 'CORU_S_SET_CUSTOMIZING'"Copy Customizing Texts for Call from Customizing.
EXPORTING
* I_AUERU = "
* I_PRTEXT2 = "
* I_PRTEXT3 = "
* I_PRTEXT4 = "
* I_PRTEXT5 = "
* I_PRTEXT6 = "
* I_IL1INVISIBLE = "
* I_IL2INVISIBLE = "
* I_IL3INVISIBLE = "
* I_IL4INVISIBLE = "
* I_IL5INVISIBLE = "
* I_AUSOR = "
* I_IL6INVISIBLE = "
* I_PR1INVISIBLE = "
* I_PR2INVISIBLE = "
* I_PR3INVISIBLE = "
* I_PR4INVISIBLE = "
* I_PR5INVISIBLE = "
* I_PR6INVISIBLE = "
* I_ILTEXT1 = "
* I_ILTEXT2 = "
* I_ILTEXT3 = "
* I_ILTEXT4 = "
* I_ILTEXT5 = "
* I_ILTEXT6 = "
* I_PRTEXT1 = "
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLCORU_S_001 QM: Create Notif. from Confirmation of Production Order
EXIT_SAPLCORU_S_100 Transfer Data from SAPLCORU_S to Customer-Defined Screen
EXIT_SAPLCORU_S_101 Return Data from Customer-Defined Screen to SAPLCORU_S
IMPORTING Parameters details for CORU_S_SET_CUSTOMIZING
I_AUERU -
Data type: V_TCORUSSDEF-AUERUOptional: Yes
Call by Reference: Yes
I_PRTEXT2 -
Data type: V_TCORUSSDEF-PRTEXT2Optional: Yes
Call by Reference: Yes
I_PRTEXT3 -
Data type: V_TCORUSSDEF-PRTEXT3Optional: Yes
Call by Reference: Yes
I_PRTEXT4 -
Data type: V_TCORUSSDEF-PRTEXT4Optional: Yes
Call by Reference: Yes
I_PRTEXT5 -
Data type: V_TCORUSSDEF-PRTEXT5Optional: Yes
Call by Reference: Yes
I_PRTEXT6 -
Data type: V_TCORUSSDEF-PRTEXT6Optional: Yes
Call by Reference: Yes
I_IL1INVISIBLE -
Data type: V_TCORUSSDEF-IL1INVISIBLEOptional: Yes
Call by Reference: Yes
I_IL2INVISIBLE -
Data type: V_TCORUSSDEF-IL2INVISIBLEOptional: Yes
Call by Reference: Yes
I_IL3INVISIBLE -
Data type: V_TCORUSSDEF-IL3INVISIBLEOptional: Yes
Call by Reference: Yes
I_IL4INVISIBLE -
Data type: V_TCORUSSDEF-IL4INVISIBLEOptional: Yes
Call by Reference: Yes
I_IL5INVISIBLE -
Data type: V_TCORUSSDEF-IL5INVISIBLEOptional: Yes
Call by Reference: Yes
I_AUSOR -
Data type: V_TCORUSSDEF-AUSOROptional: Yes
Call by Reference: Yes
I_IL6INVISIBLE -
Data type: V_TCORUSSDEF-IL6INVISIBLEOptional: Yes
Call by Reference: Yes
I_PR1INVISIBLE -
Data type: V_TCORUSSDEF-PR1INVISIBLEOptional: Yes
Call by Reference: Yes
I_PR2INVISIBLE -
Data type: V_TCORUSSDEF-PR2INVISIBLEOptional: Yes
Call by Reference: Yes
I_PR3INVISIBLE -
Data type: V_TCORUSSDEF-PR3INVISIBLEOptional: Yes
Call by Reference: Yes
I_PR4INVISIBLE -
Data type: V_TCORUSSDEF-PR4INVISIBLEOptional: Yes
Call by Reference: Yes
I_PR5INVISIBLE -
Data type: V_TCORUSSDEF-PR5INVISIBLEOptional: Yes
Call by Reference: Yes
I_PR6INVISIBLE -
Data type: V_TCORUSSDEF-PR6INVISIBLEOptional: Yes
Call by Reference: Yes
I_ILTEXT1 -
Data type: V_TCORUSSDEF-ILTEXT1Optional: Yes
Call by Reference: Yes
I_ILTEXT2 -
Data type: V_TCORUSSDEF-ILTEXT2Optional: Yes
Call by Reference: Yes
I_ILTEXT3 -
Data type: V_TCORUSSDEF-ILTEXT3Optional: Yes
Call by Reference: Yes
I_ILTEXT4 -
Data type: V_TCORUSSDEF-ILTEXT4Optional: Yes
Call by Reference: Yes
I_ILTEXT5 -
Data type: V_TCORUSSDEF-ILTEXT5Optional: Yes
Call by Reference: Yes
I_ILTEXT6 -
Data type: V_TCORUSSDEF-ILTEXT6Optional: Yes
Call by Reference: Yes
I_PRTEXT1 -
Data type: V_TCORUSSDEF-PRTEXT1Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for CORU_S_SET_CUSTOMIZING 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_i_aueru | TYPE V_TCORUSSDEF-AUERU, " | |||
| lv_i_prtext2 | TYPE V_TCORUSSDEF-PRTEXT2, " | |||
| lv_i_prtext3 | TYPE V_TCORUSSDEF-PRTEXT3, " | |||
| lv_i_prtext4 | TYPE V_TCORUSSDEF-PRTEXT4, " | |||
| lv_i_prtext5 | TYPE V_TCORUSSDEF-PRTEXT5, " | |||
| lv_i_prtext6 | TYPE V_TCORUSSDEF-PRTEXT6, " | |||
| lv_i_il1invisible | TYPE V_TCORUSSDEF-IL1INVISIBLE, " | |||
| lv_i_il2invisible | TYPE V_TCORUSSDEF-IL2INVISIBLE, " | |||
| lv_i_il3invisible | TYPE V_TCORUSSDEF-IL3INVISIBLE, " | |||
| lv_i_il4invisible | TYPE V_TCORUSSDEF-IL4INVISIBLE, " | |||
| lv_i_il5invisible | TYPE V_TCORUSSDEF-IL5INVISIBLE, " | |||
| lv_i_ausor | TYPE V_TCORUSSDEF-AUSOR, " | |||
| lv_i_il6invisible | TYPE V_TCORUSSDEF-IL6INVISIBLE, " | |||
| lv_i_pr1invisible | TYPE V_TCORUSSDEF-PR1INVISIBLE, " | |||
| lv_i_pr2invisible | TYPE V_TCORUSSDEF-PR2INVISIBLE, " | |||
| lv_i_pr3invisible | TYPE V_TCORUSSDEF-PR3INVISIBLE, " | |||
| lv_i_pr4invisible | TYPE V_TCORUSSDEF-PR4INVISIBLE, " | |||
| lv_i_pr5invisible | TYPE V_TCORUSSDEF-PR5INVISIBLE, " | |||
| lv_i_pr6invisible | TYPE V_TCORUSSDEF-PR6INVISIBLE, " | |||
| lv_i_iltext1 | TYPE V_TCORUSSDEF-ILTEXT1, " | |||
| lv_i_iltext2 | TYPE V_TCORUSSDEF-ILTEXT2, " | |||
| lv_i_iltext3 | TYPE V_TCORUSSDEF-ILTEXT3, " | |||
| lv_i_iltext4 | TYPE V_TCORUSSDEF-ILTEXT4, " | |||
| lv_i_iltext5 | TYPE V_TCORUSSDEF-ILTEXT5, " | |||
| lv_i_iltext6 | TYPE V_TCORUSSDEF-ILTEXT6, " | |||
| lv_i_prtext1 | TYPE V_TCORUSSDEF-PRTEXT1. " |
|   CALL FUNCTION 'CORU_S_SET_CUSTOMIZING' "Copy Customizing Texts for Call from Customizing |
| EXPORTING | ||
| I_AUERU | = lv_i_aueru | |
| I_PRTEXT2 | = lv_i_prtext2 | |
| I_PRTEXT3 | = lv_i_prtext3 | |
| I_PRTEXT4 | = lv_i_prtext4 | |
| I_PRTEXT5 | = lv_i_prtext5 | |
| I_PRTEXT6 | = lv_i_prtext6 | |
| I_IL1INVISIBLE | = lv_i_il1invisible | |
| I_IL2INVISIBLE | = lv_i_il2invisible | |
| I_IL3INVISIBLE | = lv_i_il3invisible | |
| I_IL4INVISIBLE | = lv_i_il4invisible | |
| I_IL5INVISIBLE | = lv_i_il5invisible | |
| I_AUSOR | = lv_i_ausor | |
| I_IL6INVISIBLE | = lv_i_il6invisible | |
| I_PR1INVISIBLE | = lv_i_pr1invisible | |
| I_PR2INVISIBLE | = lv_i_pr2invisible | |
| I_PR3INVISIBLE | = lv_i_pr3invisible | |
| I_PR4INVISIBLE | = lv_i_pr4invisible | |
| I_PR5INVISIBLE | = lv_i_pr5invisible | |
| I_PR6INVISIBLE | = lv_i_pr6invisible | |
| I_ILTEXT1 | = lv_i_iltext1 | |
| I_ILTEXT2 | = lv_i_iltext2 | |
| I_ILTEXT3 | = lv_i_iltext3 | |
| I_ILTEXT4 | = lv_i_iltext4 | |
| I_ILTEXT5 | = lv_i_iltext5 | |
| I_ILTEXT6 | = lv_i_iltext6 | |
| I_PRTEXT1 | = lv_i_prtext1 | |
| . " CORU_S_SET_CUSTOMIZING | ||
ABAP code using 7.40 inline data declarations to call FM CORU_S_SET_CUSTOMIZING
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 AUERU FROM V_TCORUSSDEF INTO @DATA(ld_i_aueru). | ||||
| "SELECT single PRTEXT2 FROM V_TCORUSSDEF INTO @DATA(ld_i_prtext2). | ||||
| "SELECT single PRTEXT3 FROM V_TCORUSSDEF INTO @DATA(ld_i_prtext3). | ||||
| "SELECT single PRTEXT4 FROM V_TCORUSSDEF INTO @DATA(ld_i_prtext4). | ||||
| "SELECT single PRTEXT5 FROM V_TCORUSSDEF INTO @DATA(ld_i_prtext5). | ||||
| "SELECT single PRTEXT6 FROM V_TCORUSSDEF INTO @DATA(ld_i_prtext6). | ||||
| "SELECT single IL1INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_il1invisible). | ||||
| "SELECT single IL2INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_il2invisible). | ||||
| "SELECT single IL3INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_il3invisible). | ||||
| "SELECT single IL4INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_il4invisible). | ||||
| "SELECT single IL5INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_il5invisible). | ||||
| "SELECT single AUSOR FROM V_TCORUSSDEF INTO @DATA(ld_i_ausor). | ||||
| "SELECT single IL6INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_il6invisible). | ||||
| "SELECT single PR1INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_pr1invisible). | ||||
| "SELECT single PR2INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_pr2invisible). | ||||
| "SELECT single PR3INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_pr3invisible). | ||||
| "SELECT single PR4INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_pr4invisible). | ||||
| "SELECT single PR5INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_pr5invisible). | ||||
| "SELECT single PR6INVISIBLE FROM V_TCORUSSDEF INTO @DATA(ld_i_pr6invisible). | ||||
| "SELECT single ILTEXT1 FROM V_TCORUSSDEF INTO @DATA(ld_i_iltext1). | ||||
| "SELECT single ILTEXT2 FROM V_TCORUSSDEF INTO @DATA(ld_i_iltext2). | ||||
| "SELECT single ILTEXT3 FROM V_TCORUSSDEF INTO @DATA(ld_i_iltext3). | ||||
| "SELECT single ILTEXT4 FROM V_TCORUSSDEF INTO @DATA(ld_i_iltext4). | ||||
| "SELECT single ILTEXT5 FROM V_TCORUSSDEF INTO @DATA(ld_i_iltext5). | ||||
| "SELECT single ILTEXT6 FROM V_TCORUSSDEF INTO @DATA(ld_i_iltext6). | ||||
| "SELECT single PRTEXT1 FROM V_TCORUSSDEF INTO @DATA(ld_i_prtext1). | ||||
Search for further information about these or an SAP related objects