DBA Data[Home] [Help]

PACKAGE: APPS.BIS_GENERIC_PLANNER_PVT

Source


1 PACKAGE BIS_GENERIC_PLANNER_PVT AUTHID CURRENT_USER AS
2 /* $Header: BISVGPLS.pls 115.13 2002/12/16 10:25:50 rchandra ship $ */
3 /*
4 REM +=======================================================================+
5 REM |    Copyright (c) 1998 Oracle Corporation, Redwood Shores, CA, USA     |
6 REM |                         All rights reserved.                          |
7 REM +=======================================================================+
8 REM | FILENAME                                                              |
9 REM |     BISVGPLS.pls                                                      |
10 REM |                                                                       |
11 REM | DESCRIPTION                                                           |
12 REM |     Private API for the Generic Planning Service
13 REM |
14 REM | NOTES                                                                 |
15 REM |                                                                       |
16 REM | HISTORY                                                               |
17 REM |     APR-2000 irchen   Creation
18 REM +=======================================================================+
19 */
20 --
21 -- Constants
22 --
23 G_COMP_RESULT_NORMAL        CONSTANT VARCHAR2(100) := 'NORMAL';
24 G_COMP_RESULT_OUT_OF_RANGE1 VARCHAR2(100) := BIS_TARGET_PUB.G_EXCEPTION_RANGE1;
25 G_COMP_RESULT_OUT_OF_RANGE2 VARCHAR2(100) := BIS_TARGET_PUB.G_EXCEPTION_RANGE2;
26 G_COMP_RESULT_OUT_OF_RANGE3 VARCHAR2(100) := BIS_TARGET_PUB.G_EXCEPTION_RANGE3;
27 
28 --
29 -- Procedures
30 --
31 Procedure Service_Planner_Request
32 ( p_measure_instance      IN BIS_MEASURE_PUB.Measure_Instance_type
33 , p_dim_level_value_tbl	  IN BIS_DIM_LEVEL_VALUE_PUB.Dim_Level_Value_Tbl_Type
34 , p_alert_type	    	  IN VARCHAR2 := NULL
35 , p_alert_level	    	  IN VARCHAR2 := NULL
36 );
37 
38 Procedure Service_Planner_Request
39 ( p_measure_instance      IN BIS_MEASURE_PUB.Measure_Instance_type
40 , p_dim_level_value_tbl	  IN BIS_DIM_LEVEL_VALUE_PUB.Dim_Level_Value_Tbl_Type
41 , P_notify_set	          IN VARCHAR2
42 , p_alert_type	    	  IN VARCHAR2
43 , p_alert_level	    	  IN VARCHAR2
44 );
45 
46 Procedure Compare_Values
47 ( p_target_rec		IN BIS_TARGET_PUB.Target_Rec_Type
48 , p_actual_rec		IN BIS_ACTUAL_PUB.Actual_Rec_Type
49 , x_comparison_result	OUT NOCOPY VARCHAR2
50 );
51 
52 END BIS_GENERIC_PLANNER_PVT;