Search Results ozf_cust_trd_prfls_v
Overview
OZF_CUST_TRD_PRFLS_V is a seeded Oracle E-Business Suite view owned by the APPS schema and delivered as part of the Trade Management (OZF) product family. It presents customer trade profiles — the per-customer, per-site configuration records that govern how trade management transactions such as claims, accruals, and payments are processed for a trading partner. In EBS 12.1.1 and 12.2.2 the view is reported as VALID and exposes a denormalized image of OZF_CUST_TRD_PRFLS joined to the Trading Community Architecture (TCA) and Payables entities that give each profile row its business identity.
The view's practical role is to collapse the profile record and its surrounding descriptive attributes — party name, customer account number, site use code, and supplier name — into a single queryable surface. This is valuable for reporting, extracts, and integrations that require the trade profile configuration alongside human-readable identifiers without reproducing the multi-table join logic. Because it is a view rather than a table, it carries no storage of its own; it is a read-only projection and cannot be used as a DML target in supported customizations.
Underlying Base Objects
The view is defined over five documented objects, all referenced through APPS synonyms or views:
- OZF_CUST_TRD_PRFLS — the driving base table holding the trade profile rows, including autopay, claim, and discount attributes.
- HZ_CUST_ACCOUNTS — the TCA customer account, joined on CUST_ACCOUNT_ID, supplying ACCOUNT_NUMBER.
- HZ_CUST_SITE_USES — the customer account site use, joined on SITE_USE_ID, supplying SITE_USE_CODE and LOCATION.
- HZ_PARTIES — the TCA party, joined on PARTY_ID, supplying PARTY_NAME.
- PO_VENDORS — the supplier, joined on VENDOR_ID with an outer join, because a customer trade profile may exist without a corresponding supplier.
The outer join to PO_VENDORS is the only non-mandatory relationship; the remaining joins are inner joins, meaning a profile row without a valid TCA account, site use, or party will not appear in the view result set.
Key Columns
The view exposes the complete OZF_CUST_TRD_PRFLS column list plus descriptive columns from the joined objects. Primary and descriptive keys include TRADE_PROFILE_ID, PARTY_ID, PARTY_NAME, CUST_ACCOUNT_ID, ACCOUNT_NAME, ACCOUNT_NUMBER, CUST_ACCT_SITE_ID, SITE_USE_ID, SITE_USE_CODE, and LOCATION.
Configuration columns central to the view's purpose include DAYS_DUE and PAYMENT_METHOD; VENDOR_ID, VENDOR_NAME, VENDOR_SITE_ID, and VENDOR_SITE_CODE; and the autopay group — AUTOPAY_FLAG, AUTOPAY_PERIODICITY, and AUTOPAY_PERIODICITY_TYPE — which together describe whether automatic payment is enabled and at what interval and interval unit. Claim and discount behavior is controlled by CLAIM_THRESHOLD, CLAIM_CURRENCY, and DISCOUNT_TYPE, while PRINT_FLAG, INTERNET_DEAL_VIEW_FLAG, and INTERNET_CLAIMS_FLAG govern output and self-service visibility. LAST_PAID_DATE records the most recent payment. The view also carries the standard EBS WHO columns, the DFF columns CONTEXT and ATTRIBUTE_CATEGORY through ATTRIBUTE15, and the multi-org column ORG_ID.
Common Use Cases and Queries
A frequent requirement is to audit autopay configuration across customers, for example to locate all profiles using a specific periodicity type:
- SELECT trade_profile_id, party_name, account_number, autopay_flag, autopay_periodicity, autopay_periodicity_type FROM ozf_cust_trd_prfls_v WHERE autopay_flag = 'Y' AND autopay_periodicity_type = :p_type AND org_id = :p_org;
Other typical scenarios include extracting customer-to-supplier mappings for reconciliation, reporting claim thresholds and currencies by account, and validating self-service flags. When querying multi-org data, always constrain ORG_ID to the operating unit in context. Because the view performs inner joins to TCA and an outer join to PO_VENDORS, reports intended to include every profile row should be verified against the base table to confirm no records are silently excluded.
-
View: OZF_CUST_TRD_PRFLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CUST_TRD_PRFLS_V, object_name:OZF_CUST_TRD_PRFLS_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CUST_TRD_PRFLS_V ,
-
View: OZF_CUST_TRD_PRFLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CUST_TRD_PRFLS_V, object_name:OZF_CUST_TRD_PRFLS_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CUST_TRD_PRFLS_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.OZF_CUST_TRD_PRFLS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_CUST_TRD_PRFLS, status:VALID,
-
SYNONYM: APPS.OZF_CUST_TRD_PRFLS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OZF_CUST_TRD_PRFLS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.OZF_CUST_TRD_PRFLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CUST_TRD_PRFLS_V, object_name:OZF_CUST_TRD_PRFLS_V, status:VALID,
-
VIEW: APPS.OZF_CUST_TRD_PRFLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CUST_TRD_PRFLS_V, object_name:OZF_CUST_TRD_PRFLS_V, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
eTRM - OZF Tables and Views
12.2.2
description: OZF_XREF_MAP table created for SIebel TPM Integration ,
-
eTRM - OZF Tables and Views
12.1.1
description: Table to store the Market eligibilty for a Offer Worksheet ,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - OZF Tables and Views
12.2.2
description: OZF_XREF_MAP table created for SIebel TPM Integration ,
-
eTRM - OZF Tables and Views
12.1.1
description: Table to store the Market eligibilty for a Offer Worksheet ,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,