Search Results gsa_indicator_flag
Overview
APPS.AR_RCT_CUST_L_V is a reporting view in the Oracle E-Business Suite Receivables (AR) module that exposes receiving customer (RCT, i.e., "Receipt Customer") attributes in a denormalized, report-ready form. The view flattens data from the Receivables Subledger Accounting extract line table and joins it to the Trading Community Architecture (TCA) customer model, presenting a single row per extract line at the "L" (Line) level. The naming convention reflects its purpose: AR (Receivables), RCT (receipt / receiving customer), CUST (customer), L (line level), and _V (view).
In Oracle EBS 12.1.1 and 12.2.2, this view sits within the Subledger Accounting (SLA) and Receivables extract pipeline, where XLA extract lines are populated for downstream processing, including receipt-related accounting and reporting. It is principally used for reporting, diagnostics, and integration where the line-level receipt customer context must be combined with TCA party and customer account attributes. Notably, the user-searched term gsa_indicator_flag is exposed by this view as the alias rct_cust_gsa_flag, sourced from HZ_PARTIES.GSA_INDICATOR_FLAG. This flag identifies parties associated with the U.S. General Services Administration (GSA) schedule, a mandatory attribute for government-commercial reporting in Oracle Receivables and Order Management.
Underlying Base Objects
Per the documented ETRM metadata, APPS.AR_RCT_CUST_L_V is defined over three referenced base objects, each represented as a synonym under the APPS schema:
- AR_XLA_LINES_EXTRACT — the Receivables Subledger Accounting extract line table (aliased
l). Drives the view's grain and restricts rows to line-level entries vial.level_flag = 'L'. - HZ_CUST_ACCOUNTS — the TCA customer accounts table (aliased
ca3). Joined onca3.cust_account_id = l.paying_customer_id. - HZ_PARTIES — the TCA parties table (aliased
p3). Joined onca3.party_id = p3.party_id.
The view text applies the hint /*+INDEX(l ar_xla_lines_extract_n1)*/ to drive access to the extract line table via its N1 index, and terminates with an explicit GROUP BY across all projected columns to eliminate duplicate rows arising from multi-join fan-out. A supporting index on AR_XLA_LINES_EXTRACT (AR_XLA_LINES_EXTRACT_N1) is therefore expected to exist for optimal plan selection.
Key Columns
Columns fall into three logical groups reflecting their source tables and reporting intent:
- Extract line identity —
EVENT_ID,LINE_NUMBER, andLEDGER_IDfrom AR_XLA_LINES_EXTRACT. These anchor each row to a Subledger Accounting event line and its ledger context. - Customer account attributes —
RCT_CUST_ACCOUNT_NUMBER,RCT_CUST_TYPE,RCT_CUST_ACCOUNT_ID,RCT_CUST_NPA_NUMBER,RCT_CUST_ALT_NAME, and the global attribute set (RCT_CUST_GLOBAL_ATTR1,...ATTR9,...ATTR10,...ATTR12,RCT_CUST_GLOBAL_ATTR_CAT) from HZ_CUST_ACCOUNTS. - Party attributes — including
RCT_CUST_PARTY_ID,RCT_CUST_PARTY_NAME,RCT_CUST_PARTY_NUMBER,RCT_CUST_PARTY_TYPE, address components (CITY,STATE,PROVINCE,POSTAL_CODE,COUNTRY,COUNTY),RCT_CUST_TAX_REFERENCE,RCT_CUST_FISCAL_CODE(JGZZ),RCT_CUST_GROUP_TYPE, and criticallyRCT_CUST_GSA_FLAG(GSA_INDICATOR_FLAG).
Common Use Cases and Queries
Typical uses include reconciling extract lines to customer identity, validating GSA party configuration for government reporting, and building custom receipt-customer datasets for integration or analytics. A simple diagnostic query isolating the search term follows:
SELECT rct_cust_account_number, rct_cust_party_name, rct_cust_gsa_flag FROM apps.ar_rct_cust_l_v WHERE rct_cust_gsa_flag = 'Y';
To join extract lines back to their ledger context for a specific ledger:
SELECT event_id, line_number, ledger_id, rct_cust_account_number, rct_cust_gsa_flag FROM apps.ar_rct_cust_l_v WHERE ledger_id = :p_ledger_id ORDER BY event_id, line_number;
Because the view spans TCA and SLA schema objects, query performance depends on the AR_XLA_LINES_EXTRACT_N1 index and on the selectivity of level_flag and customer joins. Filtering by ledger, event, or account number before aggregation is recommended; avoid unrestricted full-view scans on large extract populations.
-
VIEW: APPS.AR_RCT_CUST_L_V
12.2.2
-
VIEW: APPS.AR_RCT_CUST_L_V
12.1.1
-
View: OKX_PARTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_PARTIES_V, object_name:OKX_PARTIES_V, status:VALID, product: OKX - Contracts Integration , description: Parties , implementation_dba_data: APPS.OKX_PARTIES_V ,
-
VIEW: AMS.AMS_DM_GEN_STG#
12.2.2
-
VIEW: APPS.UMX_ORGANIZATION_PVT_V
12.1.1
-
VIEW: APPS.AMS_LT_PERSON_DETAILS_V
12.2.2
-
VIEW: APPS.UMX_ORGANIZATION_PVT_V
12.2.2
-
View: OKX_PARTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_PARTIES_V, object_name:OKX_PARTIES_V, status:VALID, product: OKX - Contracts Integration , description: Parties , implementation_dba_data: APPS.OKX_PARTIES_V ,
-
View: AMS_LT_PERSON_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_PERSON_DETAILS_V, object_name:AMS_LT_PERSON_DETAILS_V, status:VALID, product: AMS - Marketing , description: Data Source view to get information about b2c contacts , implementation_dba_data: APPS.AMS_LT_PERSON_DETAILS_V ,
-
View: UMX_ORGANIZATION_PVT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.UMX_ORGANIZATION_PVT_V, object_name:UMX_ORGANIZATION_PVT_V, status:VALID, product: FND - Application Object Library , description: Private view used by UMX , implementation_dba_data: APPS.UMX_ORGANIZATION_PVT_V ,
-
View: AMS_LT_PERSON_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_PERSON_DETAILS_V, object_name:AMS_LT_PERSON_DETAILS_V, status:VALID, product: AMS - Marketing , description: Data Source view to get information about b2c contacts , implementation_dba_data: APPS.AMS_LT_PERSON_DETAILS_V ,
-
View: UMX_ORGANIZATION_PVT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.UMX_ORGANIZATION_PVT_V, object_name:UMX_ORGANIZATION_PVT_V, status:VALID, product: FND - Application Object Library , description: Private view used by UMX , implementation_dba_data: APPS.UMX_ORGANIZATION_PVT_V ,
-
VIEW: APPS.AMS_LT_PERSON_DETAILS_V
12.1.1
-
VIEW: IMC.IMC_CSV_INTERFACE_FIELDS#
12.2.2
-
VIEW: APPS.OKX_PARTIES_V
12.1.1
-
VIEW: APPS.OKX_PARTIES_V
12.2.2
-
VIEW: AR.HZ_PARTIES#
12.2.2
-
VIEW: AR.HZ_IMP_PARTIES_INT#
12.2.2
-
View: AR_RCT_CUST_L_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RCT_CUST_L_V, object_name:AR_RCT_CUST_L_V, status:VALID, product: AR - Receivables , description: AR XLA Extract , implementation_dba_data: APPS.AR_RCT_CUST_L_V ,
-
View: AR_RCT_CUST_L_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RCT_CUST_L_V, object_name:AR_RCT_CUST_L_V, status:VALID, product: AR - Receivables , description: AR XLA Extract , implementation_dba_data: APPS.AR_RCT_CUST_L_V ,
-
VIEW: APPS.AR_CM_SHIP_TO_CUST_H_V
12.1.1
-
VIEW: APPS.AR_CM_PAY_CUST_H_V
12.1.1
-
VIEW: APPS.AR_CM_BILL_TO_CUST_S_V
12.2.2
-
VIEW: APPS.AR_RCT_CUST_S_V
12.1.1
-
VIEW: APPS.AR_DRAWEE_CUSTOMERS_H_V
12.1.1
-
VIEW: APPS.AR_CM_SHIP_TO_CUST_S_V
12.1.1
-
VIEW: APPS.AMS_P_ORGANIZATION_V
12.2.2
-
VIEW: APPS.AR_CM_PAY_CUST_S_V
12.2.2
-
VIEW: APPS.AMS_ORGANIZATION_V
12.1.1
-
VIEW: APPS.AR_RCT_CUST_H_V
12.2.2
-
VIEW: APPS.AR_CM_PAY_CUST_S_V
12.1.1
-
VIEW: APPS.AR_CM_BILL_TO_CUST_H_V
12.1.1
-
VIEW: APPS.AR_RCT_CUST_S_V
12.2.2
-
VIEW: APPS.AR_CM_SOLD_TO_CUST_S_V
12.2.2
-
VIEW: APPS.AR_CM_SOLD_TO_CUST_S_V
12.1.1
-
VIEW: APPS.AR_CM_SOLD_TO_CUST_H_V
12.1.1
-
VIEW: APPS.AMS_P_ORGANIZATION_V
12.1.1
-
VIEW: APPS.AR_DRAWEE_CUSTOMERS_H_V
12.2.2
-
VIEW: APPS.AMS_ORGANIZATION_V
12.2.2
-
VIEW: APPS.AR_CM_SOLD_TO_CUST_H_V
12.2.2
-
View: AMS_ORGANIZATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORGANIZATION_V, object_name:AMS_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View returns all entries from the HZ_PARTIES table which have a party_type of ORGANIZATION. Used for list generation. , implementation_dba_data: APPS.AMS_ORGANIZATION_V ,
-
VIEW: APPS.AR_RCT_CUST_H_V
12.1.1
-
VIEW: APPS.AR_CM_BILL_TO_CUST_S_V
12.1.1
-
VIEW: APPS.AR_CM_SHIP_TO_CUST_S_V
12.2.2
-
VIEW: APPS.JTF_HZ_ORGANIZATION_PROFILES_V
12.2.2
-
VIEW: APPS.JTF_HZ_ORGANIZATION_PROFILES_V
12.1.1
-
VIEW: APPS.AR_CM_SHIP_TO_CUST_H_V
12.2.2
-
View: AMS_ORGANIZATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORGANIZATION_V, object_name:AMS_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View returns all entries from the HZ_PARTIES table which have a party_type of ORGANIZATION. Used for list generation. , implementation_dba_data: APPS.AMS_ORGANIZATION_V ,
-
View: AMS_P_ORGANIZATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_ORGANIZATION_V, object_name:AMS_P_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View returns all entries from the HZ_PARTIES table which have a party_type of ORGANIZATION. Used for list generation. , implementation_dba_data: APPS.AMS_P_ORGANIZATION_V ,
-
VIEW: APPS.AR_CM_BILL_TO_CUST_H_V
12.2.2