SAP RSDG_IOBJ_SAVE_TEXTS Function Module for Saves Texts for InfoObject (RFC Service for Bank Analyzer)
RSDG_IOBJ_SAVE_TEXTS is a standard rsdg iobj save texts SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Saves Texts for InfoObject (RFC Service for Bank Analyzer) 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 rsdg iobj save texts FM, simply by entering the name RSDG_IOBJ_SAVE_TEXTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSDG_IOBJ_DB
Program Name: SAPLRSDG_IOBJ_DB
Main Program: SAPLRSDG_IOBJ_DB
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function RSDG_IOBJ_SAVE_TEXTS 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 'RSDG_IOBJ_SAVE_TEXTS'"Saves Texts for InfoObject (RFC Service for Bank Analyzer).
EXPORTING
* I_RFC_CALL = RS_C_FALSE "= 'X': RFC Call (No Exceptions But E_S_RETURN)
I_IOBJNM = "InfoObject
* I_OBJVERS = RS_C_OBJVERS-MODIFIED "Version
* I_T_IOBJT = "InfoCube Texts
* I_T_ATRNAVT = "Navigation Attribute Texts
IMPORTING
E_S_RETURN = "Return Parameter (Only for RFC Call)
EXCEPTIONS
UPDATE_ERROR = 1 IOBJ_NOT_FOUND = 2 ATR_NAV_NOT_FOUND = 3
IMPORTING Parameters details for RSDG_IOBJ_SAVE_TEXTS
I_RFC_CALL - = 'X': RFC Call (No Exceptions But E_S_RETURN)
Data type: RS_BOOLDefault: RS_C_FALSE
Optional: No
Call by Reference: No ( called with pass by value option)
I_IOBJNM - InfoObject
Data type: RSIOBJNMOptional: No
Call by Reference: No ( called with pass by value option)
I_OBJVERS - Version
Data type: RSOBJVERSDefault: RS_C_OBJVERS-MODIFIED
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_T_IOBJT - InfoCube Texts
Data type: RSD_T_IOBJTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_T_ATRNAVT - Navigation Attribute Texts
Data type: RSD_T_ATRNAVTOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for RSDG_IOBJ_SAVE_TEXTS
E_S_RETURN - Return Parameter (Only for RFC Call)
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
UPDATE_ERROR - Error when saving
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
IOBJ_NOT_FOUND - InfoObject Not Found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ATR_NAV_NOT_FOUND - Navigation Attribute Not Found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RSDG_IOBJ_SAVE_TEXTS 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_s_return | TYPE BAPIRET2, " | |||
| lv_i_rfc_call | TYPE RS_BOOL, " RS_C_FALSE | |||
| lv_update_error | TYPE RS_BOOL, " | |||
| lv_i_iobjnm | TYPE RSIOBJNM, " | |||
| lv_iobj_not_found | TYPE RSIOBJNM, " | |||
| lv_i_objvers | TYPE RSOBJVERS, " RS_C_OBJVERS-MODIFIED | |||
| lv_atr_nav_not_found | TYPE RSOBJVERS, " | |||
| lv_i_t_iobjt | TYPE RSD_T_IOBJT, " | |||
| lv_i_t_atrnavt | TYPE RSD_T_ATRNAVT. " |
|   CALL FUNCTION 'RSDG_IOBJ_SAVE_TEXTS' "Saves Texts for InfoObject (RFC Service for Bank Analyzer) |
| EXPORTING | ||
| I_RFC_CALL | = lv_i_rfc_call | |
| I_IOBJNM | = lv_i_iobjnm | |
| I_OBJVERS | = lv_i_objvers | |
| I_T_IOBJT | = lv_i_t_iobjt | |
| I_T_ATRNAVT | = lv_i_t_atrnavt | |
| IMPORTING | ||
| E_S_RETURN | = lv_e_s_return | |
| EXCEPTIONS | ||
| UPDATE_ERROR = 1 | ||
| IOBJ_NOT_FOUND = 2 | ||
| ATR_NAV_NOT_FOUND = 3 | ||
| . " RSDG_IOBJ_SAVE_TEXTS | ||
ABAP code using 7.40 inline data declarations to call FM RSDG_IOBJ_SAVE_TEXTS
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_rfc_call) | = RS_C_FALSE. | |||
| DATA(ld_i_objvers) | = RS_C_OBJVERS-MODIFIED. | |||
Search for further information about these or an SAP related objects