Search Results pa_rbs_headers_v
Overview
The PA_RBS_HEADERS_V view is an Oracle Projects (PA) application view owned by the APPS schema. It exposes header-level information for a Resource Breakdown Structure (RBS), including identification, translation, date-effectivity, business group, and allocation usage attributes. In Oracle EBS 12.1.1 and 12.2.2 this view conforms to the standard Oracle multi-language and multi-organization design pattern: a base table holds language-independent data, a translation table holds language-specific text, and the view joins the two while enforcing language and business group security.
The view is read-only and consolidates the descriptive and control attributes of RBS headers into a single queryable object, making it suitable for reporting, integration extracts, and validation logic where the RBS header identity and translation text are both required. Its definition deliberately restricts output to headers that possess at least one frozen RBS version, ensuring that only RBS structures with an established (frozen) version are presented.
Underlying Base Objects
The view is defined over two base/synonym objects and references two additional PL/SQL packages that supply security and utility functions:
- PA_RBS_HEADERS_B — the base table storing language-independent RBS header data (identification, dates, business group, allocation flag).
- PA_RBS_HEADERS_TL — the translation table storing language-specific
NAMEandDESCRIPTION, joined onRBS_HEADER_ID. - PA_RBS_VERSIONS_B — referenced via an
EXISTSsubquery to require a version withSTATUS_CODE = 'FROZEN'. - PA_UTILS — provides
BUSINESS_GROUP_IDfor the current session's operating unit context. - PA_CROSS_BUSINESS_GRP — supplies
ISCROSSBGPROFILE, used to relax or enforce the business group filter.
The view text joins the header and translation tables on RBS_HEADER_ID, filters HDRTL.LANGUAGE to USERENV('LANG'), enforces the frozen-version existence test, and applies a business group predicate combined with the cross-business-group profile check.
Key Columns
- RBS_HEADER_ID — primary identifier for the RBS header; the join key to versions and other RBS-related objects.
- NAME — the translated name of the RBS header, returned in the session language.
- DESCRIPTION — the translated description of the RBS header.
- EFFECTIVE_FROM_DATE — the date from which the RBS header is effective.
- EFFECTIVE_TO_DATE — the date until which the RBS header remains effective.
- BUSINESS_GROUP_ID — the owning business group, used for security partitioning.
- USE_FOR_ALLOC_FLAG — indicates whether the RBS is designated for use in allocations.
Common Use Cases and Queries
Typical uses include listing active RBS headers for a business group, retrieving translated names for reporting, and validating that an RBS header is usable for allocations before referencing it in configuration or integration scripts.
- Enumerate all visible RBS headers with their effectivity and allocation usage.
- Retrieve the translated name/description for a specific
RBS_HEADER_ID. - Filter headers usable for allocations.
Sample query:
SELECT rbs_header_id, name, description, effective_from_date, effective_to_date, use_for_alloc_flag FROM pa_rbs_headers_v WHERE use_for_alloc_flag = 'Y' ORDER BY name;SELECT name, description FROM pa_rbs_headers_v WHERE rbs_header_id = :p_rbs_header_id;
Because the view already applies language and business group security plus the frozen-version filter, queries against it return only RBS headers that are visible and established in the current session context.
-
View: PA_RBS_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RBS_HEADERS_V, object_name:PA_RBS_HEADERS_V, status:VALID, product: PA - Projects , description: This view shows the header information, such as dates and usage, for a resource breakdown structure. , implementation_dba_data: APPS.PA_RBS_HEADERS_V ,
-
View: PA_RBS_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RBS_HEADERS_V, object_name:PA_RBS_HEADERS_V, status:VALID, product: PA - Projects , description: This view shows the header information, such as dates and usage, for a resource breakdown structure. , implementation_dba_data: APPS.PA_RBS_HEADERS_V ,
-
PACKAGE BODY: APPS.PA_RBS_HEADER_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RBS_HEADER_PVT, status:VALID,
-
SYNONYM: APPS.PA_RBS_HEADERS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_RBS_HEADERS_B, status:VALID,
-
SYNONYM: APPS.PA_RBS_HEADERS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_RBS_HEADERS_B, status:VALID,
-
PACKAGE: APPS.PA_RBS_HEADER_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_RBS_HEADER_PVT, status:VALID,
-
PACKAGE: APPS.PA_RBS_HEADER_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_RBS_HEADER_PVT, status:VALID,
-
SYNONYM: APPS.PA_RBS_HEADERS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_RBS_HEADERS_TL, status:VALID,
-
SYNONYM: APPS.PA_RBS_HEADERS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_RBS_HEADERS_TL, status:VALID,
-
PACKAGE BODY: APPS.PA_ALLOC_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_ALLOC_UTILS, status:VALID,
-
PACKAGE BODY: APPS.PA_ALLOC_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_ALLOC_UTILS, status:VALID,
-
PACKAGE BODY: APPS.PA_ALLOC_COPY_RULE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_ALLOC_COPY_RULE_PKG, status:VALID,
-
PACKAGE BODY: APPS.PA_ALLOC_COPY_RULE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_ALLOC_COPY_RULE_PKG, status:VALID,
-
PACKAGE: APPS.PA_ALLOC_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_ALLOC_UTILS, status:VALID,
-
PACKAGE BODY: APPS.PA_RBS_HEADER_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RBS_HEADER_PVT, status:VALID,
-
PACKAGE: APPS.PA_ALLOC_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_ALLOC_UTILS, status:VALID,
-
SYNONYM: APPS.PA_RBS_VERSIONS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_RBS_VERSIONS_B, status:VALID,
-
SYNONYM: APPS.PA_RBS_VERSIONS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_RBS_VERSIONS_B, status:VALID,
-
VIEW: APPS.PA_RBS_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RBS_HEADERS_V, object_name:PA_RBS_HEADERS_V, status:VALID,
-
VIEW: APPS.PA_RBS_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RBS_HEADERS_V, object_name:PA_RBS_HEADERS_V, 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,
-
APPS.PA_ALLOC_COPY_RULE_PKG SQL Statements
12.1.1
-
APPS.PA_ALLOC_COPY_RULE_PKG SQL Statements
12.2.2
-
APPS.PA_ALLOC_UTILS SQL Statements
12.2.2
-
APPS.PA_ALLOC_UTILS SQL Statements
12.1.1
-
APPS.PA_ALLOC_UTILS dependencies on PA_RBS_HEADERS_V
12.2.2
-
APPS.PA_ALLOC_COPY_RULE_PKG dependencies on PA_RBS_HEADERS_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.PA_ALLOC_UTILS dependencies on PA_RBS_HEADERS_V
12.2.2
-
APPS.PA_RBS_HEADER_PVT dependencies on PA_RBS_HEADERS_V
12.2.2
-
APPS.PA_RBS_HEADER_PVT dependencies on PA_RBS_HEADERS_V
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.PA_ALLOC_UTILS dependencies on PA_RBS_HEADERS_V
12.1.1
-
APPS.PA_ALLOC_UTILS dependencies on PA_RBS_HEADERS_V
12.1.1
-
APPS.PA_RBS_HEADER_PVT dependencies on PA_RBS_HEADERS_V
12.1.1
-
APPS.PA_RBS_HEADER_PVT dependencies on PA_RBS_HEADERS_V
12.2.2
-
APPS.PA_ALLOC_COPY_RULE_PKG dependencies on PA_RBS_HEADERS_V
12.2.2
-
PACKAGE BODY: APPS.PA_ALLOC_COPY_RULE_PKG
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.PA_ALLOC_COPY_RULE_PKG
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE: APPS.PA_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_UTILS, status:VALID,
-
PACKAGE: APPS.PA_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_UTILS, status:VALID,
-
PACKAGE BODY: APPS.PA_ALLOC_UTILS
12.1.1
-
PACKAGE BODY: APPS.PA_ALLOC_UTILS
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PA Tables and Views
12.2.2
-
eTRM - PA Tables and Views
12.1.1