Search Results pjm_org_parameters_v
Overview
PJM_ORG_PARAMETERS_V is an APPS-owned view in the Oracle E-Business Suite Project Manufacturing (PJM) module. It exposes organization-level Project Manufacturing parameters stored in the PJM_ORG_PARAMETERS table, joined to the common project definition in PA_PROJECTS_ALL. In 12.1.1 and 12.2.2 the view remains a read-only, reporting-oriented presentation layer over these configuration settings, allowing users and integrators to query the manufacturing parameters that govern how Project Manufacturing organizations handle project references, project control, cost transfers, and variance accounting.
The view plays a central role in reporting and integration because it consolidates both the parameter record itself and the derived common project number. This makes it convenient for responsibility-level inquiries, concurrent-program validation, and external system extracts where the numeric COMMON_PROJECT_ID alone would require a further join. Because the view is a simple projection with an outer join to PA_PROJECTS_ALL, it is stable, low-overhead, and suitable for embedded subqueries in larger reporting SQL.
Underlying Base Objects
The documented base objects are PJM_ORG_PARAMETERS (a synonym) and PA_PROJECTS_ALL (a synonym). The view is defined with an outer join, expressed as P.PROJECT_ID (+) = POP.COMMON_PROJECT_ID, so every row in PJM_ORG_PARAMETERS is returned even when no common project is defined. The view selects POP.ROWID as ROW_ID along with audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN), the organization identifier, all parameter flags and expenditure-type mappings, descriptive flexfield columns ATTRIBUTE1 through ATTRIBUTE15 and ATTRIBUTE_CATEGORY, and P.SEGMENT1 projected as COMMON_PROJECT_NUMBER from PA_PROJECTS_ALL.
Because the outer table PJM_ORG_PARAMETERS is keyed by ORGANIZATION_ID, the view yields at most one parameter row per inventory organization, with the optional common project attributes appended. PA_PROJECTS_ALL supplies the project number used when a common project is configured.
Key Columns
- ORGANIZATION_ID — the Project Manufacturing organization to which the parameters apply; the effective join key for most queries.
- PROJECT_REFERENCE_ENABLED, PROJECT_CONTROL_LEVEL, COMMON_PROJECT_ID, COMMON_PROJECT_NUMBER — control whether project references are required and which common project is used.
- ALLOW_CROSS_PROJ_ISSUES, ALLOW_CROSS_UNITNUM_ISSUES — determine whether material may be issued across projects or units.
- PA_POSTING_FLAG, PA_AUTOACCOUNTING_FLAG — control posting and autoaccounting to Projects.
- PJM_CLEARING_ACCOUNT — the clearing account used in manufacturing-to-projects flows.
- TRANSFER_IPV/ERV/FREIGHT/TAX/MISC with their corresponding expenditure types — define whether each cost element is transferred and the expenditure type used.
- PPV_EXPENDITURE_TYPE — the purchase price variance expenditure type referenced when variances are transferred; this is the column most frequently searched for and reported against.
- DIR_ITEM_EXPENDITURE_TYPE, MAT_VAR_EXPENDITURE_TYPE, MOH_VAR_EXPENDITURE_TYPE, RES_VAR_EXPENDITURE_TYPE, OSP_VAR_EXPENDITURE_TYPE, OVH_VAR_EXPENDITURE_TYPE — the expenditure types for direct items and each variance category.
- PAYBACK_MAT_VAR_ACCOUNT, PAYBACK_MOH_VAR_ACCOUNT, PAYBACK_RES_VAR_ACCOUNT, PAYBACK_OSP_VAR_ACCOUNT, PAYBACK_OVH_VAR_ACCOUNT — accounts to which material, overhead, resource, outside processing, and overhead variance amounts are returned.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield segments available for organization-specific extensions.
Common Use Cases and Queries
Typical usages include validating that a Project Manufacturing organization has been configured with the required expenditure types before running cost collection, auditing variance account setup, and extracting parameters for a data warehouse. The following query lists the purchase price variance expenditure type and related variance configuration for a given organization:
- SELECT organization_id, ppv_expenditure_type, mat_var_expenditure_type, moh_var_expenditure_type, res_var_expenditure_type FROM pjm_org_parameters_v WHERE organization_id = :org_id;
- SELECT organization_id, common_project_number, project_control_level, allow_cross_proj_issues FROM pjm_org_parameters_v ORDER BY organization_id;
- SELECT organization_id, transfer_ipv, ipv_expenditure_type, transfer_erv, erv_expenditure_type FROM pjm_org_parameters_v WHERE project_reference_enabled = 'Y';
Because the view is defined over synonyms and is documented as VALID in 12.2.2, it may be queried directly in SQL*Plus, BI Publisher data models, or custom concurrent programs without additional grants beyond those already held on the APPS schema objects.
-
View: PJM_ORG_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_ORG_PARAMETERS_V, object_name:PJM_ORG_PARAMETERS_V, status:VALID, product: PJM - Project Manufacturing , description: Project Manufacturing organization level parameters , implementation_dba_data: APPS.PJM_ORG_PARAMETERS_V ,
-
View: PJM_ORG_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_ORG_PARAMETERS_V, object_name:PJM_ORG_PARAMETERS_V, status:VALID, product: PJM - Project Manufacturing , description: Project Manufacturing organization level parameters , implementation_dba_data: APPS.PJM_ORG_PARAMETERS_V ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.INV_LOC_WMS_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INV_LOC_WMS_PUB, status:VALID,
-
SYNONYM: APPS.PJM_ORG_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PJM_ORG_PARAMETERS, status:VALID,
-
PACKAGE BODY: APPS.INV_LOC_WMS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INV_LOC_WMS_PUB, status:VALID,
-
SYNONYM: APPS.PJM_ORG_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PJM_ORG_PARAMETERS, status:VALID,
-
VIEW: APPS.PJM_ORG_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_ORG_PARAMETERS_V, object_name:PJM_ORG_PARAMETERS_V, status:VALID,
-
VIEW: APPS.PJM_ORG_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_ORG_PARAMETERS_V, object_name:PJM_ORG_PARAMETERS_V, status:VALID,
-
APPS.INV_LOC_WMS_PUB dependencies on PJM_ORG_PARAMETERS_V
12.2.2
-
APPS.INV_LOC_WMS_PUB dependencies on PJM_ORG_PARAMETERS_V
12.1.1
-
APPS.INV_LOC_WMS_PUB SQL Statements
12.2.2
-
APPS.INV_LOC_WMS_PUB SQL Statements
12.1.1
-
SYNONYM: APPS.PA_PROJECTS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECTS_ALL, status:VALID,
-
SYNONYM: APPS.PA_PROJECTS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECTS_ALL, status:VALID,
-
eTRM - PJM Tables and Views
12.2.2
description: Change History of Serial Number - Model/Unit Number Associations ,
-
eTRM - PJM Tables and Views
12.1.1
description: Change History of Serial Number - Model/Unit Number Associations ,
-
PACKAGE BODY: APPS.INV_LOC_WMS_PUB
12.1.1
-
PACKAGE BODY: APPS.INV_LOC_WMS_PUB
12.2.2
-
12.2.2 DBA Data
12.2.2
-
eTRM - PJM Tables and Views
12.1.1
description: Change History of Serial Number - Model/Unit Number Associations ,
-
eTRM - PJM Tables and Views
12.2.2
description: Change History of Serial Number - Model/Unit Number Associations ,
-
12.1.1 DBA Data
12.1.1