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

axlSetOutputUserDefinedData

axlSetOutputUserDefinedData(
x_mainSDB
t_testName
t_outputName
t_columnName
t_columnValue
)
=> t / nil

Description

Sets the value in the user-defined column for the specified test name and output.

Arguments

x_mainSDB

Handle to the main setup database.

t_testName

Name of the test.

t_outputName

Name of the output in the test setup.

t_columnName

Name of the user-defined column.

t_columnValue

Value to be set in the user-defined column for the specified output.

Value Returned

t

The value is set for the specified output in the user-defined column.

nil

Unsuccessful operation

Examples

Sets the value Current < 1.5m for the output Current of test AC in the user-defined column myRemarks.

session=axlGetWindowSession()
=> "fnxSession0"
sdb=axlGetMainSetupDB(session)
=> 1001
axlSetOutputUserDefinedData(sdb "AC" "Current" "myRemarks" "Current < 1.5m")
=> t

Return to top
 ⠀
X