CU_ANALYSIS_FORMS 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 CU_ANALYSIS_FORMS 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.
Title: Include CU_ANALYSIS_FORMS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
UNIT_CONVERSION_SIMPLE CALL FUNCTION 'UNIT_CONVERSION_SIMPLE' EXPORTING INPUT = S_OPERATIONS-PLANWORK ROUND_SIGN = 'X' UNIT_IN = S_OPERATIONS-PLANUNIT UNIT_OUT = S_TL_OP-ARBEH IMPORTING OUTPUT = X_CONV_PLAN EXCEPTIONS CONVERSION_NOT_FOUND = 01 DIVISION_BY_ZERO = 02 INPUT_INVALID = 03 OVERFLOW = 04 OUTPUT_INVALID = 05 UNITS_MISSING = 06 UNIT_IN_NOT_FOUND = 07 UNIT_OUT_NOT_FOUND = 08.
UNIT_CONVERSION_SIMPLE CALL FUNCTION 'UNIT_CONVERSION_SIMPLE' EXPORTING INPUT = S_OPERATIONS-ACTUALWORK ROUND_SIGN = 'X' UNIT_IN = S_OPERATIONS-PLANUNIT UNIT_OUT = S_TL_OP-ARBEH IMPORTING OUTPUT = X_CONV_ACTUAL EXCEPTIONS CONVERSION_NOT_FOUND = 01 DIVISION_BY_ZERO = 02 INPUT_INVALID = 03 OVERFLOW = 04 OUTPUT_INVALID = 05 UNITS_MISSING = 06 UNIT_IN_NOT_FOUND = 07 UNIT_OUT_NOT_FOUND = 08.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING IT_LIST_COMMENTARY = G_LISTHEADER_TAB.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING * I_INTERFACE_CHECK = 'X' "only for testing I_CALLBACK_PROGRAM = REPID I_CALLBACK_PF_STATUS_SET = CO_FORM_SET_PF_STATUS I_CALLBACK_USER_COMMAND = CO_FORM_USER_COMMAND_ORDER * I_CALLBACK_TOP_OF_PAGE = * I_CALLBACK_HTML_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_END_OF_LIST = ' ' * I_STRUCTURE_NAME = struc_name * I_BACKGROUND_ID = ' ' * I_GRID_TITLE = grid_title * I_GRID_SETTINGS = IS_LAYOUT = G_LAYOUT IT_FIELDCAT = G_FIELDCAT_TAB[] * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = I_DEFAULT = 'X' I_SAVE = G_VARIANT_SAVE IS_VARIANT = G_VARIANT IT_EVENTS = G_EVENTS_TAB[] * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES T_OUTTAB = T_OPERATIONS_DISPLAY EXCEPTIONS PROGRAM_ERROR = 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.