DBA Data[Home] [Help]

APPS.WIP_COMMON dependencies on STANDARD

Line 70: -- Standard Costing Organization

66: from mtl_parameters
67: where
68: organization_id = X_ORG_ID;
69: if( V_COST_METHOD = WIP_CONSTANTS.COST_STD ) then
70: -- Standard Costing Organization
71: begin
72: select wdcac.std_discrete_class, wdcac.repetitive_assy_class
73: into V_DISC_CLASS, V_REP_CLASS
74: from mtl_default_category_sets mdcs, mtl_item_categories mic,

Line 119: cost group can be null for standarding costing org if WMS and PJM not enabled*/

115: begin
116: if X_PROJECT_ID IS NOT NULL then
117: /*Bug 9977721(FP of 9507090), if X_PROJECT_ID is not null, get the cost group from project parameters
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

Line 196: if V_COST_GROUP_ID is null then --standard costing, WMS and PJM not enabled*/

192: INTO V_DISC_CLASS
193: FROM WIP_PARAMETERS wp
194: WHERE wp.ORGANIZATION_ID = X_ORG_ID;
195: /*Bug 9977721(FP of 9507090)*/
196: if V_COST_GROUP_ID is null then --standard costing, WMS and PJM not enabled*/
197: v_ret := check_disabled(V_DISC_CLASS, X_ORG_ID, X_ENTITY_TYPE);
198: else
199: v_ret := check_cg_disabled(V_DISC_CLASS, X_ORG_ID, X_ENTITY_TYPE, V_COST_GROUP_ID);
200: end if;