Search Results project_control_level
Overview
PJMBV_PROJECT_MFG_ORGS is a read-only APPS view that exposes Project Manufacturing organization setup information in Oracle E-Business Suite 12.1.1 and 12.2.2. The view is owned by the APPS schema and is defined with the WITH READ ONLY clause, meaning it cannot be used as a DML target; it is strictly a query and reporting object. Its primary role is to present the organization-level parameters that govern how Project Manufacturing (PJM) operates within each inventory organization, including project control level, cross-project issue rules, variance accounts, and the expenditure types used when transferring specific cost components.
The view is significant for the user search term erv_expenditure_type because it exposes the column ERV_EXPENDITURE_TYPE, which stores the expenditure type applied when Expense Report Variance (ERV) amounts are transferred to projects. Because this column is surfaced through the view alongside related transfer parameters, it serves as a convenient reporting and integration gateway for project manufacturing setups involving expenditure type mapping.
Underlying Base Objects
The view is defined over a single documented base object: PJM_ORG_PARAMETERS, referenced through a synonym in the APPS schema. The view text aliases this table as POP and selects directly from it:
PJM_ORG_PARAMETERS POP— the sole base object, holding all Project Manufacturing organization parameters.- Several columns in the SELECT list are accompanied by descriptive flexfield or attribute tokens such as
_DF:PJM:PJM_ORG_PARAMETERS:POPand_LA:POP.TRANSFER_ERV:FND_COMMON_LOOKUPS:YES_NO:MEANING. These tokens indicate that the view provides value-set lookup translations and DFF metadata that ETRM uses for display and documentation purposes.
Because the view maps almost one-to-one to PJM_ORG_PARAMETERS, any change to the underlying organization parameters is immediately visible through the view. No joins to other tables are documented in the view text.
Key Columns
The view exposes the following documented columns:
ORGANIZATION_ID— identifies the inventory organization whose Project Manufacturing parameters are stored.PROJECT_CONTROL_LEVEL— the project control level applied to the organization.COMMON_PROJECT_ID— the common project used for the organization.IPV_EXPENDITURE_TYPE,ERV_EXPENDITURE_TYPE,FREIGHT_EXPENDITURE_TYPE,TAX_EXPENDITURE_TYPE,MISC_EXPENDITURE_TYPE— the expenditure types applied when transferring IPV, ERV, freight, tax, and miscellaneous amounts respectively.PAYBACK_MAT_VAR_ACCOUNT,PAYBACK_MOH_VAR_ACCOUNT,PAYBACK_RES_VAR_ACCOUNT,PAYBACK_OSP_VAR_ACCOUNT,PAYBACK_OVH_VAR_ACCOUNT— variance accounts for material, manufacturing overhead, resource, outside processing, and overhead payback.- Audit columns:
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY. - Lookup-attribute tokens such as
"_LA:ALLOW_CROSS_PROJ_ISSUES","_LA:TRANSFER_IPV","_LA:TRANSFER_ERV","_LA:TRANSFER_FREIGHT","_LA:TRANSFER_TAX", and"_LA:TRANSFER_MISC"— these reference FND_COMMON_LOOKUPS values (YES_NO) and their meanings.
Common Use Cases and Queries
Typical uses include validating the ERV expenditure type configured for an organization, auditing transfer settings across organizations, and integrating project manufacturing parameters into external reporting. The following sample query retrieves the ERV expenditure type and related transfer parameters for a specific organization:
SELECT organization_id, erv_expenditure_type, ipv_expenditure_type, freight_expenditure_type, tax_expenditure_type, misc_expenditure_type FROM apps.pjmbv_project_mfg_orgs WHERE organization_id = :org_id;SELECT organization_id, project_control_level, common_project_id, payback_mat_var_account FROM apps.pjmbv_project_mfg_orgs ORDER BY organization_id;
Because the view is read-only, it is safe to query in concurrent programs, BI Publisher reports, and integration extracts without risking data modification.
-
View: PJMBV_PROJECT_MFG_ORGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJMBV_PROJECT_MFG_ORGS, object_name:PJMBV_PROJECT_MFG_ORGS, status:VALID, product: PJM - Project Manufacturing , description: Project Manufacturing Organization Setups , implementation_dba_data: APPS.PJMBV_PROJECT_MFG_ORGS ,
-
View: PJMBV_PROJECT_MFG_ORGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJMBV_PROJECT_MFG_ORGS, object_name:PJMBV_PROJECT_MFG_ORGS, status:VALID, product: PJM - Project Manufacturing , description: Project Manufacturing Organization Setups , implementation_dba_data: APPS.PJMBV_PROJECT_MFG_ORGS ,
-
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 ,
-
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: PJMFV_PROJECT_MFG_ORGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJMFV_PROJECT_MFG_ORGS, object_name:PJMFV_PROJECT_MFG_ORGS, status:VALID, product: PJM - Project Manufacturing , description: Project Manufacturing Organization Setups , implementation_dba_data: APPS.PJMFV_PROJECT_MFG_ORGS ,
-
View: PJMFV_PROJECT_MFG_ORGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJMFV_PROJECT_MFG_ORGS, object_name:PJMFV_PROJECT_MFG_ORGS, status:VALID, product: PJM - Project Manufacturing , description: Project Manufacturing Organization Setups , implementation_dba_data: APPS.PJMFV_PROJECT_MFG_ORGS ,