DBA Data[Home] [Help]

PACKAGE: APPS.WMS_CUSTAPI_CONC_PKG

Source


1 package wms_custapi_conc_pkg AUTHID CURRENT_USER as
2  /* $Header: WMSCCPKS.pls 120.1 2006/08/10 11:31:17 bradha noship $ */
3 --
4 --
5 -- ---------------------------------------------------------------------------|
6 -- |-------------------------------< trace >----------------------------------|
7 -- ---------------------------------------------------------------------------|
8 -- {Start Of Comments}
9 --
10 -- Description:
11 -- Wrapper around the tracing utility.
12 --
13 -- Prerequisites:
14 -- None
15 --
16 -- In Parameters:
17 --   Name        Reqd Type     Description
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 
34 Procedure trace(
35    p_message  in varchar2
36 ,  p_level    in number default 4
37 );
38 --
39 -- -------------------------------------------------------------------------------------------
40 -- |---------------------------< gen_wms_custapi_sys_objs >-----------------------------------|
41 -- -------------------------------------------------------------------------------------------
42 -- {Start Of Comments}
43 --
44 -- Description:
45 --   Wrapper procedure to call API to create the spec and body for the system generated
46 --   package.
47 --
48 -- Prerequisites:
49 --   None
50 --
51 -- In Parameters:
52 --   Name                Reqd Type     Description
53 --   ----------------    ---- -------- -------------------
54 --   none
55 --
56 --
57 -- Post success:
58 --   The system package spec(s)/body(s) are created in the database.
59 --
60 -- Post Failure:
61 --   Unexpected Oracle errors and serious application errors will be raised
62 --   as a PL/SQL exception. When these errors are raised this procedure will
63 --   abort the processing.
64 --
65 -- Access Status:
66 --   Internal Development Use Only.
67 --
68 -- {End Of Comments}
69 --
70 Procedure gen_wms_custapi_sys_objs(
71    errbuf   out NOCOPY varchar2
72 ,  retcode  out NOCOPY number
73 );
74 --
75 -- -------------------------------------------------------------------------------------------
76 -- |---------------------------< create_delete_api_calls >------------------------------------|
77 -- -------------------------------------------------------------------------------------------
78 -- {Start Of Comments}
79 --
80 -- Description:
81 --   Wrapper procedure to call API to create or delete Custom API hook calls.
82 --
83 -- Prerequisites:
84 --   None
85 --
86 -- In Parameters:
87 --   Name                Reqd Type     Description
88 --   ----------------    ---- -------- -------------------
89 --   none
90 --
91 --
92 -- Post success:
93 --   The system package spec(s)/body(s) are created in the database.
94 --
95 -- Post Failure:
96 --   Unexpected Oracle errors and serious application errors will be raised
97 --   as a PL/SQL exception. When these errors are raised this procedure will
98 --   abort the processing.
99 --
100 -- Access Status:
101 --   Internal Development Use Only.
102 --
103 -- {End Of Comments}
104 --
105 Procedure create_delete_api_calls(
106    errbuf                 out NOCOPY varchar2
107 ,  retcode                out NOCOPY number
108 ,  p_hook_short_name_id   in  number
109 ,  p_call_package      	  in  varchar2
110 ,  p_call_procedure       in  varchar2
111 ,  p_call_description     in  varchar2
112 ,  p_effective_to_date 	  in  varchar2
113 ,  p_mode                 in  varchar2
114 );
115 --
116 end wms_custapi_conc_pkg;