go to post Alexander Koblov · Nov 22, 2016 Is this what you want? http://docs.intersystems.com/cache20162/csp/docbook/DocBook.UI.Page.cls?...
go to post Alexander Koblov · Nov 17, 2016 Hi Ryan. For each level there is Sort option in Architect's right pane. For numbers you should set it to 'asc numeric' or 'desc numeric'. http://docs.intersystems.com/cache20162/csp/docbook/DocBook.UI.Page.cls?...
go to post Alexander Koblov · Nov 17, 2016 Albert, notice comma after last END in the query: THEN 400 END, WHERE
go to post Alexander Koblov · Nov 16, 2016 Albert, please provide error that you receive when you try to run that query
go to post Alexander Koblov · Nov 16, 2016 Albert, you second option should work. I've just tested it on 2016x1. Probably the reason of error is last comma between END and WHERE: END, WHERE CodigoNum IN ('100','101')
go to post Alexander Koblov · Nov 8, 2016 And here is the link https://community.intersystems.com/post/how-resend-large-number-messages...
go to post Alexander Koblov · Nov 2, 2016 Maybe it makes sense introduce sorting of answers based on votes in addition to current sorting based on time. See, for example, reddit (https://www.reddit.com/r/javascript/comments/3u7l76/microsoft_wont_suppo...). Most voted comment is shown first, then most voted reply to this comment, etc.
go to post Alexander Koblov · Nov 2, 2016 The same on members list (https://community.intersystems.com/members). Also, once new part is uploaded my browser scrolls to the top of list, so I need to scroll already shown items again.
go to post Alexander Koblov · Oct 31, 2016 Can you please provide more information about this utility. Google shows no results for query 'stzzpass'
go to post Alexander Koblov · Oct 6, 2016 For immediate help you should contact InterSystems‘ Worldwide Response Center (WRC) http://www.intersystems.com/services-support/for-immediate-help/
go to post Alexander Koblov · Oct 4, 2016 John, I get the same error as you if I disable repo http://download.eclipse.org/releases/neon in "Available Software sites" in Settings. Please check that you have this repo enabled. Regards, Alexander.
go to post Alexander Koblov · Sep 17, 2016 FOLLOWS gives wrong result in some cases: USER>set date1 = $zdth("2016-01-02 00:15",3) USER>set date2 = $zdth("2016-01-02 01:00",3) USER>zwrite date1,date2 date1="63919,900" date2="63919,3600" USER>write date1]date2 1
go to post Alexander Koblov · Sep 15, 2016 Caché Programming Orientation Guide explains this in details. Please read: http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Alexander Koblov · Sep 15, 2016 Hi. If this is urgent issue please contact InterSystems Support: http://www.intersystems.com/services-support/for-immediate-help/ Regards, Alexander.
go to post Alexander Koblov · Sep 15, 2016 You don't need to set DSTIME parameter in the secondary class. However, OBJ.DSTIME and SynchronizeCube does not see changes in objects of secondary class. That is the case mentioned as The changed record is not in the extent of the base class used by the cube. in documentation (http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...) For example, let's say that you have cube Person based on Sample.Person class. And that class Sample.Person has property Job that references persistent class Sample.Company. If you just modify object of Sample.Company as follows: set p = ##class(Sample.Company).%OpenId(100) set p.Name = "New Company Name" write p.%Save() Then this change will not be seen by SynchronizeCube and you'll need to update cube manually: http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=... Adding DSTIME parameter to the Sample.Company does not help as original cube Person is not based on this class.
go to post Alexander Koblov · Sep 13, 2016 Do you think it is worth adding post on how to ask questions? Something similar to https://stackoverflow.com/help/how-to-ask
go to post Alexander Koblov · Aug 11, 2016 Hi Ponnumani. You cannot run class itself in Caché. You can run some classmethod of this class. For example from terminal you can run classmethod 'PrintPersons' of class Sample.Person as follows: USER>zn "samples" SAMPLES>do ##class(Sample.Person).PrintPersons() Name: Klein,Agnes E. Name: Willeke,Imelda R. Name: Vanzetti,Rhonda Y. ... I encourage you to read "Caché Programming Orientation Guide". http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=... Particularly it contains information on how you can use terminal to test your programs: http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Alexander Koblov · Aug 5, 2016 Also please see http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=... It references the " HTTP Error 503. The service is unavailable." error that you see
go to post Alexander Koblov · Aug 5, 2016 http://10.10.10.xx/csp/bin/Systems/Module.cxw is a system path to CSP Gateway Configuration. There should not be Systems folder in /csp/bin. What error do you see when you open http://10.10.10.xx/csp/bin/Systems/Module.cxw?
go to post Alexander Koblov · Aug 5, 2016 I would suggest you to open http:///csp/bin/Systems/Module.cxw and check server connection. If you cannot open this page, check that you have /bin url enabled in IIS: http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...