Equinox Online Help - Language Reference - A to Z

Home

NameFromTable

Applies to
SyntaxNameFromTable (TableItem)
Action[Function] Returns a string name for a table.
ScopeUsable anywhere.
Notes

This function returns a table name from an table variable passed via the TableItem parameter. The string returns the name of the table assigned within Equinox.

CategoryRecord navigation
See Also  
Example

The following example returns the name of a table which is appended to a combo workarea, so that a user can choose a table via a form.

table Tbl
string TblName

Tbl = Customer
TblName = NameFromTable(Tbl)
ListAppend cSelect, TblName