DBA Data[Home] [Help]

PACKAGE: APPS.BSC_UPGRADES_GENERIC

Source


1 PACKAGE  BSC_UPGRADES_GENERIC AUTHID CURRENT_USER AS
2   /* $Header: BSCUPGNS.pls 120.0 2005/05/31 19:05:35 appldev noship $ */
3 ---  Copyright (c) 2000 Oracle Corporation, Redwood Shores, CA, USA
4 ---  All rights reserved.
5 ---
6 ---==========================================================================
7 ---  FILENAME
8 ---
9 ---     BSCUPGNS.pls
10 ---
11 ---  DESCRIPTION
12 ---     Package body File for Upgrade scripts on BSC side. bscup.sql will
13 --      call APIs from this package.
14 ---
15 ---  NOTES
16 ---
17 ---  HISTORY
18 ---
19 ---  05-Oct-2004 ankgoel  bug#3933075  Created
20 ---===========================================================================
21 
22 c_kpi_label       CONSTANT VARCHAR2(7) := '<kpi>';
23 c_function_id     CONSTANT NUMBER      := -1;
24 
25 FUNCTION Upgrade_Role_To_Tabs
26 (
27   x_error_msg  OUT NOCOPY VARCHAR2
28 ) RETURN BOOLEAN;
29 
30 FUNCTION Upgrade_Tab_View_Functions
31 (
32    x_error_msg  OUT NOCOPY VARCHAR2
33 ) RETURN BOOLEAN;
34 
35 FUNCTION Upgrade_Tab_View_Kpi_labels
36 (
37    x_error_msg  OUT NOCOPY VARCHAR2
38 ) RETURN BOOLEAN;
39 
40 
41 END BSC_UPGRADES_GENERIC;
42