DBA Data[Home] [Help]

PACKAGE: APPS.BEN_PIL_CACHE

Source


1 package ben_pil_cache AUTHID CURRENT_USER as
2 /* $Header: benpilch.pkh 115.2 2003/02/12 12:07:50 rpgupta 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      17-Aug-01	mhoyes       Created.
15   115.1      26-Nov-01	mhoyes     - dbdrv lines.
16   -----------------------------------------------------------------------------
17 */
18 --
19 type g_pil_inst_row is record
20   (per_in_ler_id  ben_per_in_ler.per_in_ler_id%type
21   ,ntfn_dt        ben_per_in_ler.ntfn_dt%type
22   );
23 --
24 procedure PIL_GetPILDets
25   (p_per_in_ler_id in     number
26   ,p_inst_row      in out NOCOPY g_pil_inst_row
27   );
28 --
29 ------------------------------------------------------------------------
30 -- DELETE CACHED DATA
31 ------------------------------------------------------------------------
32 procedure clear_down_cache;
33 --
34 END ben_pil_cache;