go to post Scott Beeson · Feb 16, 2016 Perfect! That's what I get for using too much Javascript I guess :)
go to post Scott Beeson · Feb 16, 2016 I appreciate you taking the time to respond and clarify but I really need to be able to do this via SQL syntax.
go to post Scott Beeson · Feb 16, 2016 Knowing what's in the Criteria field, I assume you are right that it's a length issue. I don't have the ability to change this on the Cache side, so do you know how I can improve my query to get around these errors?
go to post Scott Beeson · Feb 12, 2016 Awesome! But I have a problem. SELECT * FROM %Dictionary.PropertyDefinition WHERE parent = 'HS.IHE.ATNA.Repository.Aggregation' This returns 11 results, but that table has 41 columns.
go to post Scott Beeson · Feb 12, 2016 Click the "Source" button on the full editor and you can insert the tag. Also, removing working functionality becomes a good thing when a site is bloated and the functionality is redundant or unnecessary. :)
go to post Scott Beeson · Feb 12, 2016 I think those are both good things, except that the editor should be the full WYSIWYG editor.
go to post Scott Beeson · Feb 11, 2016 Good to know it's fixed in a newer version. I'll do my best to ignore it! :)
go to post Scott Beeson · Feb 11, 2016 And I suppose I could just pass a zero to avoid the warning indicator.
go to post Scott Beeson · Feb 11, 2016 Thank you David. Would it be preferred, or is it even possible, to reference ^%SYS("SystemMode") directly somehow?
go to post Scott Beeson · Feb 11, 2016 If that's the case then I think "Top Posts" should be renamed to "Featured Posts" or something similar.
go to post Scott Beeson · Feb 9, 2016 Thanks for the input. Ignoring what I posted above, if you were going to write an implementation script that took input and modified some registry values, what would you use?
go to post Scott Beeson · Feb 8, 2016 Got it!Variable scoping determines when a variable is “visible” to a program. In Caché ObjectScript, there are two sets of rules for variable scoping: - The standard (and newer) scoping mechanism, which is based on procedure blocks. This is the preferred mechanism for new applications and is the default used by the Caché Studio. Within a procedure block, all non-% variables are private variables. set %tstVar = "Green"