DBA Data[Home] [Help]

PACKAGE: APPS.JTM_COMMON_CON_PROG_PUB

Source


1 PACKAGE JTM_COMMON_CON_PROG_PUB AUTHID CURRENT_USER AS
2 /* $Header: jtmpcons.pls 115.2 2002/12/09 21:39:48 pwu ship $ */
3 -- Start of Comments
4 --
5 -- NAME
6 --   JTM_COMMON_CON_PROG_PUB
7 --
8 -- PURPOSE
9 --   Central Entry for Mobile Concurrent Programs.
10 --
11 --   PROCEDURES:
12 --
13 --
14 -- NOTES
15 --
16 --
17 -- HISTORY
18 --   04-09-2002 YOHUANG Created.
19 --
20 -- Notes
21 --   Do_Refresh_Mobile_Data will call each procedure according to EXECUTE_FLAG, EXECUTION_ORDER,
22 --   and FREQUENCY. Do_Refresh_Mobile_Data itself it runs every hour.
23 --   Each Procedure must make use of SAVEPOINT, because, at the end, Concurrent Manager will commit everything.
24 
25 -- End of Comments
26 --
27 --
28 --
29 
30 PROCEDURE Do_Refresh_Mobile_Data
31 (
32     errbuf              OUT NOCOPY  VARCHAR2,
33     retcode             OUT NOCOPY  NUMBER
34 ) ;
35 
36 END JTM_COMMON_CON_PROG_PUB;