Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

axlGetOutputUserDefinedData

axlGetOutputUserDefinedData(
x_sdb
t_testName
t_outputName
t_columnName
)
=> t_unit / " "

Description

Returns the value saved in a user-defined column for the given output and test name combination.

Arguments

x_sdb

Handle to the main setup database.

t_testName

Name of the test in the setup database.

t_outputName

Name of the output.

t_columnName

Name of the user-defined column.

Value Returned

t_unit

Value saved in the user-defined column for the specified output.

""

No value is saved in the user-defined column.

Examples

The following example shows that delayRead1 < 78p is set in the user-defined column myColumn for the output delay_read1 of the test tran.

session=axlGetWindowSession()
=> "fnxSession0"
sdb=axlGetMainSetupDB(session)
=> 1001
axlGetOutputUserDefinedData(sdb "tran" "delay_read1" "myColumn")
=> "delayRead1 < 78p"

Return to top
 ⠀
X