DBA Data[Home] [Help]

PACKAGE: APPS.CSP_INV_LOC_ASSIGNMENTS_IUHK

Source


1 PACKAGE csp_inv_loc_assignments_iuhk AUTHID CURRENT_USER AS
2  /* $Header: cspiilas.pls 115.4 2002/11/26 05:43:16 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    G_PKG_NAME CONSTANT VARCHAR2(30):= 'CSP_INV_LOC_ASSIGNMENT_IUHK';
9     G_FILE_NAME CONSTANT VARCHAR2(12) := 'cspiilas.pls';
10   PROCEDURE create_inventory_location_Pre
11   (
12     x_return_status          out nocopy   VARCHAR2
13   );
14 
15 
16   PROCEDURE  create_inventory_location_post
17   (
18     x_return_status          out nocopy   VARCHAR2
19   ) ;
20 
21   PROCEDURE  Update_inventory_location_pre
22  (
23     x_return_status          out nocopy   VARCHAR2
24   ) ;
25 
26 
27   PROCEDURE  Update_inventory_location_post
28   (
29     x_return_status          out nocopy   VARCHAR2
30   ) ;
31   PROCEDURE  Delete_inventory_location_pre
32   (
33     x_return_status          out nocopy   VARCHAR2
34   ) ;
35   PROCEDURE  Delete_inventory_location_post
36   (
37     x_return_status          out nocopy   VARCHAR2
38   ) ;
39 
40   END csp_inv_loc_assignments_iuhk;