DBA Data[Home] [Help]

PACKAGE BODY: APPS.AMS_EVENTHEADER_VUHK

Source


1 PACKAGE BODY AMS_EventHeader_VUHK AS
2 /* $Header: amsievhb.pls 115.3 2002/11/16 00:41:22 dbiswas ship $ */
3 
4 
5 -----------------------------------------------------------
6 -- PROCEDURE
7 --    create_EventHeader_pre
8 --
9 -- HISTORY
10 --    10/01/99  holiu  Created.
11 ------------------------------------------------------------
12 PROCEDURE create_EventHeader_pre(
13    x_evh_rec       IN OUT NOCOPY AMS_EventHeader_PVT.evh_rec_type,
14    x_return_status  OUT NOCOPY VARCHAR2
15 )
16 IS
17 BEGIN
18    x_return_status := FND_API.g_ret_sts_success;
19    -- vertical industry to add the customization codes here
20    -- for pre processing
21 END;
22 
23 
24 -----------------------------------------------------------
25 -- PROCEDURE
26 --    create_EventHeader_post
27 --
28 -- HISTORY
29 --    10/01/99  holiu  Created.
30 ------------------------------------------------------------
31 PROCEDURE create_EventHeader_post(
32    p_evh_rec       IN  AMS_EventHeader_PVT.evh_rec_type,
33    p_evh_id        IN  NUMBER,
34    x_return_status  OUT NOCOPY VARCHAR2
35 )
36 IS
37 BEGIN
38    x_return_status := FND_API.g_ret_sts_success;
39    -- vertical industry to add the customization codes here
40    -- for post processing
41 END;
42 
43 
44 -----------------------------------------------------------
45 -- PROCEDURE
46 --    delete_EventHeader_pre
47 --
48 -- HISTORY
49 --    10/01/99  holiu  Created.
50 ------------------------------------------------------------
51 PROCEDURE delete_EventHeader_pre(
52    x_evh_id        IN OUT NOCOPY NUMBER,
53    x_object_version IN OUT NOCOPY NUMBER,
54    x_return_status  OUT NOCOPY    VARCHAR2
55 )
56 IS
57 BEGIN
58    x_return_status := FND_API.g_ret_sts_success;
59    -- vertical industry to add the customization codes here
60    -- for pre processing
61 END;
62 
63 
64 -----------------------------------------------------------
65 -- PROCEDURE
66 --    delete_EventHeader_post
67 --
68 -- HISTORY
69 --    10/01/99  holiu  Created.
70 ------------------------------------------------------------
71 PROCEDURE delete_EventHeader_post(
72    p_evh_id        IN  NUMBER,
73    p_object_version IN  NUMBER,
74    x_return_status  OUT NOCOPY VARCHAR2
75 )
76 IS
77 BEGIN
78    x_return_status := FND_API.g_ret_sts_success;
79    -- vertical industry to add the customization codes here
80    -- for post processing
81 END;
82 
83 
84 -----------------------------------------------------------
85 -- PROCEDURE
86 --    lock_EventHeader_pre
87 --
88 -- HISTORY
89 --    10/01/99  holiu  Created.
90 ------------------------------------------------------------
91 PROCEDURE lock_EventHeader_pre(
92    x_evh_id        IN OUT NOCOPY NUMBER,
93    x_object_version IN OUT NOCOPY NUMBER,
94    x_return_status  OUT NOCOPY    VARCHAR2
95 )
96 IS
97 BEGIN
98    x_return_status := FND_API.g_ret_sts_success;
99    -- vertical industry to add the customization codes here
100    -- for pre processing
101 END;
102 
103 
104 -----------------------------------------------------------
105 -- PROCEDURE
106 --    lock_EventHeader_post
107 --
108 -- HISTORY
109 --    10/01/99  holiu  Created.
110 ------------------------------------------------------------
111 PROCEDURE lock_EventHeader_post(
112    p_evh_id        IN  NUMBER,
113    p_object_version IN  NUMBER,
114    x_return_status  OUT NOCOPY VARCHAR2
115 )
116 IS
117 BEGIN
118    x_return_status := FND_API.g_ret_sts_success;
119    -- vertical industry to add the customization codes here
120    -- for post processing
121 END;
122 
123 
124 -----------------------------------------------------------
125 -- PROCEDURE
126 --    update_EventHeader_pre
127 --
128 -- HISTORY
129 --    10/01/99  holiu  Created.
130 ------------------------------------------------------------
131 PROCEDURE update_EventHeader_pre(
132    x_evh_rec       IN OUT NOCOPY AMS_EventHeader_PVT.evh_rec_type,
133    x_return_status  OUT NOCOPY    VARCHAR2
134 )
135 IS
136 BEGIN
137    x_return_status := FND_API.g_ret_sts_success;
138    -- vertical industry to add the customization codes here
139    -- for pre processing
140 END;
141 
142 
143 -----------------------------------------------------------
144 -- PROCEDURE
145 --    update_EventHeader_post
146 --
147 -- HISTORY
148 --    10/01/99  holiu  Created.
149 ------------------------------------------------------------
150 PROCEDURE update_EventHeader_post(
151    p_evh_rec       IN  AMS_EventHeader_PVT.evh_rec_type,
152    x_return_status  OUT NOCOPY VARCHAR2
153 )
154 IS
155 BEGIN
156    x_return_status := FND_API.g_ret_sts_success;
157    -- vertical industry to add the customization codes here
158    -- for post processing
159 END;
160 
161 
162 -----------------------------------------------------------
163 -- PROCEDURE
164 --    validate_EventHeader_pre
165 --
166 -- HISTORY
167 --    10/01/99  holiu  Created.
168 ------------------------------------------------------------
169 PROCEDURE validate_EventHeader_pre(
170    x_evh_rec       IN OUT NOCOPY AMS_EventHeader_PVT.evh_rec_type,
171    x_return_status  OUT NOCOPY    VARCHAR2
172 )
173 IS
174 BEGIN
175    x_return_status := FND_API.g_ret_sts_success;
176    -- vertical industry to add the customization codes here
177    -- for pre processing
178 END;
179 
180 
181 -----------------------------------------------------------
182 -- PROCEDURE
183 --    validate_EventHeader_post
184 --
185 -- HISTORY
186 --    10/01/99  holiu  Created.
187 ------------------------------------------------------------
188 PROCEDURE validate_EventHeader_post(
189    p_evh_rec       IN  AMS_EventHeader_PVT.evh_rec_type,
190    x_return_status  OUT NOCOPY VARCHAR2
191 )
192 IS
193 BEGIN
194    x_return_status := FND_API.g_ret_sts_success;
195    -- vertical industry to add the customization codes here
196    -- for post processing
197 END;
198 
199 
200 END AMS_EventHeader_VUHK;