DBA Data[Home] [Help]

PACKAGE: APPS.GCS_DATASUB_DYNAMIC_PKG

Source


1 PACKAGE GCS_DATASUB_DYNAMIC_PKG as
2 /* $Header: gcs_datasub_dyns.pls 120.1 2005/10/30 05:17:21 appldev noship $ */
3 
4   --
5   -- Procedure
6   --   Write_To_Log
7   -- Purpose
8   --   Write the text given to the log in 3500 character increments
9   --   this happened. Write it to the log repository.
10   -- Arguments
11   --   p_module         Name of the module
12   --   p_level          Logging level
13   --   p_text           Text to write
14   -- Example
15   --
16   -- Notes
17   --
18   PROCEDURE write_to_log
19     (p_module   VARCHAR2,
20      p_level    NUMBER,
21      p_text     VARCHAR2);
22 
23   PROCEDURE create_datasub_utility_pkg (p_retcode	NUMBER,
24 					p_errbuf	VARCHAR2);
25 
26 END GCS_DATASUB_DYNAMIC_PKG;
27