RFLQ_TEST_QUERY_C 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 RFLQ_TEST_QUERY_C into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FLQQC7 - Test Query (FI Payment Document)
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: S_BUDAT = D Posting Date
Selection Text: S_BLART = D Document Type
Selection Text: S_BELNR = D Document Number
Selection Text: P_SAKN = D Select G/L accounts
Selection Text: P_QUERY = D Query ID
Selection Text: S_LIFNR = D Vendor
Selection Text: S_KUNNR = D Customer
Selection Text: S_HKONT = D General Ledger Account
Selection Text: S_GJAHR = D Fiscal Year
Selection Text: S_BUKRS = D Company Code
Selection Text: P_LQGRP = D Query Sequence
Selection Text: P_LIST = D Detail List
Selection Text: P_KRED = D Select Vendors
Selection Text: P_EXFCT = D Exit Module
Selection Text: P_DEBI = D Select Customers
Title: Test of FI Document Queries of Type C Against Original Documents
Text Symbol: 102 = Number of Documents with Liquidity Item
Text Symbol: 101 = Number of Documents Edited
Text Symbol: 096 = Exit Function
Text Symbol: 091 = Query
Text Symbol: 090 = Query Sequence
INCLUDE FLQCONSTANTS.
No SAP DATABASE tables are accessed within this REPORT code!
FUNCTION_EXISTS CALL FUNCTION 'FUNCTION_EXISTS' EXPORTING FUNCNAME = P_EXFCT EXCEPTIONS OTHERS = 3.
FLQ_GET_ASSIGN_SETTINGS CALL FUNCTION 'FLQ_GET_ASSIGN_SETTINGS' IMPORTING E_F_ASSIGN_SETTINGS = G_F_ASSIGN_SETTINGS.
FLQ_READ_QUERIES CALL FUNCTION 'FLQ_READ_QUERIES' EXPORTING P_QUERYTYPE = CON_LQORIG_CLEARING P_GROUP = P_LQGRP.
FLQ_READ_QUERIES CALL FUNCTION 'FLQ_READ_QUERIES' EXPORTING P_QUERYTYPE = CON_LQORIG_CLEARING.
FLQ_CHECK_QUERY CALL FUNCTION 'FLQ_CHECK_QUERY' EXPORTING P_QUERYID = G_T_QUERIES-LQQRID P_QUERYTYPE = CON_LQORIG_CLEARING P_BKPF = L_F_BKPF P_BSEG = L_F_BSEG P_KNA1 = L_F_KNA1 P_LFA1 = L_F_LFA1 IMPORTING P_LQPOS = L_LQPOS_QUERY P_SUBRC = L_SUBRC_QUERY.
FLQ_CHECK_GL_INFO CALL FUNCTION 'FLQ_CHECK_GL_INFO' EXPORTING P_BUKRS = L_F_BSEG-BUKRS P_HKONT = L_F_BSEG-HKONT P_INFO_APPL = G_F_ASSIGN_SETTINGS-XINFO_APPL IMPORTING E_LQPOS = L_LQPOS_QUERY CHANGING C_SUBRC = L_SUBRC_ACCOUNT.
FLQ_SAMPLE_ASSIGN_FI CALL FUNCTION 'FLQ_SAMPLE_ASSIGN_FI' "where_used EXPORTING P_BKPF = L_F_BKPF P_BSEG = L_F_BSEG P_KNA1 = L_F_KNA1 P_LFA1 = L_F_LFA1 P_ACTUAL_KEY = L_F_EMPTY_KEY P_QUERYPOS = L_LQPOS_QUERY IMPORTING P_LQPOS = L_LQPOS_EXIT P_BUKRS = L_BUKRS_EXIT P_GSBER = L_GSBER_EXIT CHANGING P_SUBRC_LQPOS = L_SUBRC_LQPOS_EXIT P_SUBRC_BUKRS = L_SUBRC_BUKRS_EXIT P_SUBRC_GSBER = L_SUBRC_GSBER_EXIT.
FLQ_READ_POS CALL FUNCTION 'FLQ_READ_POS' EXPORTING I_LQPOS = L_LQPOS_EXIT EXCEPTIONS OTHERS = 1.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_PROGRAM_NAME = L_CPROG I_INCLNAME = L_CPROG I_INTERNAL_TABNAME = 'G_T_LIST' CHANGING CT_FIELDCAT = L_T_FIELDCAT.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_USER_COMMAND = 'USER_COMMAND' I_CALLBACK_PROGRAM = L_CPROG IS_LAYOUT = L_F_LAYOUT IT_FIELDCAT = L_T_FIELDCAT IT_EVENTS = L_T_EVENTS I_SAVE = L_SAVE_VAR IS_VARIANT = L_VARIANT TABLES T_OUTTAB = G_T_LIST.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFLQ_TEST_QUERY_C - Test of FI Document Queries of Type C Against Original Documents RFLQ_TEST_QUERY_C - Test of FI Document Queries of Type C Against Original Documents RFLQ_TEST_QUERY_B - Test of Bank Statement Queries Against Original Documents RFLQ_TEST_QUERY_B - Test of Bank Statement Queries Against Original Documents RFLQ_S017 - Liquidity Calculation: Move Actual Data to Historic Assignment RFLQ_S017 - Liquidity Calculation: Move Actual Data to Historic Assignment