DBA Data[Home] [Help]

APPS.WIP_COMMON dependencies on MTL_PARAMETERS

Line 66: from mtl_parameters

62: end if;
63:
64: select primary_cost_method
65: into V_COST_METHOD
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

Line 129: from mtl_parameters

125: mpp.organization_id = X_ORG_ID;
126: else
127: select DEFAULT_COST_GROUP_ID
128: into V_COST_GROUP_ID
129: from mtl_parameters
130: where organization_id = X_ORG_ID;
131: end if;
132: exception
133: when NO_DATA_FOUND then

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

146: mpp.organization_id = X_ORG_ID;
147: else
148: /* Fix for bug 2491739
149: Replacing hard-coding of COST_GROUP_ID with a select statement
150: that gets Cost Group ID from mtl_parameters. */
151: /* V_COST_GROUP_ID := 1; */
152: select default_cost_group_id
153: into V_COST_GROUP_ID
154: from mtl_parameters

Line 154: from mtl_parameters

150: that gets Cost Group ID from mtl_parameters. */
151: /* V_COST_GROUP_ID := 1; */
152: select default_cost_group_id
153: into V_COST_GROUP_ID
154: from mtl_parameters
155: where organization_id = X_ORG_ID;
156: end if;
157:
158: begin

Line 311: from mtl_parameters mp

307: v_project_reference_enabled number;
308: BEGIN
309: select PRIMARY_COST_METHOD, PROJECT_REFERENCE_ENABLED
310: into v_primary_cost_method, v_project_reference_enabled
311: from mtl_parameters mp
312: where
313: mp.organization_id = X_ORG_ID;
314:
315: if v_primary_cost_method in ( WIP_CONSTANTS.COST_AVG,