DBA Data[Home] [Help]

PACKAGE: APPS.AR_CLE_STUB_PKG

Source


1 PACKAGE AR_CLE_STUB_PKG
2 -- $Header: ARCLESTUBS.pls 120.0.12000000.1 2007/10/23 14:11:09 sgudupat noship $
3 --*************************************************************************
4 -- Copyright (c)  2000    Oracle                 Product Development
5 -- All rights reserved
6 --*************************************************************************
7 --
8 -- HEADER
9 --   Source control header
10 --
11 -- PROGRAM NAME
12 --  ARCLESTUBS.pls
13 --
14 -- DESCRIPTION
15 --  This script creates the package specification of AR_CLE_STUB_PKG
16 --  This checks where the localization program exists or not and to submit the localization program if exists.
17 --
18 -- USAGE
19 --   To install       sqlplus <apps_user>/<apps_pwd> @ARCLESTUBS.pls
20 --   To execute       sqlplus <apps_user>/<apps_pwd> AR_CLE_STUB_PKG
21 --
22 -- PROGRAM LIST                DESCRIPTION
23 -- localization_prog_exists    It AUTHID CURRENT_USER is a function of AR_CLE_STUB_PKG package.
24 --                             This checks where the localization program exists or not.
25 -- submit_prog                 It is a procedure of AR_CLE_STUB_PKG package.
26 --                             This is used to submit the localization program if exists.
27 --
28 -- DEPENDENCIES
29 --   None
30 --
31 -- CALLED BY
32 --   Statement Generation Program.
33 --
34 -- LAST UPDATE DATE   24-Jun-2007
35 --   Date the program has been modified for the last time
36 --
37 -- HISTORY
38 -- =======
39 --
40 -- VERSION DATE        AUTHOR(S)       DESCRIPTION
41 -- ------- ----------- --------------- ------------------------------------
42 -- Draft1A 02-Feb-2007 Sajana Doma     Initial Creation
43 --
44 --
45 --************************************************************************
46 AS
47    FUNCTION localization_prog_exists RETURN BOOLEAN;
48    PROCEDURE submit_prog;
49 
50 END AR_CLE_STUB_PKG;