SAP Reports / Programs

FAGL_COMP_SUM_RUNID SAP ABAP Report - Compare Documents from Totals Document Transfer







FAGL_COMP_SUM_RUNID is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You use this program in the ALE distribution scenario FI-GL (New), Transfer of Totals and Single Documents in Distributed Systems to check the totals of transferred documents on an account basis and to display any variances...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter FAGL_COMP_SUM_RUNID into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

FAGL_COMP_SUM_RUNID - Compare Totals


ABAP code to call this SAP report using the submit statement

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.






SUBMIT FAGL_COMP_SUM_RUNID. "Basic submit
SUBMIT FAGL_COMP_SUM_RUNID AND RETURN. "Return to original report after report execution complete
SUBMIT FAGL_COMP_SUM_RUNID VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_LOGSYS = Logical System
Selection Text: P_RUNID = Run ID
Title: Compare Documents from Totals Document Transfer
Text Symbol: 001 = Selection Parameter


INCLUDES used within this REPORT FAGL_COMP_SUM_RUNID

INCLUDE FAGL_ALE_SEND_CLASSES.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

FAGL_AGGREGATE_RUNID CALL FUNCTION 'FAGL_AGGREGATE_RUNID' STARTING NEW TASK 'task' DESTINATION p_logsys PERFORMING callback ON END OF TASK EXPORTING i_runid = p_runid i_ledger = gv_ledger EXCEPTIONS SYSTEM_FAILURE = 1 COMMUNICATION_FAILURE = 2.

FAGL_GET_TABLENAMES CALL FUNCTION 'FAGL_GET_TABLENAMES' EXPORTING i_ledger = gv_ledger IMPORTING es_tabnames = gs_tabnames EXCEPTIONS not_found = 1 configuration_error = 2 OTHERS = 3.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name FAGL_COMP_SUM_RUNID or its description.