Search Results required_for_import_flag




Overview

PSB_ATTRIBUTES_VL is a seeded, MLS-compliant (Multi-Language Support) view owned by the APPS schema in Oracle E-Business Suite, belonging to the Public Sector Budgeting (PSB) product family. It exposes the descriptive and configuration metadata that drives the definition of budgeting attributes — the user-defined and system-defined data elements used within PSB worksheets, position sets, and budget import processes. Because attribute metadata controls how budget lines are captured, validated, displayed, and imported, this view is central to any reporting or integration effort that must understand which attributes exist, how they behave, and under what constraints they are presented to end users.

The view conforms to Oracle's standard MLS pattern, joining a base (language-independent) table to its translation table on ATTRIBUTE_ID, restricted to the session language via USERENV('LANG'). It also joins PER_BUSINESS_GROUPS to resolve the business group name. For the 12.1.1 and 12.2.2 releases, the object is documented as VALID in ETRM, with the view text published for reference.

Underlying Base Objects

Although the ETRM metadata lists no referenced base objects, the published view text identifies the constituent tables unambiguously:

The _VL suffix indicates a "view language" object, meaning it presents translated (TL) content joined to base content as a single consumable row per attribute per language. It is read-only and carries no DML triggers of its own.

Key Columns

Common Use Cases and Queries

Typical applications include building a catalog of budgeting attributes, auditing mandatory import fields before a budget load, and generating worksheet layout specifications. A representative query locating attributes required during import is:

SELECT attribute_id, name, display_prompt,
       required_for_import_flag, data_type
FROM   apps.psb_attributes_vl
WHERE  required_for_import_flag = 'Y';

To review worksheet display configuration for a business group:

SELECT name, display_prompt, display_sequence
FROM   apps.psb_attributes_vl
WHERE  business_group_id = :p_bg_id
AND    display_in_worksheet = 'Y'
ORDER  BY display_sequence;

These queries support reporting, integration mapping, and pre-import validation in both 12.1.1 and 12.2.2 environments.