DBA Data[Home] [Help]

PACKAGE: APPS.BEN_PIL_OBJECT

Source


1 package ben_pil_object AUTHID CURRENT_USER as
2 /* $Header: bepilobj.pkh 120.0 2005/05/28 10:50:20 appldev noship $ */
3 --
4 /*
5 +==============================================================================+
6 |                        Copyright (c) 1997 Oracle Corporation                 |
7 |                           Redwood Shores, California, USA                    |
8 |                               All rights reserved.                           |
9 +==============================================================================+
10 --
11 Name
12 	Person Object Caching Routine
13 Purpose
14 	This package is used to return person object information.
15 History
16   Version    Date       Who        What?
17   ---------  ---------  ---------- --------------------------------------------
18   115.0      11-Jun-99  gperry     Created.
19   115.1      20-Mar-02  vsethi     added dbdrv lines
20   -----------------------------------------------------------------------------
21 */
22 --
23 -- Global type declarations.
24 --
25 type g_cache_pil_table is table of ben_per_in_ler%rowtype index
26   by binary_integer;
27 --
28 g_cache_pil_rec         g_cache_pil_table;
29 --
30 -- Latest record caches
31 --
32 g_cache_last_pil_rec    ben_per_in_ler%rowtype;
33 --
34 -- Set object routines
35 --
36 procedure set_object
37   (p_rec in out nocopy ben_per_in_ler%rowtype
38   );
39 --
40 -- Get object routines
41 --
42 procedure get_object
43   (p_per_in_ler_id in  number
44   ,p_rec           in out nocopy ben_per_in_ler%rowtype
45   );
46 --
47 procedure clear_down_cache;
48 --
49 end ben_pil_object;