DBA Data[Home] [Help]

PACKAGE BODY: APPS.WMS_LPN_CONTEXT_PVT

Source


1 PACKAGE BODY wms_lpn_context_pvt AS
2 /* $Header: WMSLCNPB.pls 115.2 2002/03/25 10:23:08 pkm ship       $ */
3 
4 --  Global constant holding the package name
5 
6 G_PKG_NAME    CONSTANT VARCHAR2(30) := 'wms_lpn_context_pvt';
7 
8 -- This functions simply returns the context of the lpn after it has been
9 -- pick dropped. This function will be called by
10 -- wms_task_dispatch_gen.pick_drop API. This function was essential
11 -- because of the lpn context of 11 'picked' that was introduced in
12 -- 'G'. This version of the file should ONLY go to customers on
13 -- patchset 'G' or above. For customers on patchset 'F', use version
14 -- 115.1 of this file
15 
16 FUNCTION return_pick_drop_lpn_context RETURN NUMBER IS
17 
18 BEGIN
19 
20    RETURN wms_container_pub.lpn_context_picked;
21 
22 END return_pick_drop_lpn_context;
23 
24 END wms_lpn_context_pvt;
25