DBA Data[Home] [Help]

PACKAGE: APPS.IRC_GLOBAL_REMAP_PKG

Source


1 PACKAGE irc_global_remap_pkg AS
2 /* $Header: ircremap.pkh 120.0 2005/07/26 15:00:35 mbocutt noship $ */
3 
4 -- ----------------------------------------------------------------------------
5 -- |--------------------------< remap_employee >------------------------------|
6 -- ----------------------------------------------------------------------------
7 --
8 --
9 -- Description:
10 --   This procedure remaps  single person/all employees global data
11 --
12 --
13 procedure remap_employee
14 (
15    p_person_id   IN number default null
16   ,p_effective_date IN date
17 );
18 -- ----------------------------------------------------------------------------
19 -- |--------------------------< remap_employee >------------------------------|
20 -- ----------------------------------------------------------------------------
21 --
22 --
23 -- Description:
24 --   This procedure will be called from the concurrent program.
25 --   This procedure is overloaded and will in turn call remap_employee(person_id)
26 --   and commit the data
27 --
28 procedure remap_employee
29 (
30    errbuf          out nocopy varchar2
31   ,retcode         out nocopy varchar2
32   ,p_effective_date in varchar2
33   ,p_person_id     in number
34 );
35 
36 end irc_global_remap_pkg;