Search Results rg_report_requests_v
Overview
RG_REPORT_REQUESTS_V is an Application Report Generator (RG) view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. The Application Report Generator is the historical predecessor of the Financial Statement Generator (FSG) in Oracle General Ledger. Its RG_% tables store the definitions and runtime requests for report sets, including row sets, column sets, content sets, row orders, and display sets. RG_REPORT_REQUESTS_V exposes a denormalized, security-aware projection over submitted report requests joined to their owning report definitions and the associated RG axis, content, order, and display set components.
Functionally, the view serves two purposes. First, it presents a flattened reporting structure in which request-level overrides and report-definition defaults are both visible, which is essential for troubleshooting how a specific report execution obtained its parameters. Second, it enforces FSG-style data security by invoking FND_DATA_SECURITY.CHECK_FUNCTION for reports whose SECURITY_FLAG is set to 'Y', exposing the result in the USE_PRIVILEGE column. The view is therefore relevant to both reporting and integration scenarios that need to programmatically read RG report request metadata while respecting application-level privilege checks.
Underlying Base Objects
The view is defined over the synonyms RG_REPORTS, RG_REPORT_REQUESTS, RG_REPORT_AXIS_SETS, RG_REPORT_CONTENT_SETS, RG_REPORT_DISPLAY_SETS, and RG_ROW_ORDERS. These resolve to the corresponding APPS base tables in the RG schema. The primary driving table is RG_REPORT_REQUESTS (aliased RQ), which is outer-joined in spirit to RG_REPORTS (RP) so that each request inherits report-level defaults such as ROUNDING_OPTION, SEGMENT_OVERRIDE, and OVERRIDE_ALC_LEDGER_CURRENCY.
Two database packages are referenced in the SELECT list: FND_GLOBAL for the current user name and FND_DATA_SECURITY for the privilege function. Four additional synonym-based objects supply descriptive names for the axis sets used as row sets and column sets, the content, order, and display sets. Both the request (RQ) and report (RP) sides expose the same set of override attributes, allowing a query to distinguish a request-time override from a report-definition default.
Key Columns
REPORT_REQUEST_ID,REPORT_ID,REPORT_SET_ID,CONCURRENT_REQUEST_ID— identifiers linking the request to its report definition and to the concurrent manager submission.LEDGER_ID,PERIOD_NAME,ACCOUNTING_DATE,ID_FLEX_CODE,STRUCTURE_ID— ledger and accounting context for the request.ALC_LEDGER_CURRENCYandOVERRIDE_ALC_LEDGER_CURRENCY— the ledger currency and the override flag controlling whether the ALC is used; the report-level counterpart is exposed asR_OVERRIDE_ALC_LEDGER_CURRENCY.ROW_SET_ID/ROW_SET,COLUMN_SET_ID/COLUMN_SET,CONTENT_SET,ROW_ORDER,REPORT_DISPLAY_SET— descriptive names for the FG/FSG content components used to build the report output.ROUNDING_OPTION,SEGMENT_OVERRIDE,UNIT_OF_MEASURE_ID,OUTPUT_OPTION,MINIMUM_DISPLAY_LEVEL— output-shaping parameters.USE_PRIVILEGE— a 'Y'/'N' security indicator derived fromFND_DATA_SECURITY.CHECK_FUNCTION.- Standard audit columns
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BYand descriptive flexfield columnsCONTEXTandATTRIBUTE1..15.
Common Use Cases and Queries
Typical use cases include auditing submitted RG report requests, verifying which currency and ledger a request resolved to, and joining to concurrent manager views to determine request status. A representative query filtering for a specific ledger currency follows:
SELECT report_request_id, report_name, period_name,
ledger_id, alc_ledger_currency,
override_alc_ledger_currency, use_privilege
FROM apps.rg_report_requests_v
WHERE alc_ledger_currency = :p_currency
AND use_privilege = 'Y';
Queries should generally filter on USE_PRIVILEGE = 'Y' when the view is consumed by a user-facing integration, since rows with 'N' represent report definitions the current user is not entitled to view. Note that the view text is complex and references package functions, so it should be treated as read-only and not used as a target of DML.
-
View: RG_REPORT_REQUESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_REPORT_REQUESTS_V, object_name:RG_REPORT_REQUESTS_V, status:VALID, product: RG - Application Report Generator , implementation_dba_data: APPS.RG_REPORT_REQUESTS_V ,
-
View: RG_REPORT_REQUESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_REPORT_REQUESTS_V, object_name:RG_REPORT_REQUESTS_V, status:VALID, product: RG - Application Report Generator , implementation_dba_data: APPS.RG_REPORT_REQUESTS_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.RG_REPORT_DISPLAY_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RG_REPORT_DISPLAY_SETS, status:VALID,
-
SYNONYM: APPS.RG_ROW_ORDERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RG_ROW_ORDERS, status:VALID,
-
SYNONYM: APPS.RG_REPORT_REQUESTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RG_REPORT_REQUESTS, status:VALID,
-
SYNONYM: APPS.RG_ROW_ORDERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RG_ROW_ORDERS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.RG_REPORT_DISPLAY_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RG_REPORT_DISPLAY_SETS, status:VALID,
-
SYNONYM: APPS.RG_REPORTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RG_REPORTS, status:VALID,
-
SYNONYM: APPS.RG_REPORT_REQUESTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RG_REPORT_REQUESTS, status:VALID,
-
SYNONYM: APPS.RG_REPORT_CONTENT_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RG_REPORT_CONTENT_SETS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.RG_REPORT_AXIS_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RG_REPORT_AXIS_SETS, status:VALID,
-
SYNONYM: APPS.RG_REPORT_CONTENT_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RG_REPORT_CONTENT_SETS, status:VALID,
-
SYNONYM: APPS.RG_REPORT_AXIS_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RG_REPORT_AXIS_SETS, status:VALID,
-
PACKAGE: APPS.FND_DATA_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_DATA_SECURITY, status:VALID,
-
SYNONYM: APPS.RG_REPORTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RG_REPORTS, status:VALID,
-
PACKAGE: APPS.FND_DATA_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_DATA_SECURITY, status:VALID,
-
VIEW: APPS.RG_REPORT_REQUESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_REPORT_REQUESTS_V, object_name:RG_REPORT_REQUESTS_V, status:VALID,
-
VIEW: APPS.RG_REPORT_REQUESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_REPORT_REQUESTS_V, object_name:RG_REPORT_REQUESTS_V, status:VALID,
-
eTRM - RG Tables and Views
12.1.1
-
eTRM - RG Tables and Views
12.2.2
-
12.2.2 DBA Data
12.2.2
-
eTRM - RG Tables and Views
12.2.2
-
eTRM - RG Tables and Views
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,