CFM_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 CFM_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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' exporting i_structure_name = c_structure_for_cfm changing ct_fieldcat = ifieldcat[] exceptions inconsistent_interface = 1 program_error = 2 others = 3.
REUSE_ALV_LIST_DISPLAY call function 'REUSE_ALV_LIST_DISPLAY' exporting * I_INTERFACE_CHECK = ' ' i_callback_program = repid i_callback_pf_status_set = 'REACT_ON_ALV_CODES_FOR_CFM' i_callback_user_command = 'ALV_CALLBACK_FOR_CFM' * I_STRUCTURE_NAME = is_layout = pi_layout it_fieldcat = pit_fieldcat[] * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' i_save = 'A' is_variant = isvariant * IT_EVENTS = * 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 = pit_cfm_data exceptions program_error = 1 others = 2.
WTAD_WTADFMCU_POST call function 'WTAD_WTADFMCU_POST' importing fe_num_recs_inserted = nol_ins fe_num_recs_updated = nol_upd fe_num_recs_deleted = nol_del tables fit_wtadfmcu = icfm_post fit_wtadfmcu_old = pxt_wtadfmcu_db fet_wtadfmcu_ins = icfm_ins fet_wtadfmcu_upd = icfm_upd fet_wtadfmcu_del = icfm_del exceptions db_error_wtadfmcu_ins = 1 db_error_wtadfmcu_upd = 2 db_error_wtadfmcu_del = 3 others = 4.
REUSE_ALV_VARIANT_F4 call function 'REUSE_ALV_VARIANT_F4' exporting is_variant = isvariant i_save = 'A' * IT_DEFAULT_FIELDCAT = importing e_exit = tmp_exit es_variant = esvariant exceptions not_found = 2.
WTAD_TWTFMT_READ call function 'WTAD_TWTFMT_READ' tables i_fb_twtfmt = itwtfmt exceptions not_found = 1 others = 2.
WTAD_WTADFMCU_SINGLE_READ call function 'WTAD_WTADFMCU_SINGLE_READ' exporting fi_vkorg = pi_vkorg fi_vtweg = pi_vtweg fi_kunnr = pi_kunnr fi_addifm = pi_addifm * FI_ADDIFMCU = * FI_REFRESH_BUFFER = ' ' * FI_MAX_BUFFER_RECORDS = 10000 tables fet_wtadfmcu = pet_wtadfmcu exceptions no_record_found = 1 others = 2.
WTAD_TWTFMT_READ call function 'WTAD_TWTFMT_READ' tables i_fb_twtfmt = itwtfmt exceptions not_found = 1 others = 2.
TVKOT_SINGLE_READ call function 'TVKOT_SINGLE_READ' exporting spras = sy-langu vkorg = pxt_cfm_data-vkorg importing wtvkot = stvkot exceptions not_found = 1 others = 2.
TVTWT_SINGLE_READ call function 'TVTWT_SINGLE_READ' exporting spras = sy-langu vtweg = pxt_cfm_data-vtweg importing wtvtwt = stvtwt exceptions not_found = 1 others = 2.
KNA1_SINGLE_READ call function 'KNA1_SINGLE_READ' exporting kna1_kunnr = pxt_cfm_data-kunnr importing wkna1 = skna1 exceptions not_found = 1 others = 2.
LVC_FIELDCATALOG_MERGE call function 'LVC_FIELDCATALOG_MERGE' exporting i_structure_name = c_structure_for_cfm * i_buffer_active = m_buffer_active * i_bypassing_buffer = m_bypassing_buffer changing ct_fieldcat = ifieldcat exceptions inconsistent_interface = 1 program_error = 2 others = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.