cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Table or view that stores SID table for InfoObjects.

Former Member
0 Likes
2,904

What data dictionary table or view stores the name of the SID table for InfoObjects?  In the Display Characteristics transaction the form uses the structure RSDGSCIOBJ and the field name SIDTAB.  I am looking for the source table object that stores SIDTAB.  Thanks.

View Entire Topic
umashankar_poojar
Active Contributor
0 Likes

Hi Elvis,

           As you mentioned in the display transaction, the form uses the structure RSDGSCIOBJ and field name SIDTAB, and you would like to know the source table for SIDTAB.  Please note it doesn't have any source, infact it is filled during runtime.

Further Information:

The value for this field is populated by program 'SAPLRSD_GU_IOBJ_MAINT' - please note this is Function Pool not executable program. Inside this there is a include program 'LRSD_GUI_IOBJ_MAINTF40' which calls the Function Module 'RSD_SIDTAB_GET_FOR_CHA_BAS' to get value for the field RSDGSCIOBJ-SIDTAB.

The logic of FM is to append /BIC/S*InfoObject* OR /BI0/S*InfoObject* and display in RSDGSCIOBJ-SIDTAB.

Based on above logic, if you check the tables DD02V (view on DD02L & DD02T) and search /BIC/S* & /BI0/S* in table name. you will get the names of SID Tables for all InfoObjects.

Thanks,

Umashankar

Former Member
0 Likes

Hi Umashankar,

Please see my latest update.  I am asking within the context of building a SQL query and have not visibility to any ABAP structures/functions/programs/etc.

Thanks.

Elvis