DBA Data[Home] [Help]

PACKAGE: APPS.CSP_INV_LOC_ASSIGNMENTS_CUHK

Source


1 PACKAGE csp_inv_loc_assignments_cuhk AUTHID CURRENT_USER AS
2   /* $Header: cspcilas.pls 115.4 2002/11/26 08:07:14 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_PKG_NAME CONSTANT VARCHAR2(30):= 'CSP_INV_LOC_ASSIGNMENT_CUHK';
10     G_FILE_NAME CONSTANT VARCHAR2(12) := 'cspcilas.pls';
11 
12   PROCEDURE create_inventory_location_Pre
13   (
14     px_inv_loc_assignment    IN OUT NOCOPY   CSP_INV_LOC_ASSIGNMENTS_PKG.inv_loc_assignments_rec_type,
15     x_return_status          OUT NOCOPY   VARCHAR2,
16     x_msg_count              OUT NOCOPY   NUMBER,
17     x_msg_data               OUT NOCOPY   VARCHAR2
18   ) ;
19 
20   PROCEDURE  create_inventory_location_post
21   (
22     px_inv_loc_assignment    IN OUT NOCOPY   CSP_INV_LOC_ASSIGNMENTS_PKG.inv_loc_assignments_rec_type,
23     x_return_status          OUT NOCOPY   VARCHAR2,
24     x_msg_count              OUT NOCOPY   NUMBER,
25     x_msg_data               OUT NOCOPY   VARCHAR2
26   ) ;
27 
28   PROCEDURE  Update_inventory_location_pre
29   (
30     px_inv_loc_assignment    IN OUT NOCOPY  CSP_INV_LOC_ASSIGNMENTS_PKG.inv_loc_assignments_rec_type,
31     x_return_status          OUT NOCOPY   VARCHAR2,
32     x_msg_count              OUT NOCOPY   NUMBER,
33     x_msg_data               OUT NOCOPY   VARCHAR2
34   ) ;
35 
36   PROCEDURE  Update_inventory_location_post
37   (
38     px_inv_loc_assignment    IN OUT NOCOPY   CSP_INV_LOC_ASSIGNMENTS_PKG.inv_loc_assignments_rec_type,
39     x_return_status          OUT NOCOPY   VARCHAR2,
40     x_msg_count              OUT NOCOPY   NUMBER,
41     x_msg_data               OUT NOCOPY   VARCHAR2
42   ) ;
43   PROCEDURE  Delete_inventory_location_pre
44   (
45     p_inv_loc_assignment_id  IN   NUMBER,
46     x_return_status          OUT NOCOPY   VARCHAR2,
47     x_msg_count              OUT NOCOPY   NUMBER,
48     x_msg_data               OUT NOCOPY   VARCHAR2
49   ) ;
50   PROCEDURE  Delete_inventory_location_post
51   (
52     p_inv_loc_assignment_id  IN   NUMBER,
53     x_return_status          OUT NOCOPY   VARCHAR2,
54     x_msg_count              OUT NOCOPY   NUMBER,
55     x_msg_data               OUT NOCOPY   VARCHAR2
56   ) ;
57 
58   END csp_inv_loc_assignments_cuhk;