DBA Data[Home] [Help]

PACKAGE: APPS.PER_CN_DATA_PUMP

Source


1 PACKAGE per_cn_data_pump AUTHID CURRENT_USER AS
2 /* $Header: hrcndpmf.pkh 115.0 2003/01/02 09:17:18 statkar noship $
3 --/*
4 --*NAME
5 --*   get_employer_id
6 --*DESCRIPTION
7 --*   Returns Legal Employer  ID.
8 --*NOTES
9 --*   This function returns an employer_id and is designed for use
10 --*   with the Data Pump.
11   */
12 
13 FUNCTION get_employer_id
14 (p_employer_name               in varchar2,
15  p_business_group_id           in number)
16  RETURN varchar2;
17 PRAGMA RESTRICT_REFERENCES (get_employer_id, WNDS);
18 
19 ------------------------------------------------------------------------------------
20 END per_cn_data_pump ;