FTR_FAC_REP_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 FTR_FAC_REP_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 FTR_FAC_REP_F02
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FTR_FC_GET_COMM_DRAW_FEE CALL FUNCTION 'FTR_FC_GET_COMM_DRAW_FEE' EXPORTING pi_waers = p_waers pi_numbr = p_numbr pi_bukrs2 = p_bukrs2 pi_partn = lt_so_kunnum pi_dstich = p_dstich pi_dintv = lt_so_dintv pi_figure = p_figure pi_draw = p_draw pi_fee = p_fee pi_comt = p_comt pi_sofac = lt_sofac pi_sodraw = lt_sodraw * PI_FAC_VTBFHA = * PI_DRAW_VTBFHA = IMPORTING pe_fac_output = gt_fac_output02 pe_fhapo = gt_fhapo pe_fac_message = gt_fac_message EXCEPTIONS invalid_selection = 0 invalid_call = 0 OTHERS = 0.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' * I_BYPASSING_BUFFER = * I_BUFFER_ACTIVE = ' ' * I_CALLBACK_PROGRAM = ' ' * I_CALLBACK_PF_STATUS_SET = ' ' * I_CALLBACK_USER_COMMAND = ' ' i_structure_name = gd_tabname is_layout = gs_is_layout it_fieldcat = gt_is_fieldcat * IT_EXCLUDING = * IT_SPECIAL_GROUPS = it_sort = gt_it_sort it_filter = gt_it_filter * IS_SEL_HIDE = * I_DEFAULT = 'X' i_save = 'A' is_variant = gs_variant * IT_EVENTS = * IT_EVENT_EXIT = is_print = gt_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 * IR_SALV_LIST_ADAPTER = * IT_EXCEPT_QINFO = * I_SUPPRESS_EMPTY_DATA = ABAP_FALSE * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES t_outtab =
EXCEPTIONS program_error = 1 OTHERS = 2 .
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING * I_BUFFER_ACTIVE = i_structure_name = gd_tabname i_client_never_display = 'X' * I_BYPASSING_BUFFER = CHANGING ct_fieldcat = gt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
LVC_TRANSFER_TO_SLIS CALL FUNCTION 'LVC_TRANSFER_TO_SLIS' EXPORTING it_fieldcat_lvc = gt_fieldcat it_sort_lvc = gt_sort it_filter_lvc = gt_filter is_layout_lvc = gs_layout IMPORTING et_fieldcat_alv = gt_is_fieldcat et_sort_alv = gt_it_sort et_filter_alv = gt_it_filter es_layout_alv = gs_is_layout * TABLES * IT_DATA = EXCEPTIONS it_data_missing = 0 it_fieldcat_lvc_missing = 0 OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.