DBA Data[Home] [Help]

APPS.WIP_COMMON dependencies on MRP_PROJECT_PARAMETERS

Line 122: from mrp_project_parameters mpp

118: if X_PROJECT_ID is null, get the cost group from organization parameters.
119: cost group can be null for standarding costing org if WMS and PJM not enabled*/
120: select NVL(costing_group_id,1), wip_acct_class_code
121: into V_COST_GROUP_ID, V_PRJ_DEF_CLASS
122: from mrp_project_parameters mpp
123: where
124: mpp.project_id = X_PROJECT_ID and
125: mpp.organization_id = X_ORG_ID;
126: else

Line 143: from mrp_project_parameters mpp

139: -- Average Costing Organization
140: if X_PROJECT_ID IS NOT NULL then
141: select NVL(costing_group_id,1), wip_acct_class_code
142: into V_COST_GROUP_ID, V_PRJ_DEF_CLASS
143: from mrp_project_parameters mpp
144: where
145: mpp.project_id = X_PROJECT_ID and
146: mpp.organization_id = X_ORG_ID;
147: else

Line 216: -- Default from mrp_project_parameters

212: return(NULL);
213: end if;
214: end if;
215: elsif X_PROJECT_ID is not NULL and V_PRJ_DEF_CLASS is not null then
216: -- Default from mrp_project_parameters
217:
218: V_DISC_CLASS := V_PRJ_DEF_CLASS;
219: /*Bug 9977721(FP of 9507090)*/
220: v_ret := check_cg_disabled(V_DISC_CLASS, X_ORG_ID, X_ENTITY_TYPE, V_COST_GROUP_ID);

Line 231: -- in mrp_project_parameters or wip_def_cat_acc_classes

227: end if;
228: else
229: return(NULL);
230: -- Project Id is defined but no class defined
231: -- in mrp_project_parameters or wip_def_cat_acc_classes
232: end if;
233:
234: exception
235: when NO_DATA_FOUND then