DBA Data[Home] [Help]

APPS.CSTPIICC dependencies on MTL_PARAMETERS

Line 43: FROM mtl_parameters

39: | 0 for discrete/discrete xfer
40: +------------------------------------------------------------*/
41: SELECT NVL(process_enabled_flag, 'N')
42: INTO l_process_enabled_flag
43: FROM mtl_parameters
44: WHERE organization_id = i_org_id;
45:
46: -- Skip inserting into CICD for process orgs
47: IF l_process_enabled_flag = 'Y'

Line 80: mtl_parameters MP

76: l_planning_make_buy_code,
77: l_inv_asset_flag,
78: l_def_matl_cost_code_id
79: from mtl_system_items MSI,
80: mtl_parameters MP
81: WHERE MSI.inventory_item_id = i_item_id
82: AND MSI.organization_id = i_org_id
83: AND MSI.costing_enabled_flag = 'Y'
84: AND MP.organization_id = i_org_id;