Search Results child_organization_name
Overview
APPS.QA_SPEC_ORGS_V is a reporting and integration view in Oracle E-Business Suite that exposes the relationship between quality specifications (QA_SPECS) and the inventory organizations in which the specified items are defined. It resolves a common reporting requirement: given a quality specification and its associated item, return the child organization context — the organization identifier, organization code, and organization name — for that item/specification combination.
The view is particularly relevant to users searching for child_organization_name, which is exposed as the CHILD_ORGANIZATION_NAME column. This column provides the translated, user-facing name of the organization from HR_ALL_ORGANIZATION_UNITS_TL, filtered to the session language via USERENV('LANG'). The view is owned by APPS and is available across 12.1.1 and 12.2.2, though the ETRM documentation is formally recorded at 12.2.2. It is typically used in quality, inventory, and item-master reporting where specification-to-organization attribution must be presented in a denormalized, query-friendly form.
Underlying Base Objects
The view is defined over four documented synonym base objects:
- QA_SPECS — the driving table holding specification records (SPEC_ID, SPEC_NAME, ITEM_ID, ORGANIZATION_ID, COMMON_SPEC_ID).
- MTL_SYSTEM_ITEMS_B — supplies the inventory item and its defining organization; supplies CHILD_ORGANIZATION_ID via MSI.ORGANIZATION_ID.
- MTL_PARAMETERS — supplies the organization code (CHILD_ORGANIZATION_CODE) for the matching organization.
- HR_ALL_ORGANIZATION_UNITS_TL — the translated organization name table supplying CHILD_ORGANIZATION_NAME, restricted to the session language.
The join logic is significant: the view links QA_SPECS.SPEC_ID to QA_SPECS.COMMON_SPEC_ID, meaning it surfaces common (shared) specifications rather than spec-version rows. QA_SPECS.ITEM_ID joins to MTL_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID, and MTL_SYSTEM_ITEMS_B.ORGANIZATION_ID joins to both MTL_PARAMETERS.ORGANIZATION_ID and HR_ALL_ORGANIZATION_UNITS_TL.ORGANIZATION_ID. The organization context is therefore driven by the item's organization, labeled as the "child" organization relative to the specification's own ORGANIZATION_ID.
Key Columns
- SPEC_ID — identifier of the quality specification.
- SPEC_NAME — name of the specification.
- ITEM_ID — inventory item associated with the specification.
- ORGANIZATION_ID — organization identifier from QA_SPECS (the specification's own organization context).
- CHILD_ORGANIZATION_ID — organization identifier sourced from MTL_SYSTEM_ITEMS_B, i.e., the organization where the item is defined.
- CHILD_ORGANIZATION_CODE — the organization code from MTL_PARAMETERS.
- CHILD_ORGANIZATION_NAME — the translated organization name from HR_ALL_ORGANIZATION_UNITS_TL, restricted to USERENV('LANG').
Note that the CHILD_ORGANIZATION_NAME is language-sensitive; if no translation exists for the session language, the organization name may not be returned, and rows could be filtered out by the language join condition.
Common Use Cases and Queries
Typical uses include quality specification reports that must display the owning child organization by name, integration extracts that map specs to organization codes, and reconciliation queries validating common-spec distribution across organizations.
Example — list specifications with their child organization details:
SELECT spec_id, spec_name, item_id, child_organization_id, child_organization_code, child_organization_name FROM apps.qa_spec_orgs_v;
Example — filter by specification name:
SELECT spec_name, child_organization_code, child_organization_name FROM apps.qa_spec_orgs_v WHERE spec_name LIKE 'CQ%';
Example — join back to items for additional attribute reporting:
SELECT v.spec_name, v.item_id, v.child_organization_name FROM apps.qa_spec_orgs_v v WHERE v.child_organization_id = :org_id;
Because the view restricts organization names by language and depends on item/organization joins, users should validate that the target item is enabled in the child organization and that a translation exists for the session language before relying on CHILD_ORGANIZATION_NAME in extracts.
-
VIEW: APPS.QA_SPEC_ORGS_V
12.2.2
-
VIEW: APPS.PA_REP_COMP_REP_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_COMP_REP_ORG_V, object_name:PA_REP_COMP_REP_ORG_V, status:VALID,
-
View: QA_SPEC_ORG_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SPEC_ORG_ASSIGNMENTS_V, object_name:QA_SPEC_ORG_ASSIGNMENTS_V, status:VALID, product: QA - Quality , description: View used in spec org assignment window , implementation_dba_data: APPS.QA_SPEC_ORG_ASSIGNMENTS_V ,
-
VIEW: APPS.QA_SPEC_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SPEC_ORGS_V, object_name:QA_SPEC_ORGS_V, status:VALID,
-
VIEW: APPS.PA_REP_COMP_REP_ORG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_COMP_REP_ORG_V, object_name:PA_REP_COMP_REP_ORG_V, status:VALID,
-
View: QA_SPEC_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SPEC_ORGS_V, object_name:QA_SPEC_ORGS_V, status:VALID, product: QA - Quality , description: Auxiliary view used by qa_spec_org_assignments_v , implementation_dba_data: APPS.QA_SPEC_ORGS_V ,
-
View: QA_SPEC_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SPEC_ORGS_V, object_name:QA_SPEC_ORGS_V, status:VALID, product: QA - Quality , description: Auxiliary view used by qa_spec_org_assignments_v , implementation_dba_data: APPS.QA_SPEC_ORGS_V ,
-
View: HRFV_ORGANIZATION_HIERARCHIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ORGANIZATION_HIERARCHIES, object_name:HRFV_ORGANIZATION_HIERARCHIES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ORGANIZATION_HIERARCHIES ,
-
View: HRFV_ORGANIZATION_HIERARCHIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ORGANIZATION_HIERARCHIES, object_name:HRFV_ORGANIZATION_HIERARCHIES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ORGANIZATION_HIERARCHIES ,
-
VIEW: APPS.QA_SPEC_ORGS_V
12.1.1
-
VIEW: APPS.HRFV_ORGANIZATION_HIERARCHIES
12.2.2
-
VIEW: APPS.QA_SPEC_ORG_ASSIGNMENTS_V
12.2.2
-
VIEW: APPS.HRFV_ORGANIZATION_HIERARCHIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ORGANIZATION_HIERARCHIES, object_name:HRFV_ORGANIZATION_HIERARCHIES, status:VALID,
-
VIEW: APPS.HRFV_ORGANIZATION_HIERARCHIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ORGANIZATION_HIERARCHIES, object_name:HRFV_ORGANIZATION_HIERARCHIES, status:VALID,
-
VIEW: APPS.HRFV_ORGANIZATION_HIERARCHIES
12.1.1
-
View: QA_SPEC_ORG_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SPEC_ORG_ASSIGNMENTS_V, object_name:QA_SPEC_ORG_ASSIGNMENTS_V, status:VALID, product: QA - Quality , description: View used in spec org assignment window , implementation_dba_data: APPS.QA_SPEC_ORG_ASSIGNMENTS_V ,
-
VIEW: APPS.QA_SPEC_ORG_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SPEC_ORG_ASSIGNMENTS_V, object_name:QA_SPEC_ORG_ASSIGNMENTS_V, status:VALID,
-
VIEW: APPS.QA_SPEC_ORG_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SPEC_ORG_ASSIGNMENTS_V, object_name:QA_SPEC_ORG_ASSIGNMENTS_V, status:VALID,
-
VIEW: APPS.QA_SPEC_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SPEC_ORGS_V, object_name:QA_SPEC_ORGS_V, status:VALID,
-
VIEW: APPS.QA_SPEC_ORG_ASSIGNMENTS_V
12.1.1
-
View: PA_REP_COMP_REP_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_COMP_REP_ORG_V, object_name:PA_REP_COMP_REP_ORG_V, status:VALID, product: PA - Projects , description: View for reporting organization lov in competence reports , implementation_dba_data: APPS.PA_REP_COMP_REP_ORG_V ,
-
View: PA_REP_COMP_REP_ORG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_COMP_REP_ORG_V, object_name:PA_REP_COMP_REP_ORG_V, status:VALID, product: PA - Projects , description: View for reporting organization lov in competence reports , implementation_dba_data: APPS.PA_REP_COMP_REP_ORG_V ,
-
VIEW: APPS.HR_DE_ORGANIZATION_LINKS_V3
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V3, object_name:HR_DE_ORGANIZATION_LINKS_V3, status:VALID,
-
View: HR_DE_ORGANIZATION_LINKS_V3
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V3, object_name:HR_DE_ORGANIZATION_LINKS_V3, status:VALID, product: PER - Human Resources , description: Displays all other misc links for an Internal organization , implementation_dba_data: APPS.HR_DE_ORGANIZATION_LINKS_V3 ,
-
View: HR_DE_ORGANIZATION_LINKS_V3
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V3, object_name:HR_DE_ORGANIZATION_LINKS_V3, status:VALID, product: PER - Human Resources , description: Displays all other misc links for an Internal organization , implementation_dba_data: APPS.HR_DE_ORGANIZATION_LINKS_V3 ,
-
VIEW: APPS.HR_DE_ORGANIZATION_LINKS_V3
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V3, object_name:HR_DE_ORGANIZATION_LINKS_V3, status:VALID,
-
View: HR_DE_ORGANIZATION_LINKS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V1, object_name:HR_DE_ORGANIZATION_LINKS_V1, status:VALID, product: PER - Human Resources , description: Displays all links of type 'DE_SOCIAL_INSURANCE' for an Internal organization , implementation_dba_data: APPS.HR_DE_ORGANIZATION_LINKS_V1 ,
-
View: HR_DE_ORGANIZATION_LINKS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V1, object_name:HR_DE_ORGANIZATION_LINKS_V1, status:VALID, product: PER - Human Resources , description: Displays all links of type 'DE_SOCIAL_INSURANCE' for an Internal organization , implementation_dba_data: APPS.HR_DE_ORGANIZATION_LINKS_V1 ,
-
View: HR_DE_ORGANIZATION_LINKS_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V2, object_name:HR_DE_ORGANIZATION_LINKS_V2, status:VALID, product: PER - Human Resources , description: Displays all links of type 'DE_LIABILITY_INSURANCE' for an Internal organization , implementation_dba_data: APPS.HR_DE_ORGANIZATION_LINKS_V2 ,
-
View: HR_DE_ORGANIZATION_LINKS_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V2, object_name:HR_DE_ORGANIZATION_LINKS_V2, status:VALID, product: PER - Human Resources , description: Displays all links of type 'DE_LIABILITY_INSURANCE' for an Internal organization , implementation_dba_data: APPS.HR_DE_ORGANIZATION_LINKS_V2 ,
-
VIEW: APPS.HR_DE_ORGANIZATION_LINKS_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V2, object_name:HR_DE_ORGANIZATION_LINKS_V2, status:VALID,
-
VIEW: APPS.HR_DE_ORGANIZATION_LINKS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V1, object_name:HR_DE_ORGANIZATION_LINKS_V1, status:VALID,
-
VIEW: APPS.HR_DE_ORGANIZATION_LINKS_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V2, object_name:HR_DE_ORGANIZATION_LINKS_V2, status:VALID,
-
VIEW: APPS.HR_DE_ORGANIZATION_LINKS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_ORGANIZATION_LINKS_V1, object_name:HR_DE_ORGANIZATION_LINKS_V1, status:VALID,
-
APPS.PER_RI_CONFIG_TECH_SUMMARY SQL Statements
12.1.1
-
APPS.PER_RI_CONFIG_TECH_SUMMARY SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PER_RI_CONFIG_TECH_SUMMARY
12.1.1
-
PACKAGE BODY: APPS.PER_RI_CONFIG_TECH_SUMMARY
12.2.2
-
PACKAGE: APPS.PER_RI_CONFIG_TECH_SUMMARY
12.2.2
-
PACKAGE: APPS.PER_RI_CONFIG_TECH_SUMMARY
12.1.1
-
PACKAGE BODY: APPS.PER_RI_CONFIG_DATAPUMP_ENTITY
12.2.2
-
PACKAGE BODY: APPS.PER_RI_CONFIG_DATAPUMP_ENTITY
12.1.1
-
APPS.PER_RI_CONFIG_TECH_SUMMARY dependencies on HR_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.PER_RI_CONFIG_TECH_SUMMARY dependencies on HR_ALL_ORGANIZATION_UNITS
12.2.2
-
APPS.PER_RI_CONFIG_TECH_SUMMARY dependencies on PER_ORG_STRUCTURE_VERSIONS
12.1.1
-
APPS.PER_RI_CONFIG_TECH_SUMMARY dependencies on PER_ORG_STRUCTURE_VERSIONS
12.2.2
-
APPS.PER_RI_CONFIG_TECH_SUMMARY dependencies on HR_UTILITY
12.2.2
-
APPS.PER_RI_CONFIG_TECH_SUMMARY dependencies on HR_UTILITY
12.1.1
-
APPS.PA_HR_UPDATE_PA_ENTITIES dependencies on PA_HR_UPDATE_API
12.1.1
-
APPS.PA_HR_UPDATE_PA_ENTITIES dependencies on PA_HR_UPDATE_API
12.2.2