Search Results hz_group
Overview
APPS.WF_HZ_GROUP_ROLES is a reporting and integration view that exposes Oracle Trading Community Architecture (TCA) group parties in a normalized, role-oriented format consumed by the Oracle Workflow directory services layer. Its purpose is to present records that describe "HZ_GROUP" entities — that is, parties whose PARTY_TYPE is 'GROUP' — together with their email routing attributes and primary language preferences. The view is one member of a family of Workflow directory views (the WF_*_ROLES series) that collectively populate the Oracle Workflow notification and directory schema used by the Workflow Notification System, the Workflow Directory Services APIs, and related administrative functions in Oracle E-Business Suite 12.1.1 and 12.2.2.
Because Oracle Workflow requires a uniform, denormalized representation of notification recipients, this view flattens selected columns from the TCA party model into the positional column layout expected by the Workflow directory structure. Each row represents a single group party, identified by a synthetic key prefixed with 'HZ_GROUP:', and is tagged with the literal role value 'HZ_GROUP'. This makes group parties addressable as notification targets within Workflow-driven processes without requiring consumers to join directly against the underlying TCA tables.
Underlying Base Objects
The view is defined over four referenced base objects, all accessed through APPS synonyms:
- HZ_PARTIES — the driving table; supplies the group party identity, name, mission statement, email address, and status.
- HZ_CONTACT_POINTS — supplies the primary active email contact point for the party, including the email format attribute.
- HZ_PERSON_LANGUAGE — supplies the primary active language of the party.
- FND_LANGUAGES — supplies the NLS language and territory codes corresponding to that language name.
All joins to HZ_CONTACT_POINTS, HZ_PERSON_LANGUAGE, and FND_LANGUAGES are outer joins, so a group party is returned even when it lacks a primary email contact point or a primary language assignment. The predicates restrict the result set to parties of type 'GROUP' with status 'A' (active) or 'I' (inactive), and further constrain contact points to type 'EMAIL', primary flag 'Y', and status 'A', and person languages to primary indicator 'Y' and status 'A'.
Key Columns
- Role/Key (column 1) — Synthetic identifier formed as
'HZ_GROUP:'||TO_CHAR(p.party_id), uniquely addressing the group within the Workflow directory. - Party Name —
P.PARTY_NAME, the display name of the group. - Mission Statement —
P.MISSION_STATEMENT, optional descriptive text carried into the directory record. - Email Format —
NVL(CP.EMAIL_FORMAT,'MAILTEXT'), the notification mail format, defaulting to MAILTEXT when unspecified. - NLS Language / NLS Territory —
L.NLS_LANGUAGEandL.NLS_TERRITORY, derived from the party's primary language. - Email Address —
P.EMAIL_ADDRESSfrom the party record. - Role Literal — the constant
'HZ_GROUP'identifying the record type. - Party ID —
P.PARTY_ID, the underlying TCA identifier. - Status —
DECODE(P.STATUS,'I','INACTIVE','ACTIVE'), presenting the internal status code in readable form. - Positional Nulls and Constant 8 — placeholder columns and a type indicator required by the consuming Workflow directory structure.
Common Use Cases and Queries
Typical consumers include Workflow notification configuration, directory synchronization routines, and diagnostic reports that must enumerate group parties eligible for notification. A simple listing query follows:
SELECT party_name, email_address, nls_language FROM apps.wf_hz_group_roles WHERE status = 'ACTIVE' ORDER BY party_name;SELECT * FROM apps.wf_hz_group_roles WHERE party_id = :p_party_id;— retrieving the Workflow-format record for a specific TCA group.SELECT COUNT(*) FROM apps.wf_hz_group_roles WHERE email_address IS NULL;— identifying active groups without a routable primary email contact point.
Because the view performs outer joins, records with null email addresses or null NLS values remain visible, which is useful when auditing TCA data completeness for Workflow notification readiness.
-
VIEW: APPS.WF_HZ_GROUP_ROLES
12.1.1
-
VIEW: APPS.WF_HZ_GROUP_ROLES
12.2.2
-
View: WF_HZ_GROUP_ROLES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_HZ_GROUP_ROLES, object_name:WF_HZ_GROUP_ROLES, status:VALID, product: FND - Application Object Library , description: Bulk Sync Directory Service Role View for Orig System HZ_GROUP , implementation_dba_data: APPS.WF_HZ_GROUP_ROLES ,
-
VIEW: APPS.HZ_GROUP_WF_USER_ROLES_V
12.1.1
-
VIEW: APPS.HZ_GROUP_WF_ROLES_V
12.2.2
-
View: WF_HZ_GROUP_ROLES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_HZ_GROUP_ROLES, object_name:WF_HZ_GROUP_ROLES, status:VALID, product: FND - Application Object Library , description: Bulk Sync Directory Service Role View for Orig System HZ_GROUP , implementation_dba_data: APPS.WF_HZ_GROUP_ROLES ,
-
VIEW: APPS.HZ_GROUP_WF_USER_ROLES_V
12.2.2
-
VIEW: APPS.HZ_GROUP_WF_ROLES_V
12.1.1
-
View: WF_HZ_GROUP_UR
12.2.2
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
View: WF_HZ_GROUP_UR
12.1.1
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
View: HZ_GROUP_WF_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_GROUP_WF_ROLES_V, object_name:HZ_GROUP_WF_ROLES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_GROUP_WF_ROLES_V ,
-
VIEW: APPS.MTL_OBJECT_GRANTS_V
12.1.1
-
View: HZ_GROUP_WF_USER_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_GROUP_WF_USER_ROLES_V, object_name:HZ_GROUP_WF_USER_ROLES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_GROUP_WF_USER_ROLES_V ,
-
View: HZ_GROUP_WF_USER_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_GROUP_WF_USER_ROLES_V, object_name:HZ_GROUP_WF_USER_ROLES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_GROUP_WF_USER_ROLES_V ,
-
View: HZ_GROUP_WF_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_GROUP_WF_ROLES_V, object_name:HZ_GROUP_WF_ROLES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_GROUP_WF_ROLES_V ,
-
VIEW: APPS.MTL_OBJECT_GRANTS_V
12.2.2
-
VIEW: APPS.MTL_CATEGORY_GRANTS_V
12.2.2
-
VIEW: APPS.MTL_CATEGORY_GRANTS_V
12.1.1
-
APPS.WFA_HTML_JSP SQL Statements
12.1.1
-
APPS.WFA_HTML_JSP SQL Statements
12.2.2
-
View: WF_ROLES_OLD
12.1.1
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: UMX_OTHER_CATEGORY_LOOKUP
12.1.1
product: FND - Application Object Library , meaning: User Management: Group Categories (other source systems) , description: The Tag field must be numeric and is used as sort order in the UI ,
-
View: WF_ROLES_OLD
12.2.2
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: UMX_OTHER_CATEGORY_LOOKUP
12.2.2
product: FND - Application Object Library , meaning: User Management: Group Categories (other source systems) , description: The Tag field must be numeric and is used as sort order in the UI ,
-
APPS.EGO_DOM_SECURITY_PVT SQL Statements
12.1.1
-
APPS.EGO_DOM_SECURITY_PVT SQL Statements
12.2.2
-
View: MTL_OBJECT_GRANTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_OBJECT_GRANTS_V, object_name:MTL_OBJECT_GRANTS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_OBJECT_GRANTS_V ,
-
Lookup Type: FND_WF_ORIG_SYSTEMS
12.1.1
product: FND - Application Object Library , meaning: FND WF ORIG SYSTEMS , description: Valid Workflow Origination Systems ,
-
View: MTL_CATEGORY_GRANTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CATEGORY_GRANTS_V, object_name:MTL_CATEGORY_GRANTS_V, status:VALID, product: INV - Inventory , description: Provides information regarding parties and roles on categories , implementation_dba_data: APPS.MTL_CATEGORY_GRANTS_V ,
-
Lookup Type: FND_WF_ORIG_SYSTEMS
12.2.2
product: FND - Application Object Library , meaning: FND WF ORIG SYSTEMS , description: Valid Workflow Origination Systems ,
-
View: MTL_OBJECT_GRANTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_OBJECT_GRANTS_V, object_name:MTL_OBJECT_GRANTS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_OBJECT_GRANTS_V ,
-
View: MTL_CATEGORY_GRANTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CATEGORY_GRANTS_V, object_name:MTL_CATEGORY_GRANTS_V, status:VALID, product: INV - Inventory , description: Provides information regarding parties and roles on categories , implementation_dba_data: APPS.MTL_CATEGORY_GRANTS_V ,
-
APPS.WF_DIRECTORY_PART_UTIL SQL Statements
12.2.2
-
APPS.WF_DIRECTORY_PART_UTIL SQL Statements
12.1.1
-
APPS.POS_DATA_SECURITY SQL Statements
12.2.2
-
APPS.WF_PUB_ICC SQL Statements
12.2.2
-
View: WF_USER_ROLES_OLD
12.2.2
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.WFA_HTML_JSP
12.2.2
-
PACKAGE BODY: APPS.WFA_HTML_JSP
12.1.1
-
View: WF_USER_ROLES_OLD
12.1.1
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WF_HZ_GROUP_ROLES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_HZ_GROUP_ROLES, object_name:WF_HZ_GROUP_ROLES, status:VALID,
-
VIEW: APPS.WF_HZ_GROUP_ROLES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_HZ_GROUP_ROLES, object_name:WF_HZ_GROUP_ROLES, status:VALID,
-
APPS.WFA_HTML SQL Statements
12.2.2
-
INDEX PARTITION: APPLSYS.WF_LOCAL_ROLES_N2
12.1.1
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_LOCAL_ROLES_N2, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_LOCAL_ROLES_N5
12.1.1
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_LOCAL_ROLES_N5, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_LOCAL_USER_ROLES_N4
12.1.1
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_LOCAL_USER_ROLES_N4, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_LOCAL_USER_ROLES_N7
12.2.2
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_LOCAL_USER_ROLES_N7, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_USER_ROLE_ASSIGNMENTS_N2
12.2.2
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_USER_ROLE_ASSIGNMENTS_N2, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_USER_ROLE_ASSIGNMENTS_N4
12.2.2
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_USER_ROLE_ASSIGNMENTS_N4, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_USER_ROLE_ASSIGNMENTS_N3
12.2.2
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_USER_ROLE_ASSIGNMENTS_N3, subobject_name:WF_LOCAL_ROLES, status:VALID,