DBA Data[Home] [Help]

PACKAGE: APPS.HR_ADE_UPGRADE

Source


1 PACKAGE HR_ADE_UPGRADE AUTHID CURRENT_USER AS
2 /* $Header: peadeupg.pkh 115.1 2002/11/22 17:07:43 apholt noship $ */
3 --
4 ---------------------------- parse_ini_file -----------------------------
5 -- This process reads style setting from the ADE.ini file
6 -- creates output file with metadata suitable for upload to Web ADI
7 -- Will be run as a concurrent process
8 --
9 --  Input Parameters
10 --        p_file  - name of input file, normally ADE.INI
11 --
12 --  Output Parameters
13 --        errbuff - variable used by concurrent process manager
14 --        retcode - variable used by concurrent process manager
15 --
16  PROCEDURE parse_ini_file(errbuff     OUT  NOCOPY VARCHAR2
17                          ,retcode     OUT  NOCOPY NUMBER
18                          ,p_file   IN     VARCHAR2);
19 
20 END HR_ADE_UPGRADE;