DBA Data[Home] [Help]

PACKAGE: APPS.PER_US_IPEDS_EXP_PKG

Source


1 PACKAGE PER_US_IPEDS_EXP_PKG AUTHID CURRENT_USER AS
2 /* $Header: perusipedsexp.pkh 120.1.12020000.2 2012/11/29 10:52:04 nkjaladi ship $ */
3 /*
4    ******************************************************************
5    *                                                                *
6    *  Copyright (C) 1993 Oracle Corporation.                        *
7    *  All rights reserved.                                          *
8    *                                                                *
9    *  This material has been provided pursuant to an agreement      *
10    *  containing restrictions on its use.  The material is also     *
11    *  protected by copyright law.  No part of this material may     *
12    *  be copied or distributed, transmitted or transcribed, IN      *
13    *  any form or by any means, electronic, mechanical, magnetic,   *
14    *  manual, or otherwise, or disclosed to third parties without   *
15    *  the express written permission of Oracle Corporation,         *
16    *  500 Oracle Parkway, Redwood City, CA, 94065.                  *
17    *                                                                *
18    ******************************************************************
19 
20     Name        : PER_US_IPEDS_EXP_PKG
21     File Name   : perusipedsexp.pkh
22 
23     Description : This package creates XML file for IPEDS exception Report.
24 
25     Change List
26     -----------
27     Date                 Name       Vers     Bug No    Description
28     -----------       ---------- ------    -------     --------------------------
29     26-JUN-2007       jdevasah   115.0                 Created.
30     26-NOV-2012       nkjaladi   115.1     14532440    Modified the IPEDS
31                                                        exception according to
32                                                        2012 IPEDS report changes.
33 
34     ****************************************************************************/
35 
36    PROCEDURE generate_exception_report(errbuf              OUT NOCOPY VARCHAR2
37                                       ,retcode             OUT NOCOPY NUMBER
38                                       ,p_business_group_id VARCHAR2
39                                       ,p_report_date       VARCHAR2
40                                       ,p_tenured           VARCHAR2   -- #14532440
41                                       ,p_race_gender       VARCHAR2   -- #14532440
42                                       );
43 
44 
45   END PER_US_IPEDS_EXP_PKG;
46