DBA Data[Home] [Help]

PACKAGE: APPS.PAY_TRGL_PKG

Source


1 PACKAGE pay_trgl_pkg AS
2 /* $Header: pytrangl.pkh 120.1.12010000.1 2008/07/27 23:45:50 appldev ship $ */
3 --
4 /*
5  * ***************************************************************************
6 --
7   Copyright (c) Oracle Corporation (UK) Ltd 1993,1994.
8   All Rights Reserved.
9 --
10   PRODUCT
11     Oracle*Payroll
12 --
13   NAME
14     PAY_TRGL_PKG  - Procedure to transfer pay costs to General Ledger.
15 --
16 --
17   DESCRIPTION
18     The procedure sums are costs for each cost centre for all payroll runs
19     which occurr within the tansfer period. The costs are summed across
20     assignments but distinct entries are created for debit and credit for
21     each currency.
22 
23   MODIFIED      (DD-MON-YYYY)
24      A.Frith	14-May-1994	Created
25      J.ALLOUN   30-JUL-1996     Added error handling.
26      A.Logue    25-AUG-1998     Multi-Threaded Implementation.
27      A.Logue    07-OCT-2005     Support of Sub Ledger Accouting (SLA).
28 --
29 */
30 --
31 PROCEDURE trans_pay_costs
32 	(i_payroll_action_id NUMBER) ;
33 --
34 PROCEDURE trans_pay_costs_mt
35 	(i_payroll_action_id NUMBER) ;
36 --
37 PROCEDURE trans_ass_costs
38 	(i_assignment_action_id NUMBER,
39          sla_mode               NUMBER) ;
40 --
41 END pay_trgl_pkg;