SDB2FHDB is a standard Executable ABAP Report 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 SDB2FHDB 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.
INCLUDE: RADBTMAC, RADBTMA1, RADBTOU0, RADBTOUM, RADBTSC0.
INCLUDE: RADBTMAC, RADBTMA1, RADBTOU0, RADBTOUM, RADBTSC0.
INCLUDE: RADBTMAC, RADBTMA1, RADBTOU0, RADBTOUM, RADBTSC0.
INCLUDE SDB2FCOM.
No SAP DATABASE tables are accessed within this REPORT code!
DB_MAP_DDFIELDS call function 'DB_MAP_DDFIELDS' exporting dbsys = dbsys with_string = 'X' tables dbftypes = dbftype_glo ddfields = ddfieldtab exceptions not_mappable = 01.
DD_SHDUPG_GET_DBTABNAME call function 'DD_SHDUPG_GET_DBTABNAME' exporting ddic_tabname = tabname importing db_tabname = dbtabname.
SHDB_FEATURES call function 'SHDB_FEATURES' exporting i_feature_name = l_feature_name i_component_name = l_component_name importing e_enabled = l_up_enabled * e_feature_version = e_feature_version exceptions sql_error = 1 internal_error = 2 others = 3.
SHDB_FEATURES call function 'SHDB_FEATURES' exporting i_feature_name = l_feature_name i_component_name = l_component_name importing e_enabled = l_enabled * e_feature_version = e_feature_version exceptions sql_error = 1 internal_error = 2 others = 3.
SHDB_FEATURES call function 'SHDB_FEATURES' exporting i_feature_name = l_feature_name i_component_name = l_component_name importing e_enabled = l_enabled * e_feature_version = e_feature_version exceptions sql_error = 1 internal_error = 2 others = 3.
SHDB_GET_TABLE_CLASSIFICATION call function 'SHDB_GET_TABLE_CLASSIFICATION' exporting i_table_name = tabname "global variable IMPORTING E_GROUP_NAME = l_group_name E_GROUP_TYPE = l_group_type E_SUBTYPE = l_subtype 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.