SAPF107S 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 SAPF107S 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.
Selection Text: X_SHB = With special G/L transactions
Selection Text: UPDATE = Transfer
Selection Text: S_VBUND = D Trading partner
Selection Text: S_UMSKZ = D Special G/L indicator
Selection Text: S_BUKRS = D Company code
Selection Text: SWAERS = D Currency
Selection Text: SKKONTO = D Vendor
Selection Text: SDKONTO = D Customer
Selection Text: SBELNR = D Document number
Selection Text: OFI = X Open FI
Selection Text: LAUFI = Run ID
Selection Text: LAUFD = Run date
Title: FI Valuation - Selection Section
Text Symbol: BL1 = Document selection
Text Symbol: 400 = Additional selections
Text Symbol: 200 = No postings requested
Text Symbol: 120 = Error durng update
Text Symbol: 105 = 105 Your own accounts are locked by other valuation runs
Text Symbol: 104 = No authorization for co.code:
Text Symbol: 103 = Error rectifd
Text Symbol: 101 = Error during BSBW update run
Text Symbol: 100 = Update executed
Text Symbol: 050 = 050 Open FI active; Event:
Text Symbol: 001 = Method not programmed
INCLUDE F107DATA.
No SAP DATABASE tables are accessed within this REPORT code!
FI_MESSAGE_INIT CALL FUNCTION 'FI_MESSAGE_INIT'.
FI_MESSAGE_COLLECT CALL FUNCTION 'FI_MESSAGE_COLLECT' EXPORTING I_FIMSG = H_FIMSG I_XAPPN = 'X' EXCEPTIONS MSGID_MISSING = 1 MSGNO_MISSING = 2 MSGTY_MISSING = 3 OTHERS = 4.
FI_MESSAGE_GET CALL FUNCTION 'FI_MESSAGE_GET' TABLES T_FIMSG = T_FIMSG EXCEPTIONS NO_MESSAGE = 1 OTHERS = 2.
FI_MESSAGE_PROTOCOL CALL FUNCTION 'FI_MESSAGE_PROTOCOL' EXCEPTIONS NO_MESSAGE = 1 NOT_BATCH = 2 OTHERS = 3.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = ls_log IMPORTING E_LOG_HANDLE = handle EXCEPTIONS LOG_HEADER_INCONSISTENT = 1 OTHERS = 2.
BAL_LOG_MSG_CUMULATE CALL FUNCTION 'BAL_LOG_MSG_CUMULATE' EXPORTING I_LOG_HANDLE = handle i_s_msg = ls_msg * IMPORTING * E_S_MSG_HANDLE = * E_MSG_WAS_LOGGED = * E_MSG_WAS_DISPLAYED = * EXCEPTIONS * LOG_NOT_FOUND = 1 * MSG_INCONSISTENT = 2 * LOG_IS_FULL = 3 * OTHERS = 4 .
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' * EXPORTING * I_S_DISPLAY_PROFILE = * I_T_LOG_HANDLE = * I_T_MSG_HANDLE = * I_S_LOG_FILTER = * I_S_MSG_FILTER = * I_T_LOG_CONTEXT_FILTER = * I_T_MSG_CONTEXT_FILTER = * I_AMODAL = ' ' * IMPORTING * E_S_EXIT_COMMAND = * EXCEPTIONS * PROFILE_INCONSISTENT = 1 * INTERNAL_ERROR = 2 * NO_DATA_AVAILABLE = 3 * NO_AUTHORITY = 4 * OTHERS = 5 .
FI_MESSAGE_PRINT * CALL FUNCTION 'FI_MESSAGE_PRINT' * EXPORTING * I_XAUSN = 'X' * I_COMSG = 0 * EXCEPTIONS * OTHERS = 0.
KPEP_MONI_INIT_RECORD CALL FUNCTION 'KPEP_MONI_INIT_RECORD' EXPORTING LS_DETAIL = Ls_detail * LS_WITEM = * LS_APPL = * LD_WORKLIST_FLAG = ' ' IMPORTING LS_KEY = LS_key_static TABLES LT_SELKRIT = LT_SELKRIT LT_PARAM = LT_PARAM.
KPEP_MONI_CLOSE_RECORD CALL FUNCTION 'KPEP_MONI_CLOSE_RECORD' EXPORTING LS_KEY = LS_key_static * LS_MESSAGE = * LD_OBJECTS = * LS_EXT = * LS_RL = * TABLES * LT_SPOOL = GT_SPONO CHANGING LD_APLSTAT = LD_APLSTAT EXCEPTIONS * NO_ID_GIVEN = 1 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.