RCUCK_FLAT_VIEW_CBASE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report Program for Flat Display of CBASE This report is for the exclusive use of Regional and Development Support...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RCUCK_FLAT_VIEW_CBASE 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.
Report for Viewing the Configuartion Data Stored in the CBASE
Selection Text: P_DAT = Check date
Selection Text: P_INST = Instance (CUOBJ)
Selection Text: P_MARA = Mat.var.no.(purchasing)(MATNR)
Selection Text: P_MARC = Mat. var. no. (plant) (MATNR)
Selection Text: P_PLANT = Plant for mat. var. (WERKS)
Selection Text: P_POSNR = Item number (POSNR)
Selection Text: P_TIM = Check time
Selection Text: P_VBELN = Sales document number (VBELN)
Selection Text: SING_CHA = Display single characteristic
Selection Text: SING_INS = Display single instance/config
Selection Text: SING_VAL = Characteristic (ATINN)
Title: Program RCUCK_FLAT_VIEW_CBASE
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
IB_CONVERT_INTO_TIMESTAMP CALL FUNCTION 'IB_CONVERT_INTO_TIMESTAMP' EXPORTING i_datlo = p_dat i_timlo = p_tim i_tzone = 'UTC' IMPORTING e_timestamp = p_time.
IB_CONVERT_INTO_TIMESTAMP CALL FUNCTION 'IB_CONVERT_INTO_TIMESTAMP' EXPORTING i_datlo = sy-datum i_timlo = sy-uzeit i_tzone = 'UTC' IMPORTING e_timestamp = p_time.
CUCK_VBELN_ENTRY CALL FUNCTION 'CUCK_VBELN_ENTRY' EXPORTING vbeln = p_vbeln posnr = p_posnr IMPORTING cuobj = cuobj EXCEPTIONS no_root_found = 1 OTHERS = 2.
CUCK_INSTANCE_ENTRY CALL FUNCTION 'CUCK_INSTANCE_ENTRY' EXPORTING instance = p_inst x_input_time = p_time IMPORTING cuobj = cuobj EXCEPTIONS no_root_found = 1 OTHERS = 2.
CUCK_MARA_ENTRY CALL FUNCTION 'CUCK_MARA_ENTRY' EXPORTING matnr = p_mara IMPORTING cuobj = cuobj EXCEPTIONS no_root_found = 1 OTHERS = 2.
CUCK_MARC_ENTRY CALL FUNCTION 'CUCK_MARC_ENTRY' EXPORTING matnr = p_marc plant = p_plant IMPORTING cuobj = cuobj EXCEPTIONS no_root_found = 1 OTHERS = 2.
CUCK_VERS_VIEW CALL FUNCTION 'CUCK_VERS_VIEW' EXPORTING cuobj = cuobj xinput_instance = p_inst xinput_time = p_time sing_sel = sing_ins IMPORTING error_db_inconsistency = error_db_inconsistency error_no_dataset_found = error_no_dataset_found warning_no_configuration = warning_no_configuration TABLES x_output_tab = output_vers_tab.
CUCK_STRUCT_VERS_VIEW CALL FUNCTION 'CUCK_STRUCT_VERS_VIEW' EXPORTING cuobj = cuobj xinput_instance = p_inst xinput_time = p_time sing_sel = sing_ins IMPORTING error_db_inconsistency = error_db_inconsistency error_no_dataset_found = error_no_dataset_found warning_no_configuration = warning_no_configuration TABLES x_output_tab = output_struct_vers_tab.
CUCK_STRUCT_VIEW CALL FUNCTION 'CUCK_STRUCT_VIEW' EXPORTING cuobj = cuobj xinput_time = p_time own_ref = 'X' bom_ref = 'X' objinf = 'X' sing_sel = sing_ins xinput_instance = p_inst IMPORTING error_db_inconsistency = error_db_inconsistency error_no_dataset_found = error_no_dataset_found error_missing_bom_ref = error_missing_bom_ref error_owner_ref = error_owner_ref TABLES x_output_tab = output_tab.
CUCK_CHAR_VAL_VIEW CALL FUNCTION 'CUCK_CHAR_VAL_VIEW' EXPORTING cuobj = cuobj xinput_time = p_time sing_sel = sing_ins xinput_instance = p_inst sing_cha = sing_cha sing_val = sing_val IMPORTING error_db_inconsistency = error_db_inconsistency error_no_ref_to_char = error_no_ref_to_char error_no_ref_to_symbol = error_no_ref_to_symbol error_no_dataset_found = error_no_dataset_found TABLES x_output_tab = output_char_tab.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RCUCK_FLAT_VIEW_CBASE - Program RCUCK_FLAT_VIEW_CBASE RCUCK_FLAT_VIEW_CBASE - Program RCUCK_FLAT_VIEW_CBASE RCUCHECK_VBBE_VBAP - Report for Finding VBBE Entries Without VBAP Entries RCUCHECK_VBBE_VBAP - Report for Finding VBBE Entries Without VBAP Entries RCUCHECK_VBAP_IBASE - Report for Finding VBAP Entries Without IBASE/OLDDATABASE Entries RCUCHECK_VBAP_IBASE - Report for Finding VBAP Entries Without IBASE/OLDDATABASE Entries