UPB_CMI_LCL_CUST_DATA 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 UPB_CMI_LCL_CUST_DATA 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!
UPB_CMI_TEXT_GET CALL FUNCTION 'UPB_CMI_TEXT_GET' EXPORTING i_cmi = ms_cmi-cmi IMPORTING e_cmi_txt = ms_cmi-cmi_txt EXCEPTIONS db_error = 1 OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING * PERCENTAGE = 0 text = text-005.
UPB_CMI_DATASOURCE_GET CALL FUNCTION 'UPB_CMI_DATASOURCE_GET' EXPORTING i_cmi = ms_cmi-cmi IMPORTING es_cmi_datasource = ms_datasource EXCEPTIONS nothing_found = 1 OTHERS = 2.
UPB_CMI_CHAS_GET CALL FUNCTION 'UPB_CMI_CHAS_GET' EXPORTING i_cmi = ms_cmi-cmi IMPORTING et_cmi_chas_alv = mt_cmi_chas EXCEPTIONS nothing_found = 1 OTHERS = 2.
UPB_CMI_KYF_GET CALL FUNCTION 'UPB_CMI_KYF_GET' EXPORTING i_cmi = ms_cmi-cmi i_get_bwtexts = 'X' is_datasource = ms_datasource i_chanm = ld_time_chanm IMPORTING et_cmi_kyf_alv = mt_cmi_kyf EXCEPTIONS nothing_found = 1 OTHERS = 2.
UPB_CMI_CALC_GET CALL FUNCTION 'UPB_CMI_CALC_GET' EXPORTING i_cmi = ms_cmi-cmi IMPORTING et_cmi_calc_alv = mt_cmi_calc EXCEPTIONS nothing_found = 1 OTHERS = 2.
UPB_CMI_SEN_VERSIONS_GET CALL FUNCTION 'UPB_CMI_SEN_VERSIONS_GET' EXPORTING i_cmi = ms_cmi-cmi * I_GET_BWTEXTS = ' ' is_datasource = ms_datasource i_chanm = ld_version_chanm IMPORTING et_cmi_sen_versions_alv = mt_cmi_sen_version EXCEPTIONS nothing_found = 1 OTHERS = 2.
UPB_CMI_LAYOUT_GET CALL FUNCTION 'UPB_CMI_LAYOUT_GET' EXPORTING i_cmi = ms_cmi-cmi IMPORTING et_cmi_layout_alv = mt_cmi_layout et_cmi_layout_calc_alv = mt_cmi_layout_calc EXCEPTIONS nothing_found = 1 OTHERS = 2.
UPC_DISP_READ CALL FUNCTION 'UPC_DISP_READ' EXPORTING i_node_type = 'PARAM' i_area = ms_datasource-area i_plevel = ls_cmi_layout-plevel i_method = '0-MP' IMPORTING et_children = lt_children.
UPB_CMI_DEFAULT_SEL_GET CALL FUNCTION 'UPB_CMI_DEFAULT_SEL_GET' EXPORTING i_cmi = ms_cmi-cmi * I_UNAME = SY-UNAME is_datasource = ms_datasource i_orgunit_chanm = ld_orgunit_chanm i_time_chanm = ld_time_chanm i_version_chanm = ld_version_chanm IMPORTING es_selections = es_default_sel EXCEPTIONS nothing_found = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.