Untag
This script statement provides a way to remove tags from fields or tables. If an attempt to untag a field or table not present in the app is made, the untagging will be ignored.
Syntax:
Untag [field|fields] fieldlist with tagname
Untag [field|fields] fieldlist using mapname
Untag table tablelist with tagname
Arguments:
Argument | Description |
---|---|
fieldlist | One or several fields which tags should be removed, in a comma separated list. |
mapname | The name of a mapping table previously loaded in a mapping LOAD or mapping SELECT statement. |
tablelist | A comma separated list of the tables that should be untagged. |
tagname | The name of the tag that should be removed from the field. |
Example 1:
tagmap:
mapping LOAD * inline [
a,b
Alpha,MyTag
Num,MyTag
];
Untag fields using tagmap;
Example 2:
Untag field Alpha with MyTag2;