Search Results fnd_security_groups_vl
Overview
FND_SECURITY_GROUPS_VL is a seeded, valid view owned by the APPS schema within the Oracle E-Business Suite Application Object Library (FND) product. It exposes security group definitions in the language of the current session. Security groups are a foundational construct in EBS multi-organization and multi-Org Access Control (MOAC) architecture: they partition operating units and inventory organizations into logical groupings that govern which data a responsibility may access. This view provides a translation-aware, user-friendly projection of that configuration data — pairing the surrogate key and developer-facing key with the translated name and description — making it the standard read-only interface for reports, concurrent programs, integrations, and ad hoc queries that need to resolve or enumerate security groups.
Because it is a view rather than a table, it holds no data of its own; it is a query-time join over the security group base tables. This ensures that any change to a security group definition is immediately visible through the view without synchronization.
Underlying Base Objects
The documented view text joins two base objects:
FND_SECURITY_GROUPS(referenced via a synonym) — the base table holding the security group definition and its control columns.FND_SECURITY_GROUPS_TL(referenced via a synonym) — the translation table holding language-specificSECURITY_GROUP_NAMEandDESCRIPTIONvalues.
The join condition is B.SECURITY_GROUP_ID = T.SECURITY_GROUP_ID, combined with T.LANGUAGE = USERENV('LANG'). The _VL suffix denotes a "view with language," meaning the row returned reflects the translated text appropriate to the current session language. Because USERENV('LANG') is evaluated at query time, the same statement can return different names depending on the environment in which it executes.
Key Columns
SECURITY_GROUP_ID— The primary surrogate key of the security group. This is the value stored on related configuration and Org Access records.SECURITY_GROUP_KEY— The developer-facing, language-independent identifier for the security group, suitable for lookups that must remain stable across languages.SECURITY_GROUP_NAME— The translated display name retrieved fromFND_SECURITY_GROUPS_TLfor the session language.DESCRIPTION— The translated descriptive text for the security group.ROW_ID— The base-tableROWID, exposed for row-level addressing.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— Standard EBS who-columns providing audit lineage for the definition.
Common Use Cases and Queries
Typical scenarios include validating a security group during responsibility or user setup, populating LOVs in custom forms and OAF pages, and joining Org Access data to a human-readable group name for reporting. Because it resolves the session language, it is also useful when the same report must render correctly for users across locales.
To enumerate all security groups with translated names:
SELECT security_group_id, security_group_key, security_group_name, description FROM fnd_security_groups_vl ORDER BY security_group_name;
To resolve a single group by its stable key:
SELECT security_group_id, security_group_name FROM fnd_security_groups_vl WHERE security_group_key = :p_key;
To join MOAC configuration to readable names:
SELECT sgv.security_group_name, so.organization_id FROM fnd_security_groups_vl sgv, fnd_org_access so WHERE so.security_group_id = sgv.security_group_id ORDER BY sgv.security_group_name, so.organization_id;
Note that a security group may have a row in the base table without a matching translation row for the current session language, in which case the inner join excludes it from the result set. Code relying on this view should therefore treat it as a filtered, language-specific interface rather than a guaranteed superset of all defined groups.
-
View: FND_SECURITY_GROUPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SECURITY_GROUPS_VL, object_name:FND_SECURITY_GROUPS_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_SECURITY_GROUPS_VL ,
-
View: FND_SECURITY_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SECURITY_GROUPS_VL, object_name:FND_SECURITY_GROUPS_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_SECURITY_GROUPS_VL ,
-
TRIGGER: APPS.FND_SECURITY_GROUPS_DL
12.2.2
-
SYNONYM: APPS.FND_SECURITY_GROUPS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_SECURITY_GROUPS_TL, status:VALID,
-
PACKAGE BODY: APPS.FND_SECURITY_GROUPS_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_SECURITY_GROUPS_API, status:VALID,
-
TRIGGER: APPS.FND_SECURITY_GROUPS_IL
12.1.1
owner:APPS, object_type:TRIGGER, object_name:FND_SECURITY_GROUPS_IL, status:VALID,
-
TRIGGER: APPS.FND_SECURITY_GROUPS_IL
12.2.2
owner:APPS, object_type:TRIGGER, object_name:FND_SECURITY_GROUPS_IL, status:VALID,
-
TRIGGER: APPS.FND_SECURITY_GROUPS_DL
12.1.1
-
TRIGGER: APPS.FND_SECURITY_GROUPS_IL
12.2.2
-
TRIGGER: APPS.FND_SECURITY_GROUPS_UL
12.1.1
-
TRIGGER: APPS.FND_SECURITY_GROUPS_DL
12.2.2
owner:APPS, object_type:TRIGGER, object_name:FND_SECURITY_GROUPS_DL, status:VALID,
-
TRIGGER: APPS.FND_SECURITY_GROUPS_UL
12.2.2
-
SYNONYM: APPS.FND_SECURITY_GROUPS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_SECURITY_GROUPS_TL, status:VALID,
-
TRIGGER: APPS.FND_SECURITY_GROUPS_IL
12.1.1
-
TRIGGER: APPS.FND_SECURITY_GROUPS_DL
12.1.1
owner:APPS, object_type:TRIGGER, object_name:FND_SECURITY_GROUPS_DL, status:VALID,
-
TRIGGER: APPS.FND_SECURITY_GROUPS_UL
12.1.1
owner:APPS, object_type:TRIGGER, object_name:FND_SECURITY_GROUPS_UL, status:VALID,
-
TRIGGER: APPS.FND_SECURITY_GROUPS_UL
12.2.2
owner:APPS, object_type:TRIGGER, object_name:FND_SECURITY_GROUPS_UL, status:VALID,
-
PACKAGE BODY: APPS.FND_SEC_BULK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_SEC_BULK, status:VALID,
-
PACKAGE BODY: APPS.ICX_PORTLET
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ICX_PORTLET, status:VALID,
-
APPS.FND_SECURITY_GROUPS_API SQL Statements
12.2.2
-
PACKAGE BODY: APPS.FND_SECURITY_GROUPS_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_SECURITY_GROUPS_API, status:VALID,
-
PACKAGE BODY: APPS.HR_DM_AOL_UP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DM_AOL_UP, status:VALID,
-
PACKAGE BODY: APPS.FND_SEC_BULK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_SEC_BULK, status:VALID,
-
PACKAGE: APPS.PER_RI_CONFIG_TECH_SUMMARY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PER_RI_CONFIG_TECH_SUMMARY, status:VALID,
-
PACKAGE BODY: APPS.ICX_PORTLET
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ICX_PORTLET, status:VALID,
-
PACKAGE BODY: APPS.HR_DM_AOL_UP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DM_AOL_UP, status:VALID,
-
PACKAGE BODY: APPS.ORACLENAVIGATE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ORACLENAVIGATE, status:VALID,
-
PACKAGE BODY: APPS.ORACLENAVIGATE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ORACLENAVIGATE, status:VALID,
-
PACKAGE BODY: APPS.HR_DM_COPY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DM_COPY, status:VALID,
-
APPS.FND_SECURITY_GROUPS_API SQL Statements
12.1.1
-
APPS.ORACLEMYPAGE SQL Statements
12.2.2
-
PACKAGE BODY: APPS.HR_DM_COPY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DM_COPY, status:VALID,
-
PACKAGE: APPS.PER_RI_CONFIG_TECH_SUMMARY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PER_RI_CONFIG_TECH_SUMMARY, status:VALID,
-
PACKAGE BODY: APPS.BIS_RL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_RL_PKG, status:VALID,
-
PACKAGE BODY: APPS.AME_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_UTIL, status:VALID,
-
PACKAGE BODY: APPS.AME_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_UTIL, status:VALID,
-
PACKAGE BODY: APPS.ORACLEMYPAGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ORACLEMYPAGE, status:VALID,
-
PACKAGE BODY: APPS.ORACLEMYPAGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ORACLEMYPAGE, status:VALID,
-
APPS.ORACLENAVIGATE SQL Statements
12.2.2
-
APPS.ORACLEMYPAGE SQL Statements
12.1.1
-
APPS.ORACLENAVIGATE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PER_RI_CONFIG_UTILITIES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_RI_CONFIG_UTILITIES, status:VALID,
-
PACKAGE BODY: APPS.ICX_SEC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ICX_SEC, status:VALID,
-
VIEW: APPS.FND_SECURITY_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SECURITY_GROUPS_VL, object_name:FND_SECURITY_GROUPS_VL, status:VALID,
-
PACKAGE BODY: APPS.ICX_SEC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ICX_SEC, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.FND_SECURITY_GROUPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SECURITY_GROUPS_VL, object_name:FND_SECURITY_GROUPS_VL, status:VALID,
-
PACKAGE BODY: APPS.PER_RI_CONFIG_UTILITIES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_RI_CONFIG_UTILITIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.FND_SECURITY_GROUPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_SECURITY_GROUPS, status:VALID,