SAP Function Modules

RSDG_IOBJ_CHECK SAP Function module - Checks an Individual InfoObject (Internal Consistency)







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
Normal function module settings


Pattern for FM RSDG_IOBJ_CHECK - RSDG IOBJ CHECK





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

ABAP code example for Function Module 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).

DATA:
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 .

DATA(ld_c_s_viobj) = 'Check type of data required'.
DATA(ld_c_t_iobj_cmp) = 'Check type of data required'.
DATA(ld_c_t_atr) = 'Check type of data required'.
DATA(ld_c_t_atr_nav) = 'Check type of data required'.
DATA(ld_c_t_iobjt) = 'Check type of data required'.
DATA(ld_c_t_hana_attr) = 'Check type of data required'.
DATA(ld_i_objvers_update) = 'Check type of data required'.
DATA(ld_i_oltp_check) = 'Check type of data required'.
DATA(ld_i_t_tlogo) = 'Check type of data required'. . CALL FUNCTION 'RSDG_IOBJ_CHECK' * EXPORTING * i_objvers_update = ld_i_objvers_update * i_oltp_check = ld_i_oltp_check * i_t_tlogo = ld_i_t_tlogo IMPORTING e_subrc = ld_e_subrc e_t_msg = ld_e_t_msg e_dyfie = ld_e_dyfie e_dyfie_warning = ld_e_dyfie_warning e_tabix = ld_e_tabix e_tabix_warning = ld_e_tabix_warning CHANGING c_s_viobj = ld_c_s_viobj * c_t_iobj_cmp = ld_c_t_iobj_cmp * c_t_atr = ld_c_t_atr * c_t_atr_nav = ld_c_t_atr_nav * c_t_iobjt = ld_c_t_iobjt * c_t_hana_attr = ld_c_t_hana_attr . " RSDG_IOBJ_CHECK
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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 .

ld_c_s_viobj = 'Check type of data required'.
ld_i_objvers_update = 'Check type of data required'.
ld_c_t_iobj_cmp = 'Check type of data required'.
ld_i_oltp_check = 'Check type of data required'.
ld_c_t_atr = 'Check type of data required'.
ld_i_t_tlogo = 'Check type of data required'.
ld_c_t_atr_nav = 'Check type of data required'.
ld_c_t_iobjt = 'Check type of data required'.
ld_c_t_hana_attr = 'Check type of data required'.

Contribute (Add Comments)

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.