Search Results deletable_flag




Overview

PA_UDS_SECTIONS_V is an APPS-owned reporting view in the Oracle Projects (PA) module that exposes all user definable sections configured for the Projects status report layout framework. In Oracle EBS 12.1.1 and 12.2.2, the view serves as the metadata dictionary for Descriptive Flexfield (DFF) based regions that administrators place on configurable project status report pages. Rather than storing section definitions itself, the view joins the page-type region configuration table to the descriptive flexfield context definitions, producing a single denormalized result set describing each user definable section by its flex code, flex name, description, layout style, and page placement attributes.

The view is primarily consumed by the Projects page layout utilities and by any extension or reporting layer that needs to enumerate the sections available for a given page type. Because the flexfield values it exposes are date-effectivity aware, the view is also useful for auditing which sections were active during a given reporting period.

Underlying Base Objects

The documented ETRM metadata identifies the following referenced base objects:

The view is therefore a pure projection: it performs no DML and cannot be updated through the view layer. All persistence occurs in PA_PAGE_TYPE_REGIONS and the flexfield definition tables.

Key Columns

The view returns the following navigationally relevant columns:

Common Use Cases and Queries

The view is typically queried to inventory available sections, to validate configuration before deploying a page type, or to troubleshoot missing regions. A representative query filtering by flex description follows:

  • SELECT flex_code, flex_name, flex_description, layout_meaning, page_type_code FROM pa_uds_sections_v WHERE upper(flex_description) LIKE upper('%'||:search||'%');
  • SELECT * FROM pa_uds_sections_v WHERE page_type_code = :page_type AND deletable_flag = 'Y';
  • SELECT flex_code, display_order, mandatory_flag FROM pa_uds_sections_v WHERE sysdate BETWEEN start_date_active AND nvl(end_date_active, sysdate + 1);

Because REGION_SOURCE_TYPE is fixed to 'DFF' in the view text, callers need not filter on it, and the APPLICATIONS_ID predicate (275, Oracle Projects) is applied internally, ensuring only Projects flexfield contexts are returned.

  • View: PA_UDS_SECTIONS_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_UDS_SECTIONS_V,  object_name:PA_UDS_SECTIONS_V,  status:VALID,  product: PA - Projectsdescription: PA_UDS_SECTIONS_V shows all user definable sections. ,  implementation_dba_data: APPS.PA_UDS_SECTIONS_V

  • View: PA_UDS_SECTIONS_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_UDS_SECTIONS_V,  object_name:PA_UDS_SECTIONS_V,  status:VALID,  product: PA - Projectsdescription: PA_UDS_SECTIONS_V shows all user definable sections. ,  implementation_dba_data: APPS.PA_UDS_SECTIONS_V