DBA Data[Home] [Help]

PACKAGE BODY: APPS.ONT_COACOC_PACKAGE

Source


1 package body ont_coacoc_package as
2 /*  $Header: ONTCOACB.pls 120.0 2005/06/01 02:57:49 appldev noship $ */
3 
4 /* Check if a COA/COC is available for an order item */
5 procedure coaitem_avail ( p_headerid IN  NUMBER ,
6 			  p_line_id IN  NUMBER,
7 			  p_inventory_item_id IN  NUMBER,
8 p_return out nocopy number) is
9 
10 			  --
11 			  l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
12 			  --
13 begin
14 
15    p_return := 0;
16 
17 end coaitem_avail;
18 
19 
20 /* Check if a COA/COC is available for a delivery item */
21 procedure coaitem_avail ( p_deliveryid IN  NUMBER ,
22 			  p_line_id IN  NUMBER,
23 p_return out nocopy number) is
24 
25 			  --
26 			  l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
27 			  --
28 begin
29 
30    p_return := 0;
31 
32 end coaitem_avail;
33 
34 
35 end ont_coacoc_package;