CACS_TEST_FRAME 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 CACS_TEST_FRAME into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CACS_TFW - ICM Test Framework
CACS_TFW_MC - Model Consistency
CACS_TFW_UC - ICM Test Framework
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: CHECK_A = Applic. (Model Consistency)
Selection Text: CHECK_B = Application (Usage Behavior)
Selection Text: CHECK_P = Packages (Model Consistency)
Selection Text: P_NAME = Job Name
Selection Text: P_SDATA = Execution Date
Selection Text: P_STIME = Execution Time
Title: Main Program for Checks
Text Symbol: 001 = Packages to Be Checked
Text Symbol: 002 = Checks to Be Carried Out
Text Symbol: 008 = Information on Method
Text Symbol: 100 = What Is to Be Checked?
Text Symbol: 101 = Create Batch Job
Text Symbol: 130 = Application (Model Consistency)
Text Symbol: 131 = Application (Usage Behavior)
Text Symbol: 132 = Packages (Model Consistency)
INCLUDE CACS_TEST_FRAME_F02.
INCLUDE CACS_TEST_FRAME_F03.
INCLUDE CACS_TEST_FRAME_F04.
INCLUDE CACS_TEST_FRAME_F05.
INCLUDE CACS_TEST_FRAME_F06.
INCLUDE CACS_TEST_FRAME_F07.
INCLUDE CACS_TEST_FRAME_F08.
INCLUDE CACS_TEST_FRAME_F09.
INCLUDE CACS_TEST_FRAME_F10.
INCLUDE CACS_TEST_FRAME_F11.
INCLUDE S_TEST_FRAME_F01.
INCLUDE CACS_TEST_FRAME_F12.
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_DISPLAY_TEXT_WITH_PARAMS CALL FUNCTION 'POPUP_DISPLAY_TEXT_WITH_PARAMS' EXPORTING * LANGUAGE = SY-LANGU popup_title = text-008 * START_COLUMN = 10 * START_ROW = 3 text_object = ls_testtools-document * HELP_MODAL = 'X' * IMPORTING * CANCELLED = tables PARAMETERS = lt_spar * >> Note 1609680 EXCEPTIONS ERROR_IN_TEXT = 1 TEXT_NOT_FOUND = 2 * << Note 1609680 * OTHERS = 3 .
CACS_GET_ALL_PACKS CALL FUNCTION 'CACS_GET_ALL_PACKS' IMPORTING t_packages = gt_packages EXCEPTIONS OTHERS = 1.
CACS_APPLCL_READ CALL FUNCTION 'CACS_APPLCL_READ' EXPORTING i_appl = gd_appl EXCEPTIONS appl_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.