DBA Data[Home] [Help]

PACKAGE BODY: APPS.CSP_INV_LOC_ASSIGNMENTS_IUHK

Source


1 PACKAGE BODY csp_inv_loc_assignments_iuhk  AS
2  /* $Header: cspiilab.pls 115.3 2002/11/26 05:42:41 hhaugeru noship $ */
3 
4   /*****************************************************************************************
5    This is the Vertical Industry User Hook API.
6    The Vertical Industry can add customization procedures here for Pre and Post Processing.
7    ******************************************************************************************/
8 
9     G_FILE_NAME CONSTANT VARCHAR2(12) := 'cspiilab.pls';
10   PROCEDURE create_inventory_location_Pre
11   (
12     x_return_status          out nocopy   VARCHAR2
13   ) IS
14   BEGIN
15     csp_ship_to_address_pvt.call_internal_hook('CSP_INV_LOC_ASSIGNMENTS_IUHK','INSERT_ROW','B',x_return_status);
16   END create_inventory_location_Pre;
17 
18 
19   PROCEDURE  create_inventory_location_post
20   (
21     x_return_status          out nocopy   VARCHAR2
22   ) IS
23   BEGIN
24     csp_ship_to_address_pvt.call_internal_hook('CSP_INV_LOC_ASSIGNMENTS_IUHK','INSERT_ROW','A',x_return_status);
25   END create_inventory_location_post;
26 
27   PROCEDURE  Update_inventory_location_pre
28  (
29     x_return_status          out nocopy   VARCHAR2
30   ) IS
31   BEGIN
32     csp_ship_to_address_pvt.call_internal_hook('CSP_INV_LOC_ASSIGNMENTS_IUHK','UPDATE_ROW','B',x_return_status);
33   END Update_inventory_location_pre;
34 
35 
36   PROCEDURE  Update_inventory_location_post
37   (
38     x_return_status          out nocopy   VARCHAR2
39   ) IS
40   BEGIN
41     csp_ship_to_address_pvt.call_internal_hook('CSP_INV_LOC_ASSIGNMENTS_IUHK','UPDATE_ROW','A',x_return_status);
42   END Update_inventory_location_post;
43   PROCEDURE  Delete_inventory_location_pre
44   (
45     x_return_status          out nocopy   VARCHAR2
46   ) IS
47   BEGIN
48     csp_ship_to_address_pvt.call_internal_hook('CSP_INV_LOC_ASSIGNMENTS_IUHK','DELETE_ROW','B',x_return_status);
49   END Delete_inventory_location_pre;
50   PROCEDURE  Delete_inventory_location_post
51   (
52     x_return_status          out nocopy   VARCHAR2
53   ) IS
54   BEGIN
55     csp_ship_to_address_pvt.call_internal_hook('CSP_INV_LOC_ASSIGNMENTS_IUHK','DELETE_ROW','A',x_return_status);
56   END Delete_inventory_location_post;
57 
58   END csp_inv_loc_assignments_iuhk;