DBA Data[Home] [Help]

PACKAGE: APPS.BSC_AOP_TPLATE

Source


1 PACKAGE BSC_AOP_TPLATE AUTHID CURRENT_USER AS
2 /* $Header: BSCUAOPS.pls 115.4 2003/01/14 23:41:40 meastmon ship $ */
3 
4 --
5 -- Global Variables
6 --
7 
8 BSC_AOP_ERROR		Exception;
9 
10 /*===========================================================================+
11 |
12 |   Name:          Create_Analysis_Options
13 |
14 |   Description:   To create analysis options for P and L KPI
15 |
16 |   History:
17 |     	02-APR-1999   Alex Yang             Created.
18 |    12/21/1999	  Henry Camacho	Modified to Model 4.0
19 +============================================================================*/
20 
21 Function Create_Analysis_Options  Return Boolean;
22 
23 
24 /*===========================================================================+
25 |
26 |   Name:          Create_Option_Relations
27 |
28 |   Description:   To configue analysis options
29 |                  The following tables store analysis option metadata,
30 |
31 |                  * analysis option tables:
32 |
33 |	    		MPROJ_FIELDS
34 |			MSYS_UNIQUE_LIST_OF_VARS
35 |
36 |                  * operation field tables:
37 |
38 |			MPROJ_DATA
39 |			MPROJ_DATA_LANGUAGE
40 |			MPROJ_MPROJ_DATA_CALC
41 |
42 |   Parameters:
43 |	x_num_of_options	number of analysis options
44 |	x_num_of_data		number of data fields
45 |
46 |   History:
47 |     	02-APR-1999   Alex Yang             Created.
48 |    12/21/1999	  Henry Camacho	Modified to Model 4.0
49 +============================================================================*/
50 Function Create_Option_Relations(
51 		x_num_of_options	IN	Number,
52 		x_num_of_data		IN	Number
53 ) Return Boolean;
54 
55 
56 END BSC_AOP_TPLATE;