axlRenameOutputsColumn
axlRenameOutputsColumn(x_mainSDB t_columnName t_newColumnName) =>t/nil
Description
Changes the name of a user-defined column in the outputs table.
Arguments
Value Returned
Examples
The following example renames the user-defined column myColumn to myRemarks.
session = axlGetWindowSession()
=> "session0"
sdb= axlGetMainSetupDB(session)
=> 1001
axlRenameOutputsColumn(sdb "myRemarks" "myColumn")
=> t
Return to top