|
Sybernet / Supplied Functions Reference
Release 3.00 Oct 14, 2002 |
|
This function returns the object name corresponding to a OBJECT_ID.
FUNCTION OBJECT_NAME
(
OBJECTID NUMBER
)
RETURN VARCHAR2;
| Parameter | Description |
|---|---|
objectid |
The object_id of this object. |
The name of an object or NULL if the object does not exist.
The following example illustrates how to retrieve an object name.
select http.object_name(http.object_id('HTTP.HTTP_REGISTER')) from dual;
-------------------------------------------
HTTP_REGISTER