DBA Data[Home] [Help]

PACKAGE: APPS.BIS_GRAPH_REGION_UI

Source


1 PACKAGE  BIS_GRAPH_REGION_UI AUTHID CURRENT_USER AS
2 /* $Header: BISCHRUS.pls 120.1 2006/02/02 02:06:51 nbarik noship $ */
3 ---  Copyright (c) 2000 Oracle Corporation, Redwood Shores, CA, USA
4 ---  All rights reserved.
5 ---
6 ---==========================================================================
7 ---  FILENAME
8 ---
9 ---     BISCHRUS.pls
10 ---
11 ---  DESCRIPTION
12 ---     Package Specification File with data manipulation functions
13 ---     for the three html forms in which to
14 ---     enter parameters to be stored for a PHP Chart
15 ---
16 ---  NOTES
17 ---
18 ---  HISTORY
19 ---
20 ---  20-Jun-2000 Walid.Nasrallah Created
21 ---  05-Oct-2000 Walid.Nasrallah moved "WHO" column defintion to database
22 ---  10-Oct-2000 Walid.Nasrallah defined cookie domain name as global const
23 ---
24 ---
25 ---
26 ---===========================================================================
27 
28 G_COOKIE_NAME     constant varchar2(100) := 'BIS_GRAPH_REGION_DEFINE';
29 G_COOKIE_PREFIX   constant varchar2(100) := 'GOOD_COOKIE';
30 G_SEP             constant varchar2(10)  := '*';
31 G_DOMAIN          constant varchar2(2000) := '.oracle.com';
32 
33 -- *********************************************
34 -- PROCEDURES to preserve session_user state
35 -- *****************************************
36 
37 FUNCTION def_mode_query
38   return boolean;
39 
40 PROCEDURE def_mode_set
41   (cookie_code   IN pls_integer);
42 
43 PROCEDURE def_mode_get
44   (  p_session_id    IN PLS_INTEGER
45    , x_record        OUT NOCOPY BIS_USER_TREND_PLUGS%ROWTYPE
46     );
47 
48 PROCEDURE def_mode_clear
49   (p_coded_string  IN  varchar2);
50 
51 
52 PROCEDURE Review_Chart_Action
53   (  p_where               in  PLS_INTEGER
54    , p_plug_id             in  PLS_INTEGER
55    , p_user_id             in  PLS_INTEGER
56    , p_function_id         in  PLS_INTEGER
57    , p_responsibility_id   in  PLS_INTEGER
58    , p_chart_user_title    in  VARCHAR2
59    , p_parameter_string    in  VARCHAR2
60      );
61 
62 END BIS_GRAPH_REGION_UI;