DBA Data[Home] [Help]

PACKAGE: APPS.HRI_BPL_OE_ORDER

Source


1 PACKAGE HRI_BPL_OE_ORDER AUTHID CURRENT_USER AS
2 /* $Header: hriboeod.pkh 120.0 2005/05/29 07:03:48 appldev noship $ */
3 
4 --
5 -- Function returns Line number for corrosponding Line_id
6 -- To improve performance it teturns a cached value if it can
7 --
8 FUNCTION GET_LINE_NUMBER
9   (p_line_id                   IN    NUMBER
10   )
11 RETURN NUMBER;
12 
13 --
14 -- Function returns Order Number for corrosponding Line_id
15 -- To improve performance it teturns a cached value if it can
16 --
17 FUNCTION GET_ORDER_NUMBER
18   (p_line_id                   IN    NUMBER
19   )
20 RETURN NUMBER;
21 
22 --
23 -- Function returns Header id for corrosponding Line_id
24 -- To improve performance it teturns a cached value if it can
25 --
26 FUNCTION GET_HEADER_ID
27   (p_line_id                   IN    NUMBER
28   )
29 RETURN NUMBER;
30 
31 END HRI_BPL_OE_ORDER;