DBA Data[Home] [Help]

APPS.CTO_CONFIG_ITEM_PK dependencies on OE_ORDER_LINES

Line 25: item_id oe_order_lines.inventory_item_id%type,

21: g_vol_tbl g_wt_vol_tbl_type;
22:
23:
24: type smc_rec is record (
25: item_id oe_order_lines.inventory_item_id%type,
26: sequence_id oe_order_lines.component_sequence_id%type,
27: quantity oe_order_lines.ordered_quantity%type ,
28: check_atp bom_explosions.check_atp%type
29: );

Line 26: sequence_id oe_order_lines.component_sequence_id%type,

22:
23:
24: type smc_rec is record (
25: item_id oe_order_lines.inventory_item_id%type,
26: sequence_id oe_order_lines.component_sequence_id%type,
27: quantity oe_order_lines.ordered_quantity%type ,
28: check_atp bom_explosions.check_atp%type
29: );
30:

Line 27: quantity oe_order_lines.ordered_quantity%type ,

23:
24: type smc_rec is record (
25: item_id oe_order_lines.inventory_item_id%type,
26: sequence_id oe_order_lines.component_sequence_id%type,
27: quantity oe_order_lines.ordered_quantity%type ,
28: check_atp bom_explosions.check_atp%type
29: );
30:
31: type SmcTab is table of smc_rec index by binary_integer;

Line 82: process_order API to insert config line in oe_order_lines

78: Name : link_item
79:
80: Description : This function links a newly created or a matching
81: config item to the order line. It calls OE's
82: process_order API to insert config line in oe_order_lines
83:
84: Returns : TRUE - If the function completes succesfully
85: FALSE - If the function completes with error
86: