DBA Data[Home] [Help]

PACKAGE BODY: APPS.HR_THIRD_PARTY_INTERFACE_PKG

Source


1 PACKAGE BODY HR_THIRD_PARTY_INTERFACE_PKG AS
2 /* $Header: petpipkg.pkb 120.0 2005/05/31 22:16:14 appldev noship $ */
3 --
4 --
5 -----------------------------------------------------------------------
6 procedure set_extract_date (p_payroll_extract_date date)
7 ------------------------------------------------------------------------
8 is
9 -- This procedure sets the g_payroll_extract_date variable to the given date.
10 --
11 begin
12    g_payroll_extract_date := p_payroll_extract_date;
13 --
14 end set_extract_date;
15 --
16 -----------------------------------------------------------------------
17 function get_extract_date return date
18 ------------------------------------------------------------------------
19 is
20 -- This function returns the g_payroll_extract_date set by the call to
21 -- set_payroll_extract_date. If set_payroll_extract_date is never called, it
22 -- returns the sysdate as g_payroll_extract_date is initialized to
23 -- sysdate.
24 --
25 begin
26   --
27   RETURN g_payroll_extract_date;
28   --
29 end get_extract_date;
30 --
31 end HR_THIRD_PARTY_INTERFACE_PKG ;