DBA Data[Home] [Help]

PACKAGE: APPS.PAY_IP_ROUTE_SUPPORT

Source


1 PACKAGE pay_ip_route_support AUTHID CURRENT_USER AS
2  /* $Header: pyiprous.pkh 115.1 2002/09/18 12:28:58 jahobbs noship $ */
3  --
4  --
5  -- --------------------------------------------------------------------------
6  -- This returns the start date of the tax year relative to the effective
7  -- date.
8  -- --------------------------------------------------------------------------
9  --
10  FUNCTION tax_year
11  (p_business_group_id NUMBER
12  ,p_effective_date    DATE) RETURN DATE;
13  --
14  --
15  -- --------------------------------------------------------------------------
16  -- This returns the start date of the tax quarter relative to the effective
17  -- date.
18  -- --------------------------------------------------------------------------
19  --
20  FUNCTION tax_quarter
21  (p_business_group_id NUMBER
22  ,p_effective_date    DATE) RETURN DATE;
23  --
24  --
25  -- --------------------------------------------------------------------------
26  -- This returns the start date of the fiscal year relative to the effective
27  -- date.
28  -- --------------------------------------------------------------------------
29  --
30  FUNCTION fiscal_year
31  (p_business_group_id NUMBER
32  ,p_effective_date    DATE) RETURN DATE;
33  --
34  --
35  -- --------------------------------------------------------------------------
36  -- This returns the start date of the fiscal quarter relative to the effective
37  -- date.
38  -- --------------------------------------------------------------------------
39  --
40  FUNCTION fiscal_quarter
41  (p_business_group_id NUMBER
42  ,p_effective_date    DATE) RETURN DATE;
43 END pay_ip_route_support;