DBA Data[Home] [Help]

PACKAGE: APPS.GHR_VALIDATE_PAYWSMEE

Source


1 PACKAGE ghr_validate_paywsmee AUTHID CURRENT_USER AS
2 /* $Header: ghrwsmee.pkh 120.0.12010000.3 2009/05/26 12:07:04 utokachi noship $ */
3   --
4   -- Pass in WGI due date and this function will return the WGI Pay date
5   -- The WGI Pay date is the same as the due date if the due date is the
6   -- start of a pay period otherwise it is the start of the next pay period.
7   FUNCTION get_wgi_pay_date (p_wgi_due_date IN DATE
8                             ,p_payroll_id   IN NUMBER)
9     return DATE;
10   --
11   -- This function checks if the date passed in is the sart of a pay_period
12   -- for the given payroll
13   -- Returns TRUE if it is.
14   FUNCTION check_date_start_of_pay_period (p_date       IN DATE
15                                           ,p_payroll_id IN NUMBER)
16     RETURN BOOLEAN;
17   --
18 END ghr_validate_paywsmee;