RDD00DOC_GET_FORMS is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RDD00DOC_GET_FORMS into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSAQ_READ_QUERY_CATALOG CALL FUNCTION 'RSAQ_READ_QUERY_CATALOG' EXPORTING WORKSPACE = s_wsid GENERIC_USERGROUP = s_bg GENERIC_QUERYNAME = '*' TABLES QUERYCATALOG = lt_aq_cat.
RSAQ_REMOTE_FUNCAREA_FIELDLIST CALL FUNCTION 'RSAQ_REMOTE_FUNCAREA_FIELDLIST' EXPORTING WORKSPACE = s_wsid FUNCAREA =
-clas TABLES FIELDLIST = lt_sg_flist EXCEPTIONS NO_FUNCTIONAL_AREA = 1 OTHERS = 2.
RSAQ_REMOTE_QUERY_FIELDLIST CALL FUNCTION 'RSAQ_REMOTE_QUERY_FIELDLIST' EXPORTING WORKSPACE = s_wsid QUERY =
-qnum USERGROUP = s_bg TABLES FIELDS = lt_aq_flist EXCEPTIONS NO_USERGROUP = 1 NO_QUERY = 2 NO_SELSCREEN = 3 OTHERS = 4.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname =
-tabname LANGU = sy-langu ALL_TYPES = gc_true TABLES DFIES_TAB = lt_dfies EXCEPTIONS NOT_FOUND = 1 INTERNAL_ERROR = 2 OTHERS = 3.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname =
-fix_table LANGU = sy-langu lfieldname = -fieldname TABLES DFIES_TAB = lt_dfies FIXED_VALUES = lt_fixed_1 EXCEPTIONS OTHERS = 1.
VIEW_AUTHORITY_CHECK CALL FUNCTION 'VIEW_AUTHORITY_CHECK' EXPORTING VIEW_ACTION = 'S' VIEW_NAME = pv_tabname NO_WARNING_FOR_CLIENTINDEP = gc_true EXCEPTIONS INVALID_ACTION = 1 NO_AUTHORITY = 2 NO_CLIENTINDEPENDENT_AUTHORITY = 3 TABLE_NOT_FOUND = 4 OTHERS = 5.
F4IF_DETERMINE_SEARCHHELP CALL FUNCTION 'F4IF_DETERMINE_SEARCHHELP' EXPORTING TABNAME = pv_tabname FIELDNAME = pv_field IMPORTING SHLP = ls_shlp EXCEPTIONS FIELD_NOT_FOUND = 1 NO_HELP_FOR_FIELD = 2 INCONSISTENT_HELP = 3 OTHERS = 4.
F4IF_SELECT_VALUES CALL FUNCTION 'F4IF_SELECT_VALUES' EXPORTING SHLP = ls_shlp MAXROWS = maxentr TABLES RETURN_TAB = lt_f4_tab.
DB_EXISTS_VIEW CALL FUNCTION 'DB_EXISTS_VIEW' EXPORTING VIEWNAME = pv_tabname IMPORTING SUBRC = pv_return.
DB_EXISTS_TABLE CALL FUNCTION 'DB_EXISTS_TABLE' EXPORTING TABNAME = pv_tabname IMPORTING SUBRC = pv_return.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname =
-tabname fieldname = -fieldname LANGU = sy-langu TABLES DFIES_TAB = lt_dfies EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.