DBA Data[Home] [Help]

PACKAGE: APPS.PER_AD_ZD_SEED_WRAPPER

Source


1 PACKAGE per_ad_zd_seed_wrapper
2 /* $Header: peadwpkg.pkh 120.3 2011/05/13 07:29:26 vvijayku noship $ */
3 /*
4    ******************************************************************
5    *                                                                *
6    *  Copyright (C) 2011 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 AUTHID CURRENT_USER 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_ad_zd_seed_wrapper
21 
22     Description : Package contains wrapper function to call procedure
23                   ad_zd_seed.prepare. This package will be maintained
24                   differently for R12.2 Codeline and (11i,R12.0 and R12.1)
25 
26     Uses        :
27 
28     Change List
29     -----------
30     Date            Name        Version    Bug No     Description
31     ----            ----        -------    ------     ------------------------
32     28-Mar-2011     emunsiek    115.0      11849633   Initial Version
33     04-May-2011     emunisek    1115.1     11870772   Added Procedure check_patch_edition
34                                                       and Function is_patch_edition
35 	13-May-2011     vvijayku    115.2      12426054   Changed the function is_patch_edition
36                                                       to return Integer value.
37   ****************************************************************************/
38   AS
39 
40   PROCEDURE prepare(
41                     p_table       varchar2
42                    );
43 
44   /*This procedure is a wrapper on ad_zd.get_edition procedure.This procedure
45     will have code only for R12.2 and later releases. Pre-R12.2 will have nothing
46     to do. Procedure added to retain the Dual Maintenance of Forms which use this
47     procedure. */
48 
49   FUNCTION is_patch_edition
50   RETURN INTEGER;
51 
52   PROCEDURE check_patch_edition;
53 
54 END per_ad_zd_seed_wrapper;