Search Results bill_address4
Overview
PA_TASK_CUSTOMERS_V is a Projects (PA) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It provides a denormalized, reporting-friendly presentation of the relationship between project tasks, their associated customers, and the bill-to and ship-to addresses held in the Oracle Trading Community Architecture (TCA) model. Rather than forcing developers and report authors to join PA_PROJECT_CUSTOMERS, PA_TASKS, and the HZ_* tables themselves, the view encapsulates the required joins and exposes a flat structure of customer, task, and address attributes.
Its practical role is to support customer-facing project reporting — for example, task-level billing detail, customer contact listings, and address verification on project deliverables. Because the address lookups on the bill-to and ship-to paths are implemented as outer joins, the view returns one row per qualifying project/task/customer combination even where address data is incomplete.
Underlying Base Objects
Per the documented metadata, the view is defined over the following synonyms:
- HZ_PARTIES — the party (customer) master record; supplies PARTY_NAME.
- HZ_CUST_ACCOUNTS — the customer account; supplies ACCOUNT_NUMBER and links to the party.
- HZ_CUST_ACCT_SITES — the account site; the join point for both bill-to and ship-to addresses.
- HZ_PARTY_SITES — the party site; bridges account sites to locations.
- HZ_LOCATIONS — the physical address; supplies ADDRESS1–ADDRESS4, CITY, STATE/PROVINCE, POSTAL_CODE, and COUNTY.
- PA_PROJECT_CUSTOMERS — the project-to-customer assignment; drives PROJECT_ID and CUSTOMER_ID linkage.
- PA_TASKS — the task definition; contributes TASK_ID and joins on PROJECT_ID and CUSTOMER_ID.
The HZ_* tables are joined twice, once on the bill-to path (aliased BA_*) and once on the ship-to path (aliased SA_*), which is why the view exposes parallel BILL_* and SHIP_* address columns. The two address chains are left-joined with the (+) operator, making them optional.
h4>Key Columns- PROJECT_ID, TASK_ID — identify the project and the specific task within it.
- CUSTOMER_ID — the internal customer account identifier used in Projects.
- CUSTOMER_NAME — the party name, truncated to 50 bytes via SUBSTRB.
- CUSTOMER_NUMBER — the customer account number from HZ_CUST_ACCOUNTS.
- BILL_TO_CUSTOMER_ID, SHIP_TO_CUSTOMER_ID — the account site identifiers used for billing and shipping.
- BILL_TO_ADDRESS_ID, SHIP_TO_ADDRESS_ID — the HZ_CUST_ACCT_SITES identifiers.
- BILL_ADDRESS1–BILL_ADDRESS4, SHIP_ADDRESS1–SHIP_ADDRESS4 — address lines; the fourth element is a concatenated string of city, state/province, postal code, and county.
Common Use Cases and Queries
Typical scenarios include task-level customer extracts for project billing, verification of bill-to/ship-to data before invoicing, and integration feeds to external systems requiring a single flat customer/address record.
Sample query retrieving customer and bill-to detail for a project:
- SELECT project_id, task_id, customer_name, customer_number, bill_address1 FROM pa_task_customers_v WHERE project_id = :project_id;
- SELECT customer_name, ship_address1, ship_address2 FROM pa_task_customers_v WHERE task_id = :task_id ORDER BY customer_name;
Because the view is read-only and based on TCA synonyms, use it for reporting and integration queries rather than as a DML target. Confirm that the caller has appropriate privileges on the HZ and PA objects before exposing it in custom reporting.
-
View: PA_TASK_CUSTOMERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_CUSTOMERS_V, object_name:PA_TASK_CUSTOMERS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_CUSTOMERS_V ,
-
View: PA_TASK_CUSTOMERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_CUSTOMERS_V, object_name:PA_TASK_CUSTOMERS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_CUSTOMERS_V ,
-
View: PAFV_CUSTOMERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_CUSTOMERS, object_name:PAFV_CUSTOMERS, status:VALID, product: PA - Projects , description: This shows information about customers related to a project. , implementation_dba_data: APPS.PAFV_CUSTOMERS ,
-
View: PA_PROJECT_CUSTOMERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_CUSTOMERS_V, object_name:PA_PROJECT_CUSTOMERS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_CUSTOMERS_V ,
-
View: PA_PROJECT_CUSTOMERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_CUSTOMERS_V, object_name:PA_PROJECT_CUSTOMERS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_CUSTOMERS_V ,
-
View: PAFV_CUSTOMERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_CUSTOMERS, object_name:PAFV_CUSTOMERS, status:VALID, product: PA - Projects , description: This shows information about customers related to a project. , implementation_dba_data: APPS.PAFV_CUSTOMERS ,