DBA Data[Home] [Help]

PACKAGE: APPS.PAY_IE_PAYROLL_ACTIONS_PKG

Source


1 PACKAGE PAY_IE_PAYROLL_ACTIONS_PKG AUTHID CURRENT_USER AS
2 /* $Header: pyiesoe.pkh 120.0.12000000.1 2007/01/17 20:59:16 appldev noship $ */
3 /*
4 **
5 **  Copyright (C) 1999 Oracle Corporation
6 **  All Rights Reserved
7 **
8 **  SOE  package
9 **
10 **  Change List
11 **  ===========
12 **
13 **  Date        Author   Reference Description
14 **  -----------+--------+---------+-------------
15 **  06 NOV 2001 kavenkat  N/A        Created
16 **  05 DEC 2001 gpadmasa  N/A        Added dbdrv Commands
17 **  10 JAN 2002 gpadmasa  N/A        Modified the Fetch_Action-Id Procedures
18 **				     to handle Iterative Engine Run Results.
19 **  12 DEC 2002 viviswan             nocopy changes done
20 -------------------------------------------------------------------------------
21 */
22 procedure fetch_action_id(p_session_date             in     date,
23 			     p_payroll_exists           in out nocopy varchar2,
24 			     p_assignment_action_id     in out nocopy number,
25 			     p_run_assignment_action_id in out nocopy number,
26 			     p_paye_prsi_action_id      out nocopy number,
27 			     p_assignment_id            in     number,
28 			     p_payroll_action_id        in out nocopy number,
29 			     p_date_earned              in out nocopy varchar2);
30 procedure fetch_action_id (  p_assignment_action_id     in out nocopy number,
31 			     p_run_assignment_action_id in out nocopy number,
32 			     p_paye_prsi_action_id         out nocopy number,
33 			     p_assignment_id        	in out nocopy number
34 			  );
35 function business_currency_code
36     (p_business_group_id  in hr_organization_units.business_group_id%type)
37   return fnd_currencies.currency_code%type;
38 
39 
40 END PAY_IE_PAYROLL_ACTIONS_PKG ;