|
Sybernet / Supplied Procedures Reference
Release 3.00 Oct 14, 2002 |
|
This procedure describes the data definition (DDL) of an object. This procedure is actually called from other routines and should be considered as for internal use only.
Procedure SP_DEFNCOPY
(
BUTTON VARCHAR2
, OWNER VARCHAR2
, NAME VARCHAR2
, TYPE VARCHAR2
) ;
| Parameter | Description |
|---|---|
button |
Should be passed the string 'POPULATE' |
owner |
The owner of this object. |
name |
The name of this object. |
type |
The type of this object. |
The following example illustrates how to call sp_defncopy.
begin
http.sp_defncopy
(
button => 'POPULATE'
, owner => 'HTTP'
, name => 'CRON'
, type => 'TABLE'
) ;
end;