DBA Data[Home] [Help]

APPS.CTO_UPDATE_ITEMS_PK dependencies on CST_COST_TYPES

Line 1132: v_cto_cost_type_name cst_cost_types.cost_type%type;

1128:
1129: l_rt_cicd_summary cicd_summary_rec_tab ;
1130:
1131:
1132: v_cto_cost_type_name cst_cost_types.cost_type%type;
1133:
1134: --kkonada R12
1135: --for mtl_cross_references_b
1136: --bug# 4539578

Line 1666: from cst_cost_types

1662: /* begin bugfix 4057651, default CTO cost type id = 7 if it does not exist */
1663: begin
1664:
1665: select cost_type_id into l_cto_cost_type_id
1666: from cst_cost_types
1667: where cost_type = 'CTO' ;
1668:
1669: exception
1670: when no_data_found then

Line 1681: from cst_cost_types

1677: l_cto_cost_type_id := 7 ;
1678:
1679: begin
1680: select cost_type into v_cto_cost_type_name
1681: from cst_cost_types
1682: where cost_type_id = l_cto_cost_type_id ;
1683:
1684: IF PG_DEBUG <> 0 THEN
1685: oe_debug_pub.add('Create_Item: ' || ' cost type id = ' || l_cto_cost_type_id ||