DBA Data[Home] [Help]

APPS.WIP_COMMON dependencies on MTL_PARAMETERS

Line 59: from mtl_parameters

55: end if;
56:
57: select primary_cost_method
58: into V_COST_METHOD
59: from mtl_parameters
60: where
61: organization_id = X_ORG_ID;
62: if( V_COST_METHOD = WIP_CONSTANTS.COST_STD ) then
63: -- Standard Costing Organization

Line 135: that gets Cost Group ID from mtl_parameters. */

131: mpp.organization_id = X_ORG_ID;
132: else
133: /* Fix for bug 2491739
134: Replacing hard-coding of COST_GROUP_ID with a select statement
135: that gets Cost Group ID from mtl_parameters. */
136: /* V_COST_GROUP_ID := 1; */
137: select default_cost_group_id
138: into V_COST_GROUP_ID
139: from mtl_parameters

Line 139: from mtl_parameters

135: that gets Cost Group ID from mtl_parameters. */
136: /* V_COST_GROUP_ID := 1; */
137: select default_cost_group_id
138: into V_COST_GROUP_ID
139: from mtl_parameters
140: where organization_id = X_ORG_ID;
141: end if;
142:
143: begin

Line 256: from mtl_parameters mp

252: v_project_reference_enabled number;
253: BEGIN
254: select PRIMARY_COST_METHOD, PROJECT_REFERENCE_ENABLED
255: into v_primary_cost_method, v_project_reference_enabled
256: from mtl_parameters mp
257: where
258: mp.organization_id = X_ORG_ID;
259:
260: if v_primary_cost_method in ( WIP_CONSTANTS.COST_AVG,