Search Results ra_addresses
Overview
RA_ADDRESSES is a Receivables (AR) module view that exposes customer address and party site information in a denormalized form. It consolidates data drawn from the Oracle Trading Community Architecture (TCA) model — principally customer accounts, party sites, and location records — into a single reporting surface tailored to Oracle Receivables. The view presents both general-purpose address attributes (address lines, city, state, postal code, country) and Receivables-specific business attributes such as business purpose flags (BILL_TO_FLAG, SHIP_TO_FLAG, MARKET_FLAG), territory assignments, specialist assignments, customer classification codes, and financial profiling fields.
In the context of Oracle EBS 12.1.1 and 12.2.2, RA_ADDRESSES serves as a convenience layer for reporting, integration, and custom development. It allows developers and analysts to retrieve a customer's addresses together with related customer attributes without writing complex multi-table joins across the TCA schema. Because the view spans both address-level and customer-level data, it is particularly useful in extracts, custom concurrent programs, and third-party integrations that need a flat, single-row-per-address result set.
Underlying Base Objects
The ETRM metadata classifies RA_ADDRESSES as "Not implemented in this database," which indicates that the view is a documented, seeded database object whose exact base-table composition is not enumerated in the reference metadata. The structure of the view — indicated by columns such as PARTY_ID, PARTY_SITE_ID, PARTY_LOCATION_ID, CUST_ACCT_SITE_ID, LOCATION_ID, SITE_NUMBER, and IDENTIFYING_ADDRESS_FLAG — shows that it is defined over the Trading Community Architecture tables, most notably HZ_PARTIES, HZ_PARTY_SITES, HZ_LOCATIONS, and HZ_CUST_ACCOUNT_SITES (through which it links to HZ_CUST_ACCOUNTS). The presence of both ADDRESS_ID and PARTY_SITE_ID reflects the migration from the older RA_ADDRESSES base table model to the TCA party-site model introduced in Release 11i and carried forward through 12.1.1 and 12.2.2.
Key Columns
- THIRD_PARTY_FLAG — Indicates whether the address relates to a third-party entity, used in trade management and third-party (TP) processing contexts. This is the column the user searched for.
- TP_HEADER_ID — Links the address to a third-party header record.
- BILL_TO_FLAG, SHIP_TO_FLAG, MARKET_FLAG — Business purpose flags identifying the role of the site.
- PARTY_ID, PARTY_SITE_ID, PARTY_LOCATION_ID — TCA identifiers for the party, its site, and the location.
- IDENTIFYING_ADDRESS_FLAG — Marks the address as the identifying address for the party.
- LOCATION_ID, ADDRESS_ID — Keys to the location and legacy address records.
- SITE_NUMBER — The user-visible site number for the party site.
- CUSTOMER_ID, CUSTOMER_CATEGORY_CODE, CUSTOMER_GROUP_CODE — Customer classification attributes.
- TERRITORY_ID, TERRITORY, SERVICE_TERRITORY_ID — Territory and sales-territory assignments.
- ADDRESS1–ADDRESS4, CITY, STATE, PROVINCE, POSTAL_CODE, COUNTY, COUNTRY — Standard address lines.
- ORG_ID — Multi-org operating unit identifier, enabling operating-unit filtering.
- DO_NOT_MAIL_FLAG, STATUS, ORIG_SYSTEM_REFERENCE — Status and source-system attributes for integration.
Common Use Cases and Queries
The view is commonly used to report customer ship-to and bill-to addresses, to extract address data for integrations, and to identify sites flagged for third-party processing. A typical query filtering on the searched column is:
SELECT party_id, party_site_id, site_number, address1, city, state, postal_code, third_party_flag FROM ra_addresses WHERE third_party_flag = 'Y' AND org_id = :p_org_id;- Reporting all bill-to addresses:
SELECT customer_id, address1, city, third_party_flag FROM ra_addresses WHERE bill_to_flag = 'Y'; - Finding identifying addresses for a party:
SELECT party_id, site_number, identifying_address_flag FROM ra_addresses WHERE identifying_address_flag = 'Y';
Because the view exposes ORG_ID, queries should generally be restricted to a specific operating unit to avoid duplicate cross-org results.
-
View: RA_ADDRESSES
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: RA_ADDRESSES
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
APPS.ARP_ADDS SQL Statements
12.2.2
-
APPS.ARP_ADDS SQL Statements
12.1.1
-
View: ICX_CONTACT_SITES_V
12.1.1
product: ICX - Oracle iProcurement , description: Web Store Customer Contacts Sites View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CONTACT_SITES_V
12.2.2
product: ICX - Oracle iProcurement , description: Web Store Customer Contacts Sites View , implementation_dba_data: Not implemented in this database ,
-
View: MRP_FORECAST_UPDATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FORECAST_UPDATES_V, object_name:MRP_FORECAST_UPDATES_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Forecast consumption transaction history view , implementation_dba_data: APPS.MRP_FORECAST_UPDATES_V ,
-
View: MRP_FORECAST_UPDATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FORECAST_UPDATES_V, object_name:MRP_FORECAST_UPDATES_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Forecast consumption transaction history view , implementation_dba_data: APPS.MRP_FORECAST_UPDATES_V ,
-
View: AS_CONTACT_ADDRESSES_V
12.2.2
product: AS - Sales Foundation , description: Contact addresses view , implementation_dba_data: Not implemented in this database ,
-
View: AS_CONTACT_ADDRESSES_V
12.1.1
product: AS - Sales Foundation , description: Contact addresses view , implementation_dba_data: Not implemented in this database ,
-
View: MRPFV_SR_BOD_ASSIGNMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_SR_BOD_ASSIGNMENTS, object_name:MRPFV_SR_BOD_ASSIGNMENTS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_SR_BOD_ASSIGNMENTS ,
-
View: MRPFV_SR_BOD_ASSIGNMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_SR_BOD_ASSIGNMENTS, object_name:MRPFV_SR_BOD_ASSIGNMENTS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_SR_BOD_ASSIGNMENTS ,
-
View: ICX_EDM_SALES_ORDER_V
12.1.1
product: ICX - Oracle iProcurement , description: Project Related Sales Order View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_EDM_SALES_ORDER_V
12.2.2
product: ICX - Oracle iProcurement , description: Project Related Sales Order View , implementation_dba_data: Not implemented in this database ,
-
View: AS_DOSSIER_ADDRESSES_V
12.1.1
product: AS - Sales Foundation , description: Order history addresses view , implementation_dba_data: Not implemented in this database ,
-
Table: AS_INVALID_ADDR
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INVALID_ADDR, object_name:AS_INVALID_ADDR, status:VALID, product: AS - Sales Foundation , description: Stores invalid addresses from ra_addresses , implementation_dba_data: OSM.AS_INVALID_ADDR ,
-
View: AS_LETTER_MERGE_ENTRIES_V
12.2.2
product: AS - Sales Foundation , description: Displays the contacts to whom a letter is mailed. , implementation_dba_data: Not implemented in this database ,
-
APPS.PA_CUSTOMER_INFO SQL Statements
12.2.2
-
APPS.INV_CUSTOMER_ITEM_GRP SQL Statements
12.2.2
-
View: AS_LETTER_MERGE_ENTRIES_V
12.1.1
product: AS - Sales Foundation , description: Displays the contacts to whom a letter is mailed. , implementation_dba_data: Not implemented in this database ,
-
View: AS_DOSSIER_ADDRESSES_V
12.2.2
product: AS - Sales Foundation , description: Order history addresses view , implementation_dba_data: Not implemented in this database ,
-
APPS.PA_CUSTOMER_INFO SQL Statements
12.1.1
-
Table: AS_INVALID_ADDR
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INVALID_ADDR, object_name:AS_INVALID_ADDR, status:VALID, product: AS - Sales Foundation , description: Stores invalid addresses from ra_addresses , implementation_dba_data: OSM.AS_INVALID_ADDR ,
-
View: CS_SYSTEMS_CP_MAINT_V
12.1.1
product: CS - Service , description: Systems and their attributes , implementation_dba_data: Not implemented in this database ,
-
View: CS_SYSTEMS_CP_MAINT_V
12.2.2
product: CS - Service , description: Systems and their attributes , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: GENERATE_KEYS_MODE
12.2.2
product: AS - Sales Foundation , meaning: GENERATE_KEYS_MODE , description: Argument for Generate Customer Keys concurrent program ,
-
VIEW: APPS.EDW_GEOG_REGION_LCV
12.1.1
-
View: IGI_RPI_STANDING_CHARGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_STANDING_CHARGES_V, object_name:IGI_RPI_STANDING_CHARGES_V, status:VALID, product: IGI - Public Sector Financials International , description: View for the standing charges forms based on IGI_RPI_STANDING_CHARGES view , implementation_dba_data: APPS.IGI_RPI_STANDING_CHARGES_V ,
-
View: ICX_CUSTOMER_SITE_LOV_V
12.1.1
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CUSTOMER_SITE_LOV_V
12.2.2
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: GENERATE_KEYS_MODE
12.1.1
product: AS - Sales Foundation , meaning: GENERATE_KEYS_MODE , description: Argument for Generate Customer Keys concurrent program ,
-
View: AS_COLLATERAL_REQUESTS_V
12.1.1
product: AS - Sales Foundation , description: Collateral requests view , implementation_dba_data: Not implemented in this database ,
-
View: AS_COLLATERAL_REQUESTS_V
12.2.2
product: AS - Sales Foundation , description: Collateral requests view , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CUSTOMER_ACCOUNT_V
12.1.1
product: ICX - Oracle iProcurement , description: Web Store Customer Account View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CUSTOMER_ACCOUNT_V
12.2.2
product: ICX - Oracle iProcurement , description: Web Store Customer Account View , implementation_dba_data: Not implemented in this database ,
-
View: IGI_RPI_STANDING_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_STANDING_CHARGES_V, object_name:IGI_RPI_STANDING_CHARGES_V, status:VALID, product: IGI - Public Sector Financials International , description: View for the standing charges forms based on IGI_RPI_STANDING_CHARGES view , implementation_dba_data: APPS.IGI_RPI_STANDING_CHARGES_V ,
-
APPS.PA_CUSTOMERS_CONTACTS_PUB SQL Statements
12.2.2
-
View: XNC_ORDER_SUMMARY_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view gives Order Header Details , implementation_dba_data: Not implemented in this database ,
-
APPS.INV_CUSTOMER_ITEM_GRP SQL Statements
12.1.1
-
View: CS_TAX_LINES_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_TAX_LINES_SUMMARY_V, object_name:CS_TAX_LINES_SUMMARY_V, status:VALID, product: CS - Service , description: View provided for the Taxation module. , implementation_dba_data: APPS.CS_TAX_LINES_SUMMARY_V ,
-
View: VEH_TRANSLATOR_ADDR_V
12.2.2
product: VEH - Automotive Integration Kit (Obsolete) , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTES_V
12.2.2
product: AS - Sales Foundation , description: Quotations view , implementation_dba_data: Not implemented in this database ,
-
APPS.PA_CUSTOMERS_CONTACTS_PUB SQL Statements
12.1.1
-
View: CS_TAX_LINES_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_TAX_LINES_SUMMARY_V, object_name:CS_TAX_LINES_SUMMARY_V, status:VALID, product: CS - Service , description: View provided for the Taxation module. , implementation_dba_data: APPS.CS_TAX_LINES_SUMMARY_V ,
-
View: XNC_ORDER_SUMMARY_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view gives Order Header Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.EDW_GEOG_STATE_LCV
12.1.1
-
View: VEH_TRANSLATOR_ADDR_V
12.1.1
product: VEH - Automotive Integration Kit (Obsolete) , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: SO_BILL_TO_ADDRESSES_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: IGW_PROP_PROGRAM_ADDRESSES_V
12.1.1
product: IGW - Grants Proposal , description: 10SC Only , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTES_V
12.1.1
product: AS - Sales Foundation , description: Quotations view , implementation_dba_data: Not implemented in this database ,