DBA Data[Home] [Help]

PACKAGE: APPS.WMS_UI_TASKS_APIS

Source


1 PACKAGE WMS_UI_TASKS_APIS AUTHID CURRENT_USER AS
2 /* $Header: WMSTKUIS.pls 115.1 2003/08/15 17:03:29 kajain noship $*/
3 
4 -- Added two new global variables to store the values for the po, WMS and inv
5 -- patch LEVEL.
6 -- Since we are hard prereqing PO ARU we do not need to check if PO.J is
7 -- installed. However, since all the code already is using it all we need
8 -- to do is assign it the value of g_inv_patch_level since if inv.J or
9 -- higher is installed, it will imply the PO.J functionality exists.
10 g_po_patch_level NUMBER := inv_control.Get_Current_Release_Level;
11 g_inv_patch_level NUMBER := inv_control.Get_Current_Release_Level;
12 g_wms_patch_level NUMBER := wms_control.Get_Current_Release_Level;
13 
14 g_patchset_j NUMBER := 110510;
15 g_patchset_j_po NUMBER := 110510;
16 
17 PROCEDURE init_ui_startup_values(x_return_status        OUT NOCOPY VARCHAR2,
18 				 x_msg_data             OUT NOCOPY VARCHAR2,
19 				 x_inv_patch_level      OUT NOCOPY NUMBER,
20 				 x_po_patch_level       OUT NOCOPY NUMBER,
21 				 x_wms_patch_level      OUT NOCOPY NUMBER);
22 
23 
24 END WMS_UI_TASKS_APIS;