Search Results flex_valueset_longlist_flag
Overview
APPS.EGO_VS_DISPLAY_CODES_V is a reporting view in Oracle E-Business Suite that exposes the seeded lookup values governing the display behavior of extensible flexfield value sets. The view is defined over FND_LOOKUP_VALUES and filters that table to a single lookup type, FLEX_VALUESET_LONGLIST_FLAG, returning only the codes N and X. Its purpose is to supply the set of permissible "long list" display flags that the value set definition UI and related validation logic use when determining how a value set presents its list of values to the end user.
In EBS 12.1.1 and 12.2.2, the view is owned by APPS and is exposed as a read-only reporting and integration surface. Rather than letting consumers query FND_LOOKUP_VALUES directly — where the same lookup type may be filtered by application, language, or other context — EGO_VS_DISPLAY_CODES_V encapsulates the correct predicates, including VIEW_APPLICATION_ID = 0 and LANGUAGE = USERENV('LANG'), so that each user session sees the values in the appropriate language.
Underlying Base Objects
The view is defined over a single referenced base object: FND_LOOKUP_VALUES, accessed through a synonym. The view text is essentially a filtered projection of that table:
- LOOKUP_TYPE predicate restricts rows to
FLEX_VALUESET_LONGLIST_FLAG. - LOOKUP_CODE predicate restricts rows to
NandX. - VIEW_APPLICATION_ID = 0 selects the shared, non-application-specific lookup rows.
- LANGUAGE = USERENV('LANG') returns the translated meaning for the session language.
Because no join, union, or aggregation is present, the view is a lightweight, low-cost access path. It inherits the security and enablement characteristics of FND_LOOKUP_VALUES, so disabled or date-inactive lookup rows remain visible in the projection (the ENABLED_FLAG and active date columns are carried through rather than filtered).
Key Columns
- LOOKUP_CODE — the flag value itself, either
NorX. This is the value stored against the flexfield value set definition. - MEANING — the translated, user-facing description of the flag, resolved for the session language via USERENV('LANG').
- ENABLED_FLAG — indicates whether the lookup row is currently enabled; consumers may use this to hide retired options.
- START_DATE (START_DATE_ACTIVE) — the date from which the lookup value becomes effective.
- END_DATE (END_DATE_ACTIVE) — the date after which the lookup value is no longer effective.
Common Use Cases and Queries
Typical scenarios include populating a list of values on a custom concurrent program parameter or an OAF page that lets a user set the long list flag on a value set, and producing validation reports confirming which flags are available. A standard query is:
SELECT LOOKUP_CODE, MEANING, ENABLED_FLAG, START_DATE, END_DATE FROM APPS.EGO_VS_DISPLAY_CODES_V;- To restrict to currently enabled options:
... WHERE ENABLED_FLAG = 'Y' AND SYSDATE BETWEEN START_DATE AND NVL(END_DATE, SYSDATE + 1); - To build a lookup join:
SELECT v.SEGMENT1, d.MEANING FROM FND_FLEX_VALUES_VL v, APPS.EGO_VS_DISPLAY_CODES_V d WHERE v.LONGLIST_FLAG = d.LOOKUP_CODE;
Because the view already constrains LOOKUP_TYPE, LOOKUP_CODE, application, and language, callers avoid duplicating those predicates and remain insulated from changes to the underlying lookup configuration.
-
Lookup Type: FLEX_VALUESET_LONGLIST_FLAG
12.1.1
product: FND - Application Object Library , meaning: FLEX VALUESET LONGLIST FLAG , description: List types used in Flex Value Sets. ,
-
Lookup Type: FLEX_VALUESET_LONGLIST_FLAG
12.2.2
product: FND - Application Object Library , meaning: FLEX VALUESET LONGLIST FLAG , description: List types used in Flex Value Sets. ,
-
VIEW: APPS.EGO_VS_DISPLAY_CODES_V
12.1.1
-
VIEW: APPS.EGO_VS_DISPLAY_CODES_V
12.2.2
-
View: EGO_VS_DISPLAY_CODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_VS_DISPLAY_CODES_V, object_name:EGO_VS_DISPLAY_CODES_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains the applicable display codes for Value Sets supported in EGO Application , implementation_dba_data: APPS.EGO_VS_DISPLAY_CODES_V ,
-
View: EGO_VS_DISPLAY_CODES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_VS_DISPLAY_CODES_V, object_name:EGO_VS_DISPLAY_CODES_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains the applicable display codes for Value Sets supported in EGO Application , implementation_dba_data: APPS.EGO_VS_DISPLAY_CODES_V ,
-
APPS.PER_RI_CONFIG_TECH_SUMMARY SQL Statements
12.2.2
-
APPS.PER_RI_CONFIG_TECH_SUMMARY SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.PER_RI_CONFIG_TECH_SUMMARY
12.2.2
-
PACKAGE BODY: APPS.PER_RI_CONFIG_TECH_SUMMARY
12.1.1
-
APPS.PER_RI_CONFIG_TECH_SUMMARY dependencies on FND_LOOKUPS
12.1.1
-
APPS.PER_RI_CONFIG_TECH_SUMMARY dependencies on FND_LOOKUPS
12.2.2
-
APPS.PER_RI_CONFIG_TECH_SUMMARY dependencies on HR_LOOKUPS
12.1.1
-
APPS.PER_RI_CONFIG_TECH_SUMMARY dependencies on HR_LOOKUPS
12.2.2
-
PACKAGE BODY: APPS.FND_FLEX_DIAGNOSE
12.2.2
-
PACKAGE BODY: APPS.FND_FLEX_DIAGNOSE
12.1.1