CCCL_TEST 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 CCCL_TEST into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CLIST - Configuration Ctrl.: Component List
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_APPND = Append Lines Off
Selection Text: P_CHANGE = Change Mode
Selection Text: P_CHECK = Initial Check Off
Selection Text: P_CH_MAT = Change Material Off
Selection Text: P_DEL = Delete Lines Off
Selection Text: P_FORCE = Force Mode Off
Selection Text: P_HEADER = Show Header
Selection Text: P_REFRES = Refresh Buffer from DB allowed
Selection Text: P_RESB = Create Reservation
Selection Text: P_SAVE = Local Save
Selection Text: P_SELECT = Select All Lines
Selection Text: S_ITEMS = Item
Selection Text: S_OPERS = Operation
Selection Text: S_ORDERS = Order
Selection Text: S_RESERS = Reservation
Title: Program CCCL_TEST
Text Symbol: 001 = Maintenance Order Data
Text Symbol: 002 = Component Reservation Data
Text Symbol: 003 = Processing Information
INCLUDE CCCLTESTTOP . " GLOBAL DATA
No SAP DATABASE tables are accessed within this REPORT code!
SELECT_OPTIONS_RESTRICT CALL FUNCTION 'SELECT_OPTIONS_RESTRICT' EXPORTING restriction = restrict EXCEPTIONS too_late = 1 repeated = 2 selopt_without_options = 5 selopt_without_signs = 6 invalid_sign = 7 empty_option_list = 9 invalid_kind = 10 repeated_kind_a = 11 OTHERS = 12.
CO_ZF_ORDER_READ CALL FUNCTION 'CO_ZF_ORDER_READ' EXPORTING flg_dialog = ' ' "no dialog flg_enqueue = ' ' "no lock TABLES aufnr_tab_imp = lt_aufnr EXCEPTIONS order_not_found = 1 release_no_change = 2 OTHERS = 3.
CO_BT_CAUFV_READ_WITH_KEY CALL FUNCTION 'CO_BT_CAUFV_READ_WITH_KEY' EXPORTING aufnr_act = s_orders-low no_dialog_info = 'X' IMPORTING caufvd_exp = ls_caufvd EXCEPTIONS not_found = 1 OTHERS = 2.
CO_BT_READ_MASTER_SEQUENCE CALL FUNCTION 'CO_BT_READ_MASTER_SEQUENCE' EXPORTING aufnr_act = s_orders-low IMPORTING affld_exp = ls_affld EXCEPTIONS not_found = 1 OTHERS = 2.
CO_BO_AFVG_READ_WITH_NUMBER CALL FUNCTION 'CO_BO_AFVG_READ_WITH_NUMBER' EXPORTING iv_vornr = lv_vornr iv_uvorn = ' ' iv_aufnr = s_orders-low iv_aplfl = ls_affld-plnfl flg_sta_chk = 'X' IMPORTING es_afvgd = ls_afvgd EXCEPTIONS not_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.