DBA Data[Home] [Help]

PACKAGE: APPS.QA_DBLINK_PKG

Source


1 PACKAGE qa_dblink_pkg AUTHID CURRENT_USER AS
2 /* $Header: qadblinks.pls 120.1.12010000.1 2008/07/25 09:19:17 appldev ship $ */
3     --
4     -- Wrapper procedure to create or drop the index.
5     -- This procedure is the entry point for this package
6     -- through the concurrent program 'Manage Collection
7     -- element indexes'. This wrapper procedure is attached
8     -- to the QADBLINK executable.
9     -- argument1 -> Server Type : Server Type for Device Integration. 1 - Sensor Edge Server, 2- OPC Server (Third Party)
10     -- dummy     -> Dummy Parameter : To handle Enabling/Disabling of SDR specific fields based on Server Type.
11     -- argument2 -> SDR DB Link Name : 'Create a dblink using this name. If already existant then raise an error'.
12     -- argument3 -> User Name for connecting to SDR database.
13     -- argument4 -> Password for connecting to SDR database for the user name specified in argument2.
14     -- argument5 -> Connection Descriptor (The entire TNS Entry of the SDR Database instance).
15     --
16     PROCEDURE wrapper(
17         errbuf    OUT NOCOPY VARCHAR2,
18         retcode   OUT NOCOPY NUMBER,
19         argument1            VARCHAR2,
20         dummy                NUMBER,
21         argument2            VARCHAR2,
22         argument3            VARCHAR2,
23         argument4            VARCHAR2,
24         argument5            VARCHAR2);
25 
26 END qa_dblink_pkg;