DMS_CUST_CHECK01 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 DMS_CUST_CHECK01 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.
Selection Text: P_DAPPL = D Application
Selection Text: P_TYP = D Data Carrier Type
Title: Verifying DMS Customizing on frontend
Text Symbol: 001 = Reading data for & ...
Text Symbol: 002 = Checking registry for & ...
INCLUDE: CV_CONSTANTS,
No SAP DATABASE tables are accessed within this REPORT code!
CV120_GET_FRONTEND_TYPE CALL FUNCTION 'CV120_GET_FRONTEND_TYPE' IMPORTING pfx_frontend_type = ls_frontend-frontend_type pfx_host = ls_frontend-hostname pfx_winsys = ls_frontend-winsys EXCEPTIONS error = 1 no_valid_frontend = 2 OTHERS = 3.
CV120_GET_FRONTEND_TYPE CALL FUNCTION 'CV120_GET_FRONTEND_TYPE' EXPORTING: pf_host = 'DEFAULT' IMPORTING: pfx_frontend_type = lf_def_ftype EXCEPTIONS: error = 1 no_valid_frontend = 2 OTHERS = 3.
CV200_DB_TDWE_SELECT CALL FUNCTION 'CV200_DB_TDWE_SELECT' EXPORTING: pf_typdt = ls_frontend-frontend_type IMPORTING: psx_tdwe = ls_tdwe EXCEPTIONS: not_found = 1.
CV120_DOC_FILE_EXISTENCE_CHECK CALL FUNCTION 'CV120_DOC_FILE_EXISTENCE_CHECK' EXPORTING: pf_file = lf_filep IMPORTING: pfx_exist = lf_exist EXCEPTIONS: error = 1 OTHERS = 2.
CV120_GET_APPL_TYPE CALL FUNCTION 'CV120_GET_APPL_TYPE' EXPORTING pf_dappl = ps_tdwp-dappl pf_apptp = pf_apptp pf_typdt = pf_ftyp IMPORTING pfx_appl_name = lf_appl_name pfx_appl_type = lf_appl_type psx_tdwx = ls_tdwx EXCEPTIONS error = 1 OTHERS = 2.
CV120_GET_APPL_FROM_REGISTRY CALL FUNCTION 'CV120_GET_APPL_FROM_REGISTRY' EXPORTING pf_apptp = pf_apptp pf_file = lf_file IMPORTING pfx_program = lf_program pfx_run_flag = lf_run_flag EXCEPTIONS no_valid_program = 1 OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING: percentage = pf_percentage text = lf_text.
CV120_GET_FRONTEND_TYPE CALL FUNCTION 'CV120_GET_FRONTEND_TYPE' IMPORTING: pfx_frontend_type = p_typ EXCEPTIONS: error = 1 no_valid_frontend = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.