Sybernet / Supplied Procedures Reference
Release 3.00
Apr 17, 2005
backwards forwards

HTTP.SP_GETPROCNAME

This procedure creates a fully qualified procedure name.

noteThis procedure is deprecated in favor of the NAVIGATOR package.

Syntax

Procedure SP_GETPROCNAME
(
    OBJECTID                      NUMBER
,   PROCNAME              OUTPUT  VARCHAR2
)   ;

Parameters

Parameter Description
objectid
 
The object id of the object.
procname
 
The fully qualified name as an output variable.

Example

The following example illustrates how to call sp_getProcname:

declare
    object_id number := http.object_id('SP_HTML_FRAME');
    procname varchar(92);
begin
    http.sp_getProcname(object_id,procname);
    http.writeln('procname is ' || procname);
end;


See Also

NAVIGATOR



Sybernet is a trademark of SRI International.
Copyright © 1996-2008 SRI International. All Rights Reserved.
Denis D. Workman / http://Sybernet.sri.com/