DBA Data[Home] [Help]

PACKAGE: APPS.WMS_ATF_DEST_LOC

Source


1 package wms_atf_dest_loc AUTHID CURRENT_USER as
2  /* $Header: WMSADLOS.pls 115.4 2003/11/03 21:18:37 joabraha noship $ */
3 --
4 -- --------------------------------------------------------------------------------------
5 -- |----------------------------< get_seed_dest_loc >------------------------------------|
6 -- --------------------------------------------------------------------------------------
7 -- Note about the Input parameters:
8 -- The p_mode is the input parameters which takes in the call mode for the API.
9 -- Valid call modes are as follows:
10 -- 1 =  Selection Mode.
11 -- 2 =  Verification Mode.
12 -- When called with mode of 'Selection', the API returns a locator ID while in the
13 -- 'Verification' mode, the API send out a status verifying if the locator ID passed
14 -- is valid or otherwise.
15 Procedure get_seed_dest_loc (
16    x_return_status        out nocopy varchar2
17 ,  x_msg_count            out nocopy number
18 ,  x_msg_data             out nocopy varchar2
19 ,  x_locator_id           out nocopy number
20 ,  x_zone_id              out nocopy number
21 ,  x_subinventory_code    out nocopy varchar2
22 ,  x_loc_valid            out nocopy varchar2
23 ,  p_mode                 in  number default 1
24 ,  p_task_id              in  number
25 ,  p_activity_type_id     in  number default 1
26 ,  p_locator_id           in  number default null
27 ,  p_item_id              in  number default null
28 ,  p_api_version          in  number
29 ,  p_init_msg_list        in  varchar2
30 ,  p_commit               in  varchar2
31 );
32 --
33 --
34 Procedure trace(
35    p_message  in varchar2
36 ,  p_level    in number default 4
37 );
38 --
39 --
40 
41 end wms_atf_dest_loc;