go to post Evgeny Shvarov · Nov 22, 2016 What the terminal do you mean? I believe there are plenty of terminal apps with this feature, e.g. this one.Or do you want to log only Caché terminal sessions? And store it on the server?
go to post Evgeny Shvarov · Nov 22, 2016 I can add this useful article regarding SQL queries against classes.
go to post Evgeny Shvarov · Nov 21, 2016 Should the derived class be placed in %SYS? I would prefer the way to store the optional class in my Namespace or in %All if I want it be visible in all the namespaces. Unless my class will be erased with the next Caché update.
go to post Evgeny Shvarov · Nov 21, 2016 What does $System.OBJ.ExportPackage() function do special which $System.OBJ.Export() doesn't?
go to post Evgeny Shvarov · Nov 20, 2016 One detail regarding this. To export only classes (and not Globals and OBJ code) you should put it in the pattern: w $System.OBJ.Export("Sample.*.CLS") will export only the classes.
go to post Evgeny Shvarov · Nov 20, 2016 This is cool! Moreover, this: w $System.OBJ.Export("Package1.*,Package2.*","Solution.xml") will export two your class packages into the one 'solution.xml'.
go to post Evgeny Shvarov · Nov 20, 2016 Thanks, Dmitry! Tried with $System.OBJ.Export and was not successful. Maybe makes sense to add "Export Package" functionality to general OBJ.Export too.
go to post Evgeny Shvarov · Nov 16, 2016 Hi, Scott!Yes, that's silly)We want to work with straight dates and times for the posts and comments, like: Post by Scott Beeson 16 Nov 2016. Would it be better?
go to post Evgeny Shvarov · Nov 8, 2016 Yes, this is odd.We want to eliminate subscription counter for the answers and keep it only for the posts.
go to post Evgeny Shvarov · Nov 8, 2016 We are trying to make this place better, step by step.John, thanks for the feedback! It's very valuable!
go to post Evgeny Shvarov · Nov 7, 2016 Hi, Jon!It never worked well and would be fixed or wiped out if we do not need this. Or do we need this "Recently viewed" feed?
go to post Evgeny Shvarov · Nov 4, 2016 You are right, Jon. The current tag cloud implementation is not the example of the best practices. Created the task on it.
go to post Evgeny Shvarov · Nov 4, 2016 It' seems you can use HEAD function for your dimension expression, e.g. HEAD([AuditStatusD].[H1].[AuditStatus].Members) This will show only the first member from all the statuses for the set. Also, you can sort the members of AuditStatus dimension by AuditDate. To do this introduce to the AuditStatus level in the cube AuditDate property (just drag it to the level from the properties list in the Architect) and apply the sorting for this property as Descending. It will sort all the members of the dimension AuditStatus level by AuditDate in all the queries and will show you the last one for the HEAD function.