DBA Data[Home] [Help]

PACKAGE: APPS.WMS_ATF_DESTINATION_LPN

Source


1 package wms_atf_destination_lpn AUTHID CURRENT_USER as
2  /* $Header: WMSADLPS.pls 115.5 2003/11/03 21:19:08 joabraha noship $ */
3 --
4 -- ------------------------------------------------------------------------------------
5 -- |---------------------< trace >-----------------------------------------------------|
6 -- ------------------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 -- Wrapper around the tracing utility.
11 --
12 -- Prerequisites:
13 -- None
14 --
15 -- In Parameters:
16 --   Name        Reqd Type     Description
17 --   ----------  ---- -------- ---------------------------------------
18 --   p_message   Yes  varchar2 Message to be displayed in the log file.
19 --   p_prompt    Yes  varchar2 Prompt.
20 --   p_level     No   number   Level.
21 --
22 -- Post Success:
23 --   None.
24 --
25 -- Post Failure:
26 --   None
27 --
28 -- Access Status:
29 --   Internal Development Use Only.
30 --
31 -- {End Of Comments}
32 --
33 Procedure trace(
34    p_message  in varchar2
35 ,  p_level    in number  default 4
36 );
37 --
38 -- --------------------------------------------------------------------------------------
39 -- |----------------------------< Get_Destination_LPN >----------------------------------|
40 -- --------------------------------------------------------------------------------------
41 Procedure get_seed_dest_lpn (
42    x_return_status        out nocopy varchar2
43 ,  x_msg_count            out nocopy number
44 ,  x_msg_data             out nocopy varchar2
45 ,  x_lpn_id               out nocopy number
46 ,  x_lpn_valid            out nocopy varchar2
47 ,  p_mode                 in  number default 1
48 ,  p_task_id              in  number
49 ,  p_activity_type_id     in  number default 1
50 ,  p_lpn_id               in  number default null
51 ,  p_item_id              in  number default null
52 ,  p_subinventory_code    in  varchar2
53 ,  p_locator_id           in  number
54 ,  p_api_version         in  number
55 ,  p_init_msg_list       in  varchar2
56 ,  p_commit              in  varchar2
57 );
58 
59 end wms_atf_destination_lpn;