DBA Data[Home] [Help]

PACKAGE: APPS.PER_MX_DATA_PUMP

Source


1 PACKAGE PER_MX_DATA_PUMP AUTHID CURRENT_USER AS
2 /* $Header: hrmxdpmf.pkh 120.0 2005/05/31 01:28:58 appldev noship $ */
3 /*
4    ******************************************************************
5    *                                                                *
6    *  Copyright (C) 2004 Oracle India Pvt. Ltd.                     *
7    *  IDC Hyderabad                                                 *
8    *  All rights reserved.                                          *
9    *                                                                *
10    *  This material has been provided pursuant to an agreement      *
11    *  containing restrictions on its use.  The material is also     *
12    *  protected by copyright law.  No part of this material may     *
13    *  be copied or distributed, transmitted or transcribed, in      *
14    *  any form or by any means, electronic, mechanical, magnetic,   *
15    *  manual, or otherwise, or disclosed to third parties without   *
16    *  the express written permission of Oracle Corporation,         *
17    *  500 Oracle Parkway, Redwood City, CA, 94065.                  *
18    *                                                                *
19    ******************************************************************
20 
21     Name        : PER_MX_DATA_PUMP
22 
23     Description : This package defines mapping functions for data pump.
24 
25     Change List
26     -----------
27     Date        Name       Vers    Bug No   Description
28     ----------- ---------- ------  -------  -------------------------------
29     23-JUL-2004 sdahiya    115.0            Created.
30   *****************************************************************************/
31 
32 /*******************************************************************************
33     Name    : get_tax_unit_id
34     Purpose : This function returns tax unit id for a given tax unit name under a
35               given business group.
36 *******************************************************************************/
37 
38 FUNCTION GET_TAX_UNIT_ID(
39     p_tax_unit              in varchar2,
40     p_business_group_id     in number
41     ) RETURN NUMBER;
42 
43 
44 /*******************************************************************************
45     Name    : get_work_schedule_id
46     Purpose : This function returns work schedule id for a given work schedule
47               under MX legislation.
48 *******************************************************************************/
49 
50 FUNCTION GET_WORK_SCHEDULE (p_work_schedule  varchar2) RETURN number;
51 
52 END PER_MX_DATA_PUMP;