Search Results pa_resource_txn_attributes_v
Overview
PA_RESOURCE_TXN_ATTRIBUTES_V is an APPS-owned database view in the Oracle E-Business Suite Projects (PA) product family. The ETRM metadata identifies its status as VALID and its description as "10Sc only," indicating that the object originated in an early Projects release (release 10SC) and has been retained for backward compatibility. The view presents a denormalized, human-readable projection of the transaction attributes stored in PA_RESOURCE_TXN_ATTRIBUTES, resolving surrogate identifiers into names, codes, and classifications.
Because resource transaction attributes qualify how a resource is used on a project or task—by expenditure category, revenue category, expenditure type, event type, non-labor resource, job, organization, or vendor—this view plays a central role in Projects reporting, cross-module integration, and legacy interfaces that still reference the 10SC-era object name. Report developers and integrators query it rather than joining the underlying attribute table to a dozen descriptive entities manually.
Underlying Base Objects
The view text joins the driving table PA_RESOURCE_TXN_ATTRIBUTES (aliased RTA) to a broad set of descriptive and validation objects, all defined under the APPS schema:
PA_RESOURCES— suppliesRESOURCE_IDfor the resource owning the attribute set.PER_PEOPLE_F— outer-joined onPERSON_IDwith effective-date and language constraints, restricting results to employees (EMPLOYEE_NUMBER IS NOT NULL) and returningFULL_NAME.PA_JOBS_V— resolvesJOB_IDto job name.HR_ORG_UNITS_NO_JOINandHR_ALL_ORGANIZATION_UNITS_TL— resolve the owning organization and its translated name, with language handled viaUSERENV('LANG'); a second pair of these objects resolves the non-labor resource organization.PO_VENDORS— resolvesVENDOR_IDtoVENDOR_NAME.PA_EXPENDITURE_TYPES,PA_EVENT_TYPES,PA_NON_LABOR_RESOURCES,PA_EXPENDITURE_CATEGORIES— resolve the respective attribute codes.PA_REVENUE_CATEGORIES_V,PA_EVENT_TYPE_CLASSES_V,PA_SYSTEM_LINKAGES_V— derive revenue category, event type classification, and system linkage function with its meaning.
All descriptive joins except the resource key are outer joins, so attribute rows are preserved even when a descriptive value is absent. Additional dependencies documented in 12.2.2 include HR_GENERAL, HR_PERSON_NAME, HR_SECURITY, PA_CROSS_BUSINESS_GRP, and PA_UTILS, reflecting organization security and name-formatting behavior applied through the underlying view chain.
Key Columns
RESOURCE_TXN_ATTRIBUTE_ID— primary identifier of the attribute row;ROWIDis also exposed.RESOURCE_ID,PERSON_ID,FULL_NAME— resource and employee identity.JOB_ID/NAMEandORGANIZATION_ID/OT.NAME— job and owning organization.VENDOR_ID/VENDOR_NAME— supplier context for vendor-based attributes.EXPENDITURE_TYPE,EXPENDITURE_CATEGORY,REVENUE_CATEGORY_CODE— costing and revenue classification.EVENT_TYPE,EVENT_TYPE_CLASSIFICATION— event-driven billing attributes.NON_LABOR_RESOURCE,NLRO.ORGANIZATION_ID,NLROT.NAME— non-labor resource and its organization.RESOURCE_FORMAT_ID— format of the resource attribute record.SYSTEM_LINKAGE_FUNCTION,MEANING— system linkage used by cross-module integrations.- Audit columns —
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN.
Common Use Cases and Queries
The view is typically used to report which attribute combinations a resource may use, and to export attributes to external costing or billing systems. A representative query lists attributes for an employee resource:
SELECT resource_id, full_name, job_id, name,
expenditure_type, expenditure_category,
non_labor_resource, vendor_name
FROM apps.pa_resource_txn_attributes_v
WHERE person_id = :person_id;
A second pattern, useful for validation or migration checks, enumerates non-labor attributes for a given organization:
SELECT resource_txn_attribute_id, resource_id,
non_labor_resource, nlro.organization_id,
revenue_category_code
FROM apps.pa_resource_txn_attributes_v
WHERE non_labor_resource IS NOT NULL
ORDER BY resource_id, non_labor_resource;
Because the object is marked "10Sc only," new development should generally favor the base table PA_RESOURCE_TXN_ATTRIBUTES joined to current descriptive views; existing reports and interfaces that depend on PA_RESOURCE_TXN_ATTRIBUTES_V should be validated against the 12.1.1 or 12.2.2 instance before upgrade, since the underlying organization and person views enforce HR security and effective-dating.
-
View: PA_RESOURCE_TXN_ATTRIBUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_TXN_ATTRIBUTES_V, object_name:PA_RESOURCE_TXN_ATTRIBUTES_V, status:VALID, product: PA - Projects , description: 10Sc only , implementation_dba_data: APPS.PA_RESOURCE_TXN_ATTRIBUTES_V ,
-
View: PA_RESOURCE_TXN_ATTRIBUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_TXN_ATTRIBUTES_V, object_name:PA_RESOURCE_TXN_ATTRIBUTES_V, status:VALID, product: PA - Projects , description: 10Sc only , implementation_dba_data: APPS.PA_RESOURCE_TXN_ATTRIBUTES_V ,
-
VIEW: APPS.PA_SYSTEM_LINKAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_SYSTEM_LINKAGES_V, object_name:PA_SYSTEM_LINKAGES_V, status:VALID,
-
VIEW: APPS.PA_SYSTEM_LINKAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_SYSTEM_LINKAGES_V, object_name:PA_SYSTEM_LINKAGES_V, status:VALID,
-
VIEW: APPS.PA_JOBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_JOBS_V, object_name:PA_JOBS_V, status:VALID,
-
VIEW: APPS.PA_EVENT_TYPE_CLASSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EVENT_TYPE_CLASSES_V, object_name:PA_EVENT_TYPE_CLASSES_V, status:VALID,
-
VIEW: APPS.PA_REVENUE_CATEGORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REVENUE_CATEGORIES_V, object_name:PA_REVENUE_CATEGORIES_V, status:VALID,
-
SYNONYM: APPS.PA_NON_LABOR_RESOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_NON_LABOR_RESOURCES, status:VALID,
-
SYNONYM: APPS.PA_NON_LABOR_RESOURCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_NON_LABOR_RESOURCES, status:VALID,
-
SYNONYM: APPS.PA_EXPENDITURE_CATEGORIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_EXPENDITURE_CATEGORIES, status:VALID,
-
VIEW: APPS.PA_EVENT_TYPE_CLASSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EVENT_TYPE_CLASSES_V, object_name:PA_EVENT_TYPE_CLASSES_V, status:VALID,
-
SYNONYM: APPS.PA_EXPENDITURE_CATEGORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_EXPENDITURE_CATEGORIES, status:VALID,
-
VIEW: APPS.PA_JOBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_JOBS_V, object_name:PA_JOBS_V, status:VALID,
-
VIEW: APPS.PA_REVENUE_CATEGORIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REVENUE_CATEGORIES_V, object_name:PA_REVENUE_CATEGORIES_V, status:VALID,
-
VIEW: APPS.PA_RESOURCE_TXN_ATTRIBUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_TXN_ATTRIBUTES_V, object_name:PA_RESOURCE_TXN_ATTRIBUTES_V, status:VALID,
-
SYNONYM: APPS.PA_RESOURCE_TXN_ATTRIBUTES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_RESOURCE_TXN_ATTRIBUTES, status:VALID,
-
VIEW: APPS.PA_RESOURCE_TXN_ATTRIBUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_TXN_ATTRIBUTES_V, object_name:PA_RESOURCE_TXN_ATTRIBUTES_V, status:VALID,
-
SYNONYM: APPS.PA_EVENT_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_EVENT_TYPES, status:VALID,
-
SYNONYM: APPS.PA_RESOURCE_TXN_ATTRIBUTES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_RESOURCE_TXN_ATTRIBUTES, status:VALID,
-
SYNONYM: APPS.PA_EVENT_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_EVENT_TYPES, status:VALID,
-
PACKAGE: APPS.PA_CROSS_BUSINESS_GRP
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_CROSS_BUSINESS_GRP, status:VALID,
-
PACKAGE: APPS.PA_CROSS_BUSINESS_GRP
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_CROSS_BUSINESS_GRP, status:VALID,
-
SYNONYM: APPS.PA_RESOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_RESOURCES, status:VALID,
-
SYNONYM: APPS.PA_RESOURCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_RESOURCES, status:VALID,
-
VIEW: APPS.HR_ORG_UNITS_NO_JOIN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORG_UNITS_NO_JOIN, object_name:HR_ORG_UNITS_NO_JOIN, status:VALID,
-
VIEW: APPS.HR_ORG_UNITS_NO_JOIN
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORG_UNITS_NO_JOIN, object_name:HR_ORG_UNITS_NO_JOIN, status:VALID,
-
SYNONYM: APPS.PA_EXPENDITURE_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_EXPENDITURE_TYPES, status:VALID,
-
SYNONYM: APPS.PA_EXPENDITURE_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_EXPENDITURE_TYPES, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE: APPS.PA_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_UTILS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.PA_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_UTILS, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, 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,
-
VIEW: APPS.PER_PEOPLE_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - PA Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,