Que bueno! :)
But I would be happy even if you suggest the way how to contribute to your solution to introduce an another language support.
- Log in to post comments
Que bueno! :)
But I would be happy even if you suggest the way how to contribute to your solution to introduce an another language support.
Here are slides for @Evgeny Shvarov session "Printing and Emailing InterSystems DeepSee Reports"
Hi, Francisco!
Great stuff!
Could it be possible to add other languages support to your solution? E.g. Russian?
Hi, Kuldeep!
You are invited.
The right link is this one!
Hi, Lucas!
I don't know the answer, but you could check Class Explorer and maybe implement same visualisation library to visualise production interconnections.
Another example of classes visualisation is Callsmap by @Oleg Dmitrovich
Hi, Shameer!
As @Nicole Aaron mentioned, there is no officially proposed folder structure for your InterSystems project, but I can share one typical approach.
The upper folder is basically named "src" assuming source code inside.
Files inside "src" could be splitted by source type. E.g.:
"cls" - for ObjectScript classes,
"inc" - for include files,
"mac" - for mac routines,
"dfi" - for DeepSee dashboards and pivots.
Every class name consists of package(s) and class itself. So class package could be projected to a folder. E.g. source code for the class Sample.Person will be stored in the file with following path:
/src/cls/Sample/Person.cls
There are numerous projects on Github which use similar approach. You can find examples of such projects via these cacheobjectscript-udl tag, e.g. this project.
HTH
Thank you, Lucas. But the thanks should go to @Oleg Dmitrovich
As for CSP - it is a file, and can be edited via VS-Code just as a file in a versioned folder.
If you are looking for exporting tools, I can recommend isc-dev module, which can export code as single files in a dedicated folder structure (including DeepSee stuff), can export a single kits - large xml kits, say releases, and also patches which a commit, or a set of commits in git.
Hi, Lucas!
Why do you need to export CSP? Couldn't you edit CSP just in place?
If you want a particular feature to be introduced, please put the issue here.
BTW: 1,400 downloads: not a bad number!
Hi Francisco! Maybe, if we see a lot of requests on it. Your vote is counted!
Hi Minsu!
We didn't plan that for this time. But there will be recording we'll publish on InterSystems Developers YouTube Channel.
Hi, Community!
You can apply your enhancement requests to DC in this repository.
And you can monitor the progress in this kanban projects. E.g. here is the June 2018 project.
We can. Request it in InterSystems Brazil office and we'll arrange it.
What issues with studio performance do you have?
Could you please share a sample code with ordering of the main grouping to understand the problem better?
Hi, Community members!
It's just a reminder on a meetup we are having on 25th in UK, Birmingham!
And! We have a time slot available! So if you want to tell about your solution or share your best practices with InterSytems Data Platform please contact me or comment to this post!
Hi, Guilherme!
Please, elaborate what do you want to sort.
Hi, Guilherme!
Could you please send the code how do you try and can not?
Hi, John!
Yes, we had the issue here - it is fixed now.
Thanks for pointing this out!
Hi, Marco!
If you are looking to play with InterSystems IRIS or other Data Platforms try Online Learning Experiences - all of them launch a temporary sandbox in the cloud for you to let you exercise and try the system.
Hi, David! Yes, actually all of them are already listed in your profile if you happen to accomplish it in the past.
No advantage of course if Locale Defaults works for you. That was not obvious. Does it work?
Also there is a common approach to use the root as a counter of the one-level array using $seq(uence) or $I(ncrement). E.g.
Class Test.Arrays {
ClassMethod ArrayExample()
{
set a($seq(a))="blue"
set a($seq(a))="red"
set a($seq(a))="yellow"
write a,! // will return 3
zwrite a // will out the full array to the device
}
}And if we execute the following in terminal you'll get:
USER>d ##class(Test.Arrays).ArrayExample()
3
a=3
a(1)="blue"
a(2)="red"
a(3)="yellow"
Also see the good article on $seq vs $I by @Alexander.Koblov
HTH
Hi, Ed!
You can build your own Localised dimension via expressions and put whatever language you want for the months.
Hi, Ed! Thanks!
And how docker configuration looks like to go with direct-lvm?
BTW, here is what we did in May for public issues on DC.

And here is the current kanban for June.
Add your bug reports and enhancement requests!
Thanks Vitaly!
Really great!
Classmethod Public: is it to be able to call for $$functions in a class?