go to post Evgeny Shvarov · Jul 31, 2016 I can recommend also this very simple but robust source control tool. It simply exports class to the certain directory after every compilation in Studio and loads it to Studio if there is updated version on disk.It imports/exports all the classes, routines and dfi's in namespace and can do it even in UDL form.
go to post Evgeny Shvarov · Jul 29, 2016 Alex, thanks for the bright article!Does it mean that we should substitute all $I() for $S() immediately and get the performance boost?Are there any cases, where we should keep $Increment instead of $Sequence?
go to post Evgeny Shvarov · Jul 28, 2016 Lexi, you are right. I thought about Year->Month->Day hierarchy with Year->MonthYear-> DayMonthYear time functions for the levels of course.And the "wrong" hierarchy, in this case, would be Year->MonthNumber-DayNumber because if you have more than one year in the facts you'll get several years for one January.
go to post Evgeny Shvarov · Jul 28, 2016 Hi, Scott.There was a bug in subscriptions.In your subscriptions overview you should see 0 for Content type subscriptions.I just cleared that for you, hope you will not get any silly notifications.Colleagues!If you get annoying email notifications and cannot turn them off, please contact me, or comment in this post.
go to post Evgeny Shvarov · Jul 27, 2016 Hi, Laura!Not sure if it is an answer, but have you seen Class Explorer app?It can show all the classes in namespace or package.
go to post Evgeny Shvarov · Jul 26, 2016 Hi, Greg!It is filed.But, for the compact view mode there is a button on the home page which solves this:
go to post Evgeny Shvarov · Jul 26, 2016 Yes, it's a pain, but search within tag maybe worth it?BTW you shouldn't scroll through the list - just start typing in tag field, it will find the valid tag for you.
go to post Evgeny Shvarov · Jul 25, 2016 Hi, Greg!You can search within not Community but within a Tag.For example let's search your post with the word "way".There are a lot of results and it's a trick to find your post.But you can dropdown Tag menu in the search result and filter results to Tag. F.e. your post has 'online-learning' tag.Let's do it and see search results then:You can search within several tags simultaneously.Hope that helps.P.S. 'Online learning' is the not very fit tag for this post. Please consider to change it to 'Developer Community' tag.
go to post Evgeny Shvarov · Jul 23, 2016 Hi, Kyle! Thank you, great stuff!The guys in Russian forum says there is a bug in the line:Property Data as %String (MAXLEN=100, MINLEN=200);How can MINLEN be higher MAXLEN?
go to post Evgeny Shvarov · Jul 21, 2016 Hi Greg!We do not support this type of posts anymore.Code packages should be placed as code snippets, gist or github repos. See details here.But thank you! We'll delete this artefact.
go to post Evgeny Shvarov · Jul 19, 2016 Hi Greg!Subscriptions are not ideal at this moment and we are working to make them better.Your suggestions are quite reasonable we'll try to introduce them to the subscription module soon.Thanks!
go to post Evgeny Shvarov · Jul 19, 2016 Hi, Greg!Thanks for the request! Yes, you are right. It's very helpful option and we have this task in our backlog.
go to post Evgeny Shvarov · Jul 18, 2016 Hi, Sergey! Thanks for the answer!Yes, it's the possible reason. But the problem also appears on Unicode installations too. See my answer below.
go to post Evgeny Shvarov · Jul 18, 2016 Hi, Randy! It's a known issue. The problem is that DSW(DeepSeeWeb) contains some unicode symbols in UI and they come from CSP Gateway in ISO 1859-1 codepage, which is not Unicode obviously. It happens because in your NLS scheme (I believe it is enuw) there is the default setting for non-CSP files that they should go in ISO 1859-1. While it is not fixed in the release, it is fixable two ways: 1. Copy index.html to index.csp and try to connect to it same way you do with index.html page. Symbols should go in Unicode now. 2. Write your current codepage setting in CSP Gateway for the files: zw ^%SYS("CSP","DefaultFileCharset") This setting should be "utf-8". If there is another setting, save it somewhere and change to "utf-8" So this should fix it: set ^%SYS("CSP","DefaultFileCharset")="utf-8"
go to post Evgeny Shvarov · Jul 14, 2016 Hi, Mike!There is no option to delete your own posts now. But you can unpublish them.
go to post Evgeny Shvarov · Jul 13, 2016 Hi, Rustam!A lot of Caché code parts (classes, mac and int routings, DFI's etc) are stored in the database itself, not in files. They should be exported some way to be presented in files.I see you have already the way to export classes, so I believe you can repeat similar code logic to export mac and int code part into the files in the same or another OS folder.
go to post Evgeny Shvarov · Jul 12, 2016 Sorry, Cheng Cheng!Got the idea now: you wanted Sum function for each Product Category, and Avg function for All Products in the same pivot)And this use case of IIF and LEVEL_NUMBER solves the task. Great! Thanks!