DBA Data[Home] [Help]

PACKAGE: APPS.BEN_LOCATION_OBJECT

Source


1 package ben_location_object AUTHID CURRENT_USER as
2 /* $Header: benlocch.pkh 120.0 2005/05/28 09:06:56 appldev noship $ */
3 --
4 /*
5 +==============================================================================+
6 |                        Copyright (c) 1997 Oracle Corporation                 |
7 |                           Redwood Shores, California, USA                    |
8 |                               All rights reserved.                           |
9 +==============================================================================+
10 --
11 History
12   Version    Date       Who        What?
13   ---------  ---------  ---------- --------------------------------------------
14   115.0      08-Jun-99  bbulusu    Created.
15   115.1      05-Aug-99  gperry     Added last record cached logic.
16   115.2      16-Aug-99  GPERRY     Added nocopy compiler directive.
17   115.3      06 May 00  RChase     Added addtional NOCOPY compiler directives.
18   115.4      12 Dec 01  Tmathers   dos2unix for 2128462.
19   -----------------------------------------------------------------------------
20 */
21 --
22 type g_cache_loc_table is table of hr_locations_all%rowtype index
23   by binary_integer;
24 --
25 g_cache_loc_rec         g_cache_loc_table;
26 g_cache_last_loc_rec    hr_locations_all%rowtype;
27 --
28 -- Set object routines
29 --
30 procedure set_object
31   (p_rec in out nocopy hr_locations_all%rowtype);
32 --
33 procedure set_loc_object
34   (p_location_id       in number,
35    p_rec               in out nocopy hr_locations_all%rowtype);
36 --
37 -- Get object routines
38 --
39 procedure get_object
40   (p_location_id in  number,
41    p_rec         in out nocopy hr_locations_all%rowtype);
42 --
43 procedure clear_down_cache;
44 --
45 end ben_location_object;