RSDG_IOBJ_CHECK is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name RSDG_IOBJ_CHECK into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RSDG_IOBJ_DB
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'RSDG_IOBJ_CHECK' "Checks an Individual InfoObject (Internal Consistency)
* EXPORTING
* i_objvers_update = ' ' " rs_objvers Version in Which Changes Are to Be Updated
* i_oltp_check = RS_C_FALSE " rs_bool = "X": Check for OLTP InfoObjects
* i_t_tlogo = " rso_t_tlogo Additional Objects Processed Simultaneously (Only Simul. Content Transfer)
IMPORTING
e_subrc = " sy-subrc Return Code = 4: Error
e_t_msg = " rs_t_msg Messages
e_dyfie = " rs_dyfie Screen Field for 1st Error
e_dyfie_warning = " rs_dyfie Screen Field for 1st Warning
e_tabix = " sy-tabix Index on Error in Attributes or Compounding
e_tabix_warning = " sy-tabix Index on Warning for Attributes or Compounding
CHANGING
c_s_viobj = " rsd_s_viobj InfoObject
* c_t_iobj_cmp = " rsd_t_iobj_cmp Compounding
* c_t_atr = " rsd_t_atr Attributes
* c_t_atr_nav = " rsd_t_atr_nav Navigation Attributes
* c_t_iobjt = " rsd_t_iobjt Additional Texts for InfoObjects
* c_t_hana_attr = " rsd_t_iprov_mapping TTyp: Mapping of InfoProvider-Fields to HANA/ODP fields
. " RSDG_IOBJ_CHECK
The ABAP code below is a full code listing to execute function module RSDG_IOBJ_CHECK including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_subrc | TYPE SY-SUBRC , |
| ld_e_t_msg | TYPE RS_T_MSG , |
| ld_e_dyfie | TYPE RS_DYFIE , |
| ld_e_dyfie_warning | TYPE RS_DYFIE , |
| ld_e_tabix | TYPE SY-TABIX , |
| ld_e_tabix_warning | TYPE SY-TABIX . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_c_s_viobj | TYPE RSD_S_VIOBJ , |
| ld_e_subrc | TYPE SY-SUBRC , |
| ld_i_objvers_update | TYPE RS_OBJVERS , |
| ld_c_t_iobj_cmp | TYPE RSD_T_IOBJ_CMP , |
| ld_e_t_msg | TYPE RS_T_MSG , |
| ld_i_oltp_check | TYPE RS_BOOL , |
| ld_c_t_atr | TYPE RSD_T_ATR , |
| ld_e_dyfie | TYPE RS_DYFIE , |
| ld_i_t_tlogo | TYPE RSO_T_TLOGO , |
| ld_c_t_atr_nav | TYPE RSD_T_ATR_NAV , |
| ld_e_dyfie_warning | TYPE RS_DYFIE , |
| ld_c_t_iobjt | TYPE RSD_T_IOBJT , |
| ld_e_tabix | TYPE SY-TABIX , |
| ld_c_t_hana_attr | TYPE RSD_T_IPROV_MAPPING , |
| ld_e_tabix_warning | TYPE SY-TABIX . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RSDG_IOBJ_CHECK or its description.
RSDG_IOBJ_CHECK - Checks an Individual InfoObject (Internal Consistency) RSDG_IOBC_SAVE_VERSION - Saves InfoObjectCatalog in a particular version RSDG_IOBC_SAVE_TEXTS - Saves text to a InfoObjectCatalog in a specific version RSDG_IOBC_REORG - Reorganizes all system InfoObject Catalogs (type" not "assigned" ") RSDG_IOBC_DELETE - Deletes an InfoObject Catalog RSDG_IOBC_COPY_TO_VERSION - Copies a InfoObjectCatalog in another version