geInstIdToFileSpec
geInstIdToFileSpec(
d_instId
t_mode
)
=> l_fileSpec
Description
Creates a fileSpec, a disassociated property list, from the data in an instance and the given mode.
Arguments
|
d_instId
|
Database ID of the instance.
|
|
t_mode
|
Mode used in the fileSpec.
Valid Values: r (read), a (append), w (overwrite).
|
Value Returned
|
l_fileSpec
|
The filled-out fileSpec. It contains the following information:
list(nil
’libName instId~>libName
’libId instId~>master~>lib
’viewName instId~>viewName
’viewType instId~>master~>cellViewType ’viewId instId~>master~>view
’cellName instId~>cellName
’configName instId~>master~>lib~>openedConfig~>name
’viewNameList nil
’accessMode mode
’instId instId ’hierarchy "") )
|
Examples
Creates a fileSpec of the instance inst3 with append mode.
geInstIdToFileSpec( inst3 "a" )
Related Topics
Utility Functions
Return to top