DBA Data[Home] [Help]

APPS.CTO_CONFIG_ITEM_PK dependencies on OE_ORDER_LINES

Line 17: item_id oe_order_lines.inventory_item_id%type,

13: gWtStatus number := 0 ;
14: gVolStatus number := 0 ;
15:
16: type smc_rec is record (
17: item_id oe_order_lines.inventory_item_id%type,
18: sequence_id oe_order_lines.component_sequence_id%type,
19: quantity oe_order_lines.ordered_quantity%type ,
20: check_atp bom_explosions.check_atp%type
21: );

Line 18: sequence_id oe_order_lines.component_sequence_id%type,

14: gVolStatus number := 0 ;
15:
16: type smc_rec is record (
17: item_id oe_order_lines.inventory_item_id%type,
18: sequence_id oe_order_lines.component_sequence_id%type,
19: quantity oe_order_lines.ordered_quantity%type ,
20: check_atp bom_explosions.check_atp%type
21: );
22:

Line 19: quantity oe_order_lines.ordered_quantity%type ,

15:
16: type smc_rec is record (
17: item_id oe_order_lines.inventory_item_id%type,
18: sequence_id oe_order_lines.component_sequence_id%type,
19: quantity oe_order_lines.ordered_quantity%type ,
20: check_atp bom_explosions.check_atp%type
21: );
22:
23: type SmcTab is table of smc_rec index by binary_integer;

Line 74: process_order API to insert config line in oe_order_lines

70: Name : link_item
71:
72: Description : This function links a newly created or a matching
73: config item to the order line. It calls OE's
74: process_order API to insert config line in oe_order_lines
75:
76: Returns : TRUE - If the function completes succesfully
77: FALSE - If the function completes with error
78: