Search Results org_organization_definitions2
Overview
ORG_ORGANIZATION_DEFINITIONS2 is an APPS-owned, VALID view within the INV (Inventory) product of Oracle E-Business Suite, documented against release 12.1.1 / 12.2.2. Its defining purpose is to expose two populations of organizations in a single result set: organizations that are genuinely configured as inventory organizations, and organizations that "claim" to be inventory organizations by way of organization classification information but that have no corresponding inventory parameters defined. This distinction is significant for data integrity and diagnostic reporting, because a row can be classified with an inventory context without ever having been fully instantiated through the inventory setup flow.
The user query term inventory_enabled_flag maps to the view column INVENTORY_ENABLED_FLAG, which is drawn from HR_ORGANIZATION_INFORMATION.ORG_INFORMATION2. This makes the view particularly relevant to reporting and integration scenarios where the enablement state of an inventory organization must be surfaced independently of the presence of MTL_PARAMETERS rows.
Underlying Base Objects
The view is defined over the following documented referenced base objects:
- HR_ORGANIZATION_UNITS (VIEW) — source of the organization identifier, business group, name, and the DATE_FROM / DATE_TO values surfaced as USER_DEFINITION_ENABLE_DATE and DISABLE_DATE.
- HR_ORGANIZATION_INFORMATION (SYNONYM) — joined twice (HOI1 and HOI2). HOI1 filters rows where ORG_INFORMATION1 = 'INV' and ORG_INFORMATION_CONTEXT = 'CLASS', and supplies ORG_INFORMATION2 as INVENTORY_ENABLED_FLAG. HOI2 carries the 'ACCOUNTING INFORMATION' context and supplies the ledger identifier used in the join.
- MTL_PARAMETERS (SYNONYM) — joined with an outer join (+) on ORGANIZATION_ID, which is what permits organizations lacking inventory parameters to survive into the result set.
- GL_LEDGERS (SYNONYM) — supplies LEDGER_ID (aliased SET_OF_BOOKS_ID) and CHART_OF_ACCOUNTS_ID, restricted to OBJECT_TYPE_CODE = 'L'.
- HR_GENERAL (PACKAGE) and HR_SECURITY (PACKAGE) — supporting program units referenced by the definition.
The join between the accounting information context and GL_LEDGERS relies on a numeric translation test: DECODE(RTRIM(TRANSLATE(HOI2.ORG_INFORMATION1, '0123456789', ' ')), NULL, HOI2.ORG_INFORMATION1, -99999) must equal LGR.LEDGER_ID, and NVL(COMPLETE_FLAG, 'Y') = 'Y'.
Key Columns
- ORGANIZATION_ID — primary organization identifier.
- BUSINESS_GROUP_ID — owning business group.
- USER_DEFINITION_ENABLE_DATE / DISABLE_DATE — the effective date range from the organization unit definition (DATE_FROM / DATE_TO).
- ORGANIZATION_CODE — the short organization code from MTL_PARAMETERS; NULL for organizations claiming inventory status without parameters.
- ORGANIZATION_NAME — descriptive organization name.
- SET_OF_BOOKS_ID — ledger identifier from GL_LEDGERS.
- CHART_OF_ACCOUNTS_ID — chart of accounts identifier from GL_LEDGERS.
- INVENTORY_ENABLED_FLAG — the inventory enablement indicator (ORG_INFORMATION2), the column most frequently used to filter or report on inventory-enabled organizations.
Common Use Cases and Queries
Typical uses include identifying organizations with an inventory classification but no inventory parameters, auditing enablement flags, and driving downstream integrations that require both code and name even for partially configured organizations.
List organizations where the inventory classification exists:
- SELECT organization_id, organization_code, organization_name, inventory_enabled_flag FROM apps.org_organization_definitions2 WHERE inventory_enabled_flag = 'Y';
Detect organizations claiming inventory status without parameters:
- SELECT organization_id, organization_name, inventory_enabled_flag FROM apps.org_organization_definitions2 WHERE organization_code IS NULL;
Join to inventory parameters for fully configured organizations:
- SELECT o.organization_id, o.organization_code, o.inventory_enabled_flag FROM apps.org_organization_definitions2 o, apps.mtl_parameters p WHERE o.organization_id = p.organization_id;
-
View: ORG_ORGANIZATION_DEFINITIONS2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.ORG_ORGANIZATION_DEFINITIONS2, object_name:ORG_ORGANIZATION_DEFINITIONS2, status:VALID, product: INV - Inventory , description: Inventory organizations and organizations "claiming" to be inventory organizations but do not have inventory parameters , implementation_dba_data: APPS.ORG_ORGANIZATION_DEFINITIONS2 ,
-
View: ORG_ORGANIZATION_DEFINITIONS2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.ORG_ORGANIZATION_DEFINITIONS2, object_name:ORG_ORGANIZATION_DEFINITIONS2, status:VALID, product: INV - Inventory , description: Inventory organizations and organizations "claiming" to be inventory organizations but do not have inventory parameters , implementation_dba_data: APPS.ORG_ORGANIZATION_DEFINITIONS2 ,
-
PACKAGE BODY: APPS.WSH_WSHRDIST_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_WSHRDIST_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.WSH_WSHRDIST_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_WSHRDIST_XMLP_PKG, status:VALID,
-
APPS.WSH_WSHRDIST_XMLP_PKG SQL Statements
12.1.1
-
APPS.WSH_WSHRDIST_XMLP_PKG SQL Statements
12.2.2
-
VIEW: APPS.ORG_ORGANIZATION_DEFINITIONS2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.ORG_ORGANIZATION_DEFINITIONS2, object_name:ORG_ORGANIZATION_DEFINITIONS2, status:VALID,
-
VIEW: APPS.ORG_ORGANIZATION_DEFINITIONS2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.ORG_ORGANIZATION_DEFINITIONS2, object_name:ORG_ORGANIZATION_DEFINITIONS2, status:VALID,
-
PACKAGE BODY: APPS.WSH_WSHRDIST_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.WSH_WSHRDIST_XMLP_PKG
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.WSH_WSHRDIST_XMLP_PKG dependencies on ORG_ORGANIZATION_DEFINITIONS2
12.1.1
-
APPS.WSH_WSHRDIST_XMLP_PKG dependencies on ORG_ORGANIZATION_DEFINITIONS2
12.2.2
-
SYNONYM: APPS.GL_LEDGERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGERS, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.GL_LEDGERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGERS, status:VALID,
-
APPS.WSH_WSHRDIST_XMLP_PKG dependencies on ORG_ORGANIZATION_DEFINITIONS
12.1.1
-
APPS.WSH_WSHRDIST_XMLP_PKG dependencies on ORG_ORGANIZATION_DEFINITIONS
12.2.2
-
APPS.WSH_WSHRDIST_XMLP_PKG dependencies on MTL_PARAMETERS
12.2.2
-
APPS.WSH_WSHRDIST_XMLP_PKG dependencies on MFG_LOOKUPS
12.2.2
-
APPS.WSH_WSHRDIST_XMLP_PKG dependencies on MTL_PARAMETERS
12.1.1
-
APPS.WSH_WSHRDIST_XMLP_PKG dependencies on MFG_LOOKUPS
12.1.1
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.HR_ORGANIZATION_INFORMATION
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ORGANIZATION_INFORMATION, status:VALID,
-
SYNONYM: APPS.HR_ORGANIZATION_INFORMATION
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ORGANIZATION_INFORMATION, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,