go to post Yaron Munz · May 16, 2019 Hello,I'm using Atelier 1.3 with eclipse photon. I could not find an option to override (refactor) a classmethod function as was in studio.Can someone help ?
go to post Yaron Munz · May 10, 2019 Hello,1. A deeper look on how you implement ed your indexes According to the "cost" it looks that the query is not optimized.2. Do you have an index on "TranEffectDate" on "SDS_DATA._Transaction" table ?3. I would recommend that you run this query (after improve of the "cost") with parallel processing.
go to post Yaron Munz · May 6, 2019 The class Security.SSLConfigs can give you an API to create SSL configurations.Look at the "Create" classmethod.
go to post Yaron Munz · May 2, 2019 Hi,Methods and call to methods, like any other code you write, need to be reviewed and tested.When you type in studio you will see a tool-tip with the current parameter position in bold. Some times, when you need to pass a huge number of parameters to a function/method you might put there in a key=value array and simply pass this by ref.
go to post Yaron Munz · Apr 23, 2019 Hi Ryan,Ens.Request class does not contain any properties. so you should make a sub class and put a %String property. Json is basically a string.Example:Class User.REQ.JsonRequest Extends Ens.RequestProperty JSON As %String(MAXLEN = "");
go to post Yaron Munz · Apr 12, 2019 Every class (with its methods) is compiled into an INT routine.MOMLBL will help you diagnose performance on executed lines of code.https://docs.intersystems.com/iris20181/csp/docbook/DocBook.UI.Page.cls?...
go to post Yaron Munz · Mar 26, 2019 Hi,Take a look on %Dictionary.ClassDefinition class.you may get all the properties from Properties
go to post Yaron Munz · Nov 14, 2018 Hi,To get information about a namespace, You may use this code :(run it only in %sys" namespace) Properties variable is passed by ref (i.e. it has a point at the beginning)%SYS>S Status=##Class(Config.Namespaces).Get("user", .Properties)%SYS>zw PropertiesProperties("Globals")="USER"Properties("Library")="CACHELIB"Properties("Routines")="USER"Properties("SysGlobals")="CACHESYS"Properties("SysRoutines")="CACHESYS"Properties("TempGlobals")="CACHETEMP"