Skip to content

Instantly share code, notes, and snippets.

@ztirom
Last active September 30, 2016 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ztirom/b4ea7a9c788faceeacf936ee43a4dc2a to your computer and use it in GitHub Desktop.
Save ztirom/b4ea7a9c788faceeacf936ee43a4dc2a to your computer and use it in GitHub Desktop.
TableIdToTableName
static void TableIdToTableName(Args _args)
{
TableName tableName = "CustTable", myTableName;
TableId tableId = tableName2id(tableName /* Table Name */);
myTableName = tableId2name(tableId /* TableId */);
info(strFmt("Table Name for '%1' is %2", tableId, myTableName)); // CustTable
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment