DBA Data[Home] [Help]

PACKAGE: APPS.GMD_CUSTOMER_SPEC_VRS_PVT

Source


1 PACKAGE GMD_CUSTOMER_SPEC_VRS_PVT AUTHID CURRENT_USER AS
2 /* $Header: GMDVCVRS.pls 115.2 2002/11/04 10:28:28 kxhunt noship $ */
3 
4 -- Start of comments
5 --+==========================================================================+
6 --|                   Copyright (c) 1998 Oracle Corporation                  |
7 --|                          Redwood Shores, CA, USA                         |
8 --|                            All rights reserved.                          |
9 --+==========================================================================+
10 --| File Name          : GMDVCVRS.pls                                        |
11 --| Package Name       : GMD_CUSTOMER_SPEC_VRS_PVT                           |
12 --| Type               : Private                                             |
13 --|                                                                          |
14 --| Notes                                                                    |
15 --|    This package contains private layer APIs for Customer VR.             |
16 --|                                                                          |
17 --| HISTORY                                                                  |
18 --|    Chetan Nagar     07-Aug-2002     Created.                             |
19 --|                                                                          |
20 --+==========================================================================+
21 -- End of comments
22 
23 FUNCTION insert_row (
24   p_customer_spec_vrs IN  GMD_CUSTOMER_SPEC_VRS%ROWTYPE
25 , x_customer_spec_vrs OUT NOCOPY GMD_CUSTOMER_SPEC_VRS%ROWTYPE
26 )
27 RETURN BOOLEAN;
28 
29 FUNCTION delete_row (
30   p_spec_vr_id          IN NUMBER
31 , p_last_update_date 	IN  DATE     DEFAULT NULL
32 , p_last_updated_by 	IN  NUMBER   DEFAULT NULL
33 , p_last_update_login 	IN  NUMBER   DEFAULT NULL
34 )
35 RETURN BOOLEAN;
36 
37 FUNCTION lock_row (p_spec_vr_id IN NUMBER)
38 RETURN BOOLEAN;
39 
40 FUNCTION fetch_row (
41   p_customer_spec_vrs IN  GMD_CUSTOMER_SPEC_VRS%ROWTYPE
42 , x_customer_spec_vrs OUT NOCOPY GMD_CUSTOMER_SPEC_VRS%ROWTYPE
43 )
44 RETURN BOOLEAN;
45 
46 END GMD_CUSTOMER_SPEC_VRS_PVT;