DBA Data[Home] [Help]

APPS.CSTPIDIC dependencies on MTL_PARAMETERS

Line 39: FROM mtl_parameters

35: | 0 for discrete/discrete xfer
36: +------------------------------------------------------------*/
37: SELECT NVL(process_enabled_flag, 'N')
38: INTO l_process_enabled_flag
39: FROM mtl_parameters
40: WHERE organization_id = i_organization_id;
41:
42: -- Skip inserting into CICD for process orgs
43: IF l_process_enabled_flag = 'Y'

Line 84: FROM mtl_parameters MP

80: SELECT
81: MP.DEFAULT_MATERIAL_COST_ID
82: INTO
83: p_def_matl_cost_code_id
84: FROM mtl_parameters MP
85: WHERE MP.organization_id = I_ORGANIZATION_ID;
86:
87: /* Insert into CICD only if no rows exist now. */
88: p_location := 5;

Line 150: FROM mtl_parameters

146: IF l_avg_costing_option = '2' THEN
147:
148: SELECT AVG_RATES_COST_TYPE_ID
149: INTO l_avg_rates_cost_type_id
150: FROM mtl_parameters
151: WHERE organization_id = I_ORGANIZATION_ID;
152:
153: p_location := 7;
154: