DBA Data[Home] [Help]

PACKAGE BODY: APPS.PAY_IP_WRAPPER

Source


1 PACKAGE BODY pay_ip_wrapper AS
2 /* $Header: payipwrapper.pkb 120.1.12020000.2 2013/02/20 09:30:51 jeisaac noship $ */
3 /*  +=========================================================================+
4     |                Copyright (c) 2005 Oracle Corporation                    |
5     |                       IDC, Hyderabad, India                             |
6     |                        All rights reserved.                             |
7     +=========================================================================+
8     Package File Name : payipwrapper.pkb
9     Description       : This package is the wrapper package for Payroll
10                         Exception Report for International Payroll.
11 
12 
13     Change List:
14     ------------
15 
16     =========================================================================
17     Version  Date         Author    Bug No.  Description of Change
18     -------  -----------  --------  -------  --------------------------------
19     115.0    04-APR-2012   jeisaac  13923800 Initial Version
20     115.1    04-APR-2012   jeisaac           Changed OUT variable to OUT NOCOPY
21 
22 */
23 --
24 /******************************************************************************
25 ** Global Variables
26 ******************************************************************************/
27    gv_package   VARCHAR2(100);
28 
29 PROCEDURE get_ip_installation (cp_legislation_code IN VARCHAR2,
30                                cp_return_flag      OUT NOCOPY VARCHAR2) AS
31 
32 BEGIN
33 
34    cp_return_flag  :=  pay_ip_utility.get_ip_installation(cp_legislation_code);
35 
36 END get_ip_installation;
37 
38 BEGIN
39 
40 gv_package  := 'pay_ip_wrapper';
41 
42 END pay_ip_wrapper;