DBA Data[Home] [Help]

PACKAGE BODY: APPS.AMS_DELIVKITITEM_VUHK

Source


1 PACKAGE BODY AMS_DelivKitItem_VUHK AS
2 /*$Header: amsikitb.pls 115.1 2002/11/14 00:21:05 musman noship $*/
3 
4 -----------------------------------------------------------
5 -- PACKAGE
6 --
7 ---- Package name     : AMS_DelivKitItem_VUHK
8 -- PURPOSE
9 --    Customer user hook package for AMS_DelivKitItem_PUB.
10 --
11 -- PROCEDURES
12 --  create_DelivKitItem
13 --  update_DelivKitItem
14 --  delete_DelivKitItem
15 --  lock_DelivKitItem
16 -- HISTORY
17 ------------------------------------------------------------
18 -----------------------------------------------------------
19 -- PROCEDURE
20 --    create_DelivKitItem_pre
21 --
22 ------------------------------------------------------------
23 
24 PROCEDURE create_DelivKitItem_pre(
25    x_deliv_kit_item_rec        IN OUT NOCOPY AMS_DelivKitItem_PVT.deliv_kit_item_rec_type,
26    x_return_status   OUT NOCOPY VARCHAR2
27 )
28 IS
29 BEGIN
30    x_return_status := FND_API.g_ret_sts_success;
31    -- customer to add the customization codes here
32    -- for pre processing
33 END;
34 
35 -----------------------------------------------------------
36 -- PROCEDURE
37 --    create_DelivKitItem_post
38 --
39 ------------------------------------------------------------
40 PROCEDURE create_DelivKitItem_post(
41    p_deliv_kit_item_rec         IN  AMS_DelivKitItem_PVT.deliv_kit_item_rec_type,
42    p_deliv_kit_item_id          IN  NUMBER,
43    x_return_status    OUT NOCOPY VARCHAR2
44 )
45 IS
46 BEGIN
47    x_return_status := FND_API.g_ret_sts_success;
48    -- customer to add the customization codes here
49    -- for post processing
50 END;
51 
52 
53 -----------------------------------------------------------
54 -- PROCEDURE
55 --    delete_DelivKitItem_pre
56 --
57 -- PURPOSE
58 --    Customer pre-processing for delete_DelivKitItem.
59 ------------------------------------------------------------
60 PROCEDURE delete_DelivKitItem_pre(
61    x_deliv_kit_item_id            IN OUT NOCOPY NUMBER,
62    x_object_version     IN OUT NOCOPY NUMBER,
63    x_return_status      OUT NOCOPY    VARCHAR2
64 )
65 IS
66 BEGIN
67    x_return_status := FND_API.g_ret_sts_success;
68    -- customer to add the customization codes here
69    -- for pre processing
70 END;
71 
72 -----------------------------------------------------------
73 -- PROCEDURE
74 --    delete_DelivKitItem_post
75 --
76 -- PURPOSE
77 --    Customer post-processing for delete_DelivKitItem.
78 ------------------------------------------------------------
79 PROCEDURE delete_DelivKitItem_post(
80    p_deliv_kit_item_id            IN  NUMBER,
81    p_object_version    IN  NUMBER,
82    x_return_status     OUT NOCOPY VARCHAR2
83 )
84 IS
85 BEGIN
86    x_return_status := FND_API.g_ret_sts_success;
87    -- customer to add the customization codes here
88    -- for pre processing
89 END;
90 
91 -----------------------------------------------------------
92 -- PROCEDURE
93 --    lock_DelivKitItem_pre
94 --
95 -- PURPOSE
96 --    Customer pre-processing for lock_DelivKitItem.
97 ------------------------------------------------------------
98 PROCEDURE lock_DelivKitItem_pre(
99    x_deliv_kit_item_id            IN OUT NOCOPY NUMBER,
100    x_object_version    IN OUT NOCOPY NUMBER,
101    x_return_status     OUT NOCOPY    VARCHAR2
102 )
103 IS
104 BEGIN
105    x_return_status := FND_API.g_ret_sts_success;
106    -- customer to add the customization codes here
107    -- for pre processing
108 END;
109 
110 -----------------------------------------------------------
111 -- PROCEDURE
112 --    lock_DelivKitItem_post
113 --
114 -- PURPOSE
115 --    Customer post-processing for lock_DelivKitItem.
116 ------------------------------------------------------------
117 PROCEDURE lock_DelivKitItem_post(
118    p_deliv_kit_item_id            IN  NUMBER,
119    p_object_version    IN  NUMBER,
120    x_return_status     OUT NOCOPY VARCHAR2
121 )
122 IS
123 BEGIN
124    x_return_status := FND_API.g_ret_sts_success;
125    -- customer to add the customization codes here
126    -- for pre processing
127 END;
128 
129 -----------------------------------------------------------
130 -- PROCEDURE
131 --    update_DelivKitItem_pre
132 --
133 -- PURPOSE
134 --    Customer pre-processing forupdate_DelivKitItem.
135 ------------------------------------------------------------
136 PROCEDURE update_DelivKitItem_pre(
137    x_deliv_kit_item_rec        IN OUT NOCOPY AMS_DelivKitItem_PVT.deliv_kit_item_rec_type,
138    x_return_status  OUT NOCOPY    VARCHAR2
139 )
140 IS
141 BEGIN
142    x_return_status := FND_API.g_ret_sts_success;
143    -- customer to add the customization codes here
144    -- for pre processing
145 END;
146 
147 
148 -----------------------------------------------------------
149 -- PROCEDURE
150 --    update_DelivKitItem_post
151 --
152 -- PURPOSE
153 --    Customer post-processing for update_DelivKitItem.
154 ------------------------------------------------------------
155 PROCEDURE update_DelivKitItem_post(
156    p_deliv_kit_item_rec        IN  AMS_DelivKitItem_PVT.deliv_kit_item_rec_type,
157    x_return_status  OUT NOCOPY VARCHAR2
158 )
159 IS
160 BEGIN
161    x_return_status := FND_API.g_ret_sts_success;
162    -- customer to add the customization codes here
163    -- for pre processing
164 END;
165 
166 -----------------------------------------------------------
167 -- PROCEDURE
168 --   validate_DelivKitItem_pre
169 --
170 -- PURPOSE
171 --    Customer pre-processing for validate_DelivKitItem.
172 ------------------------------------------------------------
173 PROCEDURE validate_DelivKitItem_pre(
174    x_deliv_kit_item_rec        IN OUT NOCOPY AMS_DelivKitItem_PVT.deliv_kit_item_rec_type,
175    x_return_status  OUT NOCOPY    VARCHAR2
176 )
177 IS
178 BEGIN
179    x_return_status := FND_API.g_ret_sts_success;
180    -- customer to add the customization codes here
181    -- for pre processing
182 END;
183 
184 
185 -----------------------------------------------------------
186 -- PROCEDURE
187 --    validate_DelivKitItem_post
188 --
189 -- PURPOSE
190 --    Customer post-processing for validate_DelivKitItem.
191 ------------------------------------------------------------
192 PROCEDURE validate_DelivKitItem_post(
193    p_deliv_kit_item_rec        IN  AMS_DelivKitItem_PVT.deliv_kit_item_rec_type,
194    x_return_status  OUT NOCOPY VARCHAR2
195 )
196 IS
197 BEGIN
198    x_return_status := FND_API.g_ret_sts_success;
199    -- customer to add the customization codes here
200    -- for pre processing
201 END;
202 
203 
204 
205 End AMS_DelivKitItem_VUHK;