IGM_BILLING_BLOCK_F02 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 IGM_BILLING_BLOCK_F02 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 IGM_BILLING_BLOCK_F02
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_s_msg = l_s_msg EXCEPTIONS log_not_found = 0 OTHERS = 1.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = l_s_log IMPORTING e_log_handle = g_log_handle EXCEPTIONS OTHERS = 1.
BAL_GLB_MSG_DEFAULTS_SET CALL FUNCTION 'BAL_GLB_MSG_DEFAULTS_SET' EXPORTING i_s_msg_defaults = l_s_mdef.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = l_s_display_profile i_t_log_handle = l_t_log_handle EXCEPTIONS OTHERS = 1.
GM_ALV_LAYOUT CALL FUNCTION 'GM_ALV_LAYOUT' CHANGING c_f_layout = l_f_layout.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = g_repid i_callback_pf_status_set = 'PF_STATUS_SET ' i_callback_user_command = 'USER_COMMAND' i_grid_title = l_f_titletext i_grid_settings = l_f_grid_settings is_layout = l_f_layout it_fieldcat = l_t_fieldcat it_sort = l_t_sort TABLES t_outtab = g_t_result_alv EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
RV_CALL_DISPLAY_TRANSACTION CALL FUNCTION 'RV_CALL_DISPLAY_TRANSACTION' EXPORTING vbeln = l_vbeln vbtyp = 'C'.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = con_icon_woerr text = space info = 'Success'(040) IMPORTING RESULT = g_woerr_icon EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = con_icon_error text = space info = 'Error'(030) IMPORTING RESULT = g_error_icon EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = con_icon_nochanges text = space info = 'Warning'(050) IMPORTING RESULT = g_nochanges_icon EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'GMBILLING_PLAN' CHANGING ct_fieldcat = l_t_fcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
BILLING_SCHEDULE_READ CALL FUNCTION 'BILLING_SCHEDULE_READ' EXPORTING fplnr = u_FPLNR TABLES zfpla = lt_fpla zfplt = lt_fplt.
SD_SALES_DOCUMENT_READ CALL FUNCTION 'SD_SALES_DOCUMENT_READ' EXPORTING document_number = l_f_fpla-vbeln i_block = lv_block * IMPORTING * evbak = ls_vbak .
SD_SALES_ITEM_LIST_READ CALL FUNCTION 'SD_SALES_ITEM_LIST_READ' TABLES eivbap = lt_items EXCEPTIONS OTHERS = 1.
SD_SALES_ITEM_READ CALL FUNCTION 'SD_SALES_ITEM_READ' EXPORTING item_number = lt_items-posnr * IMPORTING * evbap = ls_vbap * EVBAPKOM = * evbkd = ls_vbkd EXCEPTIONS item_number_missing = 1 OTHERS = 2 .
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING textline1 = text-855 textline2 = text-856 titel = text-854 cancel_display = ' ' IMPORTING answer = answer. "#EC *
SD_SALES_DOCUMENT_SAVE CALL FUNCTION 'SD_SALES_DOCUMENT_SAVE' EXPORTING * REFERENCED_DOCUMENT_NUMBER = ' ' * REFERENCED_DOCUMENT_TYPE = ' ' synchron = lv_sync * I_NO_MESSAGES = ' ' status_buffer_refresh = ' ' "X requisition_buffer_refresh = ' ' "X * REFERENCED_NOTIFICATION = ' ' * REFERENCED_PM_ORDER = ' ' * RESULT = ' ' * I_VBAKKOM_REF = * IMPORTING * EVBAK = * TABLES * EFXVBEP = * EFXVBAP = * ATTR_TAB = * EFXVBPA = .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.