axlGetUserDefinedOutputsColumns
axlGetUserDefinedOutputsColumns(x_sdb) =>l_columnNames/nil
Description
Returns a list of names of the user-defined columns in the specified setup database.
Arguments
Value Returned
Examples
The following example returns a list containing names of the user-defined columns.
session=axlGetWindowSession()
=> "fnxSession0"
sdb=axlGetMainSetupDB(session)
=> 1001
axlGetUserDefinedOutputsColumns(sdb)
=> ("myComments" "specDescription")
Return to top