Search for a Column Name Using an Attribute Value
While searching for a column name in which that name is contained in an attribute, both the Search engine and Studio require the correct syntax. As demonstrated in the following examples the attribute name, or the entire string must be enclosed in quotes.
Examples
["Material"] = 'H2O'
SF_AnalyzerTemplate : ComponentResults[Material] = 'H2O'
Notice that the syntax is the same for both the Search engine and Studio.
Space and special characters
If one of the literals contain spaces or special characters then it has to be encapsulated into quotes ("). When using extended or strong notation, the entire string has to be encapsulated between quotes (").
Examples
ComponentResults['Material'] = 'H2O'
ComponentResults['Material'] = 'H2O'
SF_AnalyzerTemplate:ComponentResults['Material'] = 'H2O'
Quick notation is not supported if the "name" contains spaces or special characters.
Using Keywords
Attribute can be used in combination with Context switch keywords. Please refer to SFHub keywords for further details.
Using UOM operator
The UOM operator is NOT supported when accessing Table.
Examples
[Mass]!Kg
This is wrong. A UOM operator cannot be used.