DBA Data[Home] [Help]

PACKAGE: APPS.WMS_ARCHIVE_PVT

Source


1 package wms_archive_pvt AUTHID CURRENT_USER as
2  /* $Header: WMSTARCS.pls 115.0 2004/04/01 02:55:08 joabraha noship $ */
3 --
4 --
5 Procedure trace(
6    p_message  in varchar2
7 ,  p_level    in number default 4
8 );
9 --
10 --
11 Procedure archive_tasks(
12    x_errbuf           out nocopy varchar2
13 ,  x_retcode          out nocopy number
14 ,  p_org_id           in         number
15 ,  p_purge_days       in         number
16 ,  p_archive_batches  in         number
17 );
18 --
19 --
20 Procedure archive_tasks_worker(
21    x_errbuf           out nocopy varchar2
22 ,  x_retcode          out nocopy number
23 ,  p_from_date        in         varchar2
24 ,  p_to_date          in         varchar2
25 ,  p_org_id           in         number
26 );
27 --
28 --
29 Procedure unarchive_tasks(
30    x_errbuf           out nocopy varchar2
31 ,  x_retcode          out nocopy number
32 ,  p_from_date        in         varchar2
33 ,  p_to_date          in         varchar2
34 ,  p_org_id           in         number
35 ,  p_unarch_batches   in         number
36 );
37 --
38 --
39 Procedure unarchive_tasks_worker(
40    x_errbuf           out nocopy varchar2
41 ,  x_retcode          out nocopy number
42 ,  p_from_date        in         varchar2
43 ,  p_to_date          in         varchar2
44 ,  p_org_id           in         number
45 );
46 --
47 --
48 end wms_archive_pvt;