DBA Data[Home] [Help]

PACKAGE: APPS.PAY_MX_SSAFFL_SALARY

Source


1 PACKAGE pay_mx_ssaffl_salary AS
2 /* $Header: paymxsalary.pkh 120.0 2005/05/29 10:56:15 appldev noship $ */
3 --
4 /*
5 /*
6    ******************************************************************
7    *                                                                *
8    *  Copyright (C) 1992 Oracle Corporation UK Ltd.,                *
9    *                   Chertsey, England.                           *
10    *                                                                *
11    *  All rights reserved.                                          *
12    *                                                                *
13    *  This material has been provided pursuant to an agreement      *
14    *  containing restrictions on its use.  The material is also     *
15    *  protected by copyright law.  No part of this material may     *
16    *  be copied or distributed, transmitted or transcribed, in      *
17    *  any form or by any means, electronic, mechanical, magnetic,   *
18    *  manual, or otherwise, or disclosed to third parties without   *
19    *  the express written permission of Oracle Corporation UK Ltd,  *
20    *  Oracle Park, Bittams Lane, Guildford Road, Chertsey, Surrey,  *
21    *  England.                                                      *
22    *                                                                *
23    ******************************************************************
24 
25    Change List
26    -----------
27    Date         Name        Vers   Bug No   Description
28    -----------  ----------  -----  -------  -----------------------------------
29    03-MAY-2004  kthirmiy    115.0           Created.
30 
31 */
32 --
33   FUNCTION get_start_date( p_business_group_id in varchar2
34                           ,p_tran_gre_id  in varchar2
35                           ,p_gre_id       in varchar2
36                          ) RETURN VARCHAR2 ;
37 
38 
39   PROCEDURE get_payroll_action_info(p_payroll_action_id     in        number
40                                    ,p_report_mode          out nocopy varchar2
41                                    ,p_period_start_date    out nocopy date
42                                    ,p_period_end_date      out nocopy date
43                                    ,p_start_date           out nocopy date
44                                    ,p_end_date             out nocopy date
45                                    ,p_business_group_id    out nocopy number
46                                    ,p_tran_gre_id          out nocopy number
47                                    ,p_gre_id               out nocopy number
48                                    ,p_event_group_id       out nocopy number
49                                    ) ;
50 
51   PROCEDURE range_cursor(p_payroll_action_id in number
52                         ,p_sqlstr           out nocopy varchar2);
53 
54   PROCEDURE action_creation(p_payroll_action_id   in number
55                            ,p_start_person_id in number
56                            ,p_end_person_id   in number
57                            ,p_chunk               in number);
58 
59   PROCEDURE archive_data(p_assignment_action_id  in number
60                         ,p_effective_date        in date);
61 
62 
63   PROCEDURE archinit(p_payroll_action_id in number);
64 
65 
66 
67 END pay_mx_ssaffl_salary;