![]() |
Copyright © TIBCO Software Inc. All rights reserved. |
The pm_objects stores information about each procedure object (except shortcuts) in the Procedure Management library.TABLE pm_objects (
object_guid varchar2(36) NOT NULL,
object_type number(5) NOT NULL,
object_name varchar2(64) NOT NULL,
version_major number(5) ,
version_minor number(5) ,
icon_mod_time date NOT NULL,
icon_binary blob ,
icon_size number(8) NOT NULL,
object_url varchar2(1000) ,
author varchar2(64) ,
object_create_time date NOT NULL,
object_mod_time date NOT NULL,
release_id varchar2(64) ,
security_all number(1) NOT NULL,
proc_id number(5) NOT NULL,
proc_status number(5) )
The row defining the Procedure Management library root has the value ROOT_LIBRARY_GUID. Procedure object type. Either: library (0), procedure (1), sub-procedure (2) or sub-procedure parameter template (3). Note: The object’s description (if defined) is also included as part of this field, in brackets following the name. Major version number of the version associated with this procedure object, as defined in the proc_version table.This value is always 0 if the object is a library. Minor version number of the version associated with this procedure object, as defined in the proc_version table.This value is always 0 if the object is a library. Value of the Author extended property for this procedure object. Value of the Date Created extended property for this procedure object, showing the time that this object was created.
The pm_objects table contains one row for each procedure object (except shortcuts) in the Procedure Management library.
![]() |
Copyright © TIBCO Software Inc. All rights reserved. |