DBA Data[Home] [Help]

PACKAGE: APPS.XLA_ENVIRONMENT_PKG

Source


1 PACKAGE xla_environment_pkg AS
2 /* $Header: xlacmenv.pkh 120.3 2003/02/22 18:59:48 svjoshi ship $ */
3 /*======================================================================+
4 |             Copyright (c) 2001-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_environment_pkg                                                |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    XLA Environment Package                                            |
13 |                                                                       |
14 | HISTORY                                                               |
15 |    08-Feb-01 P. Labrevois    Created                                  |
16 |                                                                       |
17 +======================================================================*/
18 
19 /*======================================================================+
20 |                                                                       |
21 | Public Release informations                                           |
22 |                                                                       |
23 +======================================================================*/
24 g_release_name                 VARCHAR2(50);
25 g_mapps_flag                   BOOLEAN    := FALSE;
26 
27 /*======================================================================+
28 |                                                                       |
29 | Public Port-specific informations                                     |
30 |                                                                       |
31 +======================================================================*/
32 g_chr_newline                  VARCHAR(9) := '
33 ';
34 
35 /*======================================================================+
36 |                                                                       |
37 | Public WHO informations                                               |
38 |                                                                       |
39 +======================================================================*/
40 g_Login_Id                     INTEGER;
41 g_Prog_Appl_Id                 INTEGER;
42 g_Resp_Appl_Id                 INTEGER;
43 g_Prog_Id                      INTEGER;
44 g_Req_Id                       INTEGER;
45 g_Usr_Id                       INTEGER;
46 
47 /*======================================================================+
48 |                                                                       |
49 | Public Session informations                                           |
50 |                                                                       |
51 +======================================================================*/
52 g_program                      VARCHAR2(255);
53 g_module                       VARCHAR2(255);
54 g_process_id                   VARCHAR2(255);
55 g_session_id                   VARCHAR2(255); -- Char on the NT Platform
56 g_session_name                 VARCHAR2(255);
57 
58 
59 /*======================================================================+
60 |                                                                       |
61 | Public Procedure                                                      |
62 |                                                                       |
63 | refresh                                                               |
64 |                                                                       |
65 | Refresh the environment. It must be called once at the beginning of   |
66 | EVERY concurrent program to refresh the cache variables.              |
67 |                                                                       |
68 +======================================================================*/
69 PROCEDURE Refresh;
70 
71 
72 END xla_environment_pkg;