Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
Differences in R/LIST between AREV32 and OI
In AREV32, I am able to make a simple "LIST" statement in the TCL that looks something like the example below...
LIST PROD WITH CLASS "1" "2" "3"
... and it would give me a report of all keys from the PROD dictionary that have the field "CLASS" equal to "1" or "2" or "3".
I am having trouble getting the same result with the TCL in OpenInsight (and other BASIC+ functions that use similar R/LIST type searching techniques).
How would I make a statement achieve this in the OpenInsight TCL?
LIST PROD WITH CLASS "1" "2" "3"
... and it would give me a report of all keys from the PROD dictionary that have the field "CLASS" equal to "1" or "2" or "3".
I am having trouble getting the same result with the TCL in OpenInsight (and other BASIC+ functions that use similar R/LIST type searching techniques).
How would I make a statement achieve this in the OpenInsight TCL?
Comments
Have you tried an = sign between the field name and the value
LIST PROD WITH CLASS = "1" "2" "3"
Without it I'd expect you're receiving a list of all keys where CLASS has any value
Thanks!