DBA Data[Home] [Help]

PACKAGE: APPS.INV_DEFAULT_TROLIN

Source


1 PACKAGE INV_Default_Trolin AUTHID CURRENT_USER AS
2 /* $Header: INVDTRLS.pls 120.2.12020000.1 2012/06/26 11:25:41 appldev ship $ */
3 
4 /*Fixed for bug#7126566
5   Added below variable to ensure that when Get_Line_Number function is called
6   it does increment line number properly.
7   The process to increment line number is this:
8   When called by FORM
9    Form will increate the line number (global variable -INV_Globals.g_max_line_num)
10    by calling the inv_trnasfer_order_pvt.increment_max_line_number.
11    This ensure that when user goes from one line to another it does not
12    increase line number unnecessarily.
13 
14   When called by API
15    Function Get_Line_Number will increase the line number and would generate
16    unique line number.
17 
18 */
19 G_CALLED_BY_FORM  VARCHAR2(1);
20 
21 PROCEDURE Set_CALLED_BY_FORM(P_CALLED_BY_FORM in varchar2 );
22 
23 --  Procedure Attributes
24 
25 PROCEDURE Attributes
26 (   p_trolin_rec                    IN  INV_Move_Order_PUB.Trolin_Rec_Type :=
27                                         INV_Move_Order_PUB.G_MISS_TROLIN_REC
28 ,   p_iteration                     IN  NUMBER := 1
29 ,   x_trolin_rec                    OUT nocopy INV_Move_Order_PUB.Trolin_Rec_Type
30 );
31 
32 END INV_Default_Trolin;