DBA Data[Home] [Help]

PACKAGE: APPS.PAY_US_PDT_VALIDATE

Source


1 PACKAGE pay_us_pdt_validate AUTHID CURRENT_USER as
2 /* $Header: pypdtuvd.pkh 115.0 99/07/17 06:21:33 porting ship $ */
3 
4 /*
5 /*
6    ******************************************************************
7    *                                                                *
8    * Copyright (C) 1993 Oracle Corporation.                         *
9    * All rights reserved.                                           *
10    *                                                                *
11    * This material has been provided pursuant to an agreement       *
12    * containing restrictions on its use.  The material is also      *
13    * protected by copyright law.  No part of this material may      *
14    * be copied or distributed, transmitted or transcribed, in       *
15    * any form or by any means, electronic, mechanical, magnetic,    *
16    * manual, or otherwise, or disclosed to third parties without    *
17    * the express written permission of Oracle Corporation,          *
18    * 500 Oracle Parkway, Redwood City, CA, 94065.                   *
19    *                                                                *
20    ******************************************************************
21 
22     Name : pay_us_pdt_validate
23 
24     Description : This package contains the procedure validate_business_rules,
25                   which is used for user_defined validation.  The procedure
26 		  is called from the PayMIX package.
27 
28     Uses : hr_utility
29 
30     Change List
31     -----------
32     Date        Name      Vers  Bug No  Description
33     ----        ----      ----  ------  -----------
34     11-MAR-96   RAMURTHY   1.0  345572  Created.
35 
36 
37 */
38 
39 PROCEDURE validate_business_rules(
40           p_batch_type          IN              VARCHAR2,
41           p_process_mode        IN              VARCHAR2,
42           p_num_warnings        IN OUT          NUMBER,
43           p_batch_id            IN              NUMBER,
44           p_line_id             IN              NUMBER,
45           p_period_start_date   IN              DATE,
46           p_period_end_date     IN              DATE,
47           p_num_inp_values      IN              NUMBER,
48           p_line_status         IN OUT          VARCHAR2,
49           p_assignment_id       IN              NUMBER,
50           p_element_type_id     IN              NUMBER,
51           p_hours_worked        IN              NUMBER,
52           p_date_earned         IN              DATE);
53 
54 END pay_us_pdt_validate;