DBA Data[Home] [Help]

PACKAGE: APPS.BEN_EXT_RUNRSLT

Source


1 package BEN_EXT_RUNRSLT AUTHID CURRENT_USER as
2 /* $Header: benxrunr.pkh 120.0.12000000.1 2007/01/19 19:29:44 appldev noship $
3 +==============================================================================+
4 |			Copyright (c) 1997 Oracle Corporation                  |
5 |			   Redwood Shores, California, USA                     |
6 |			        All rights reserved.	                         |
7 +==============================================================================+
8 Name :    Extract Run Result Process.
9 Purpose:  Run Result shows the payroll informations after the payroll run has
10           executed. This process handles fields that are related to Element
11 	  entries and Input Value.
12 History:
13         Date           Who             Version    What?
14         ----           ---             -------    -----
15         26 Apr 99      Anusree Sen     115.0      Created.
16         14 May 99      Anusree Sen     115.1      Added Header.
17         14 May 99      Anusree Sen     115.3      Deleted dbms_output.
18 --------------------------------------------------------------------------------
19 */
20 --
21 --
22 
23 PROCEDURE main
24     (                        p_person_id          in number,
25                              p_ext_rslt_id        in number,
26                              p_ext_file_id        in number,
27                              p_data_typ_cd        in varchar2,
28                              p_ext_typ_cd         in varchar2,
29                              p_chg_evt_cd         in varchar2,
30                              p_business_group_id  in number,
31                              p_effective_date     in date);
32 
33 
34 END;