go to post Timo Lindenschmid · Mar 13 Hi Evan, i think the only way is using process query like this:set currentUser = ##class(%SYS.ProcessQuery).%OpenId($job).OSUserName
go to post Timo Lindenschmid · Mar 6 Hi Jude, better option to get help is to open an iService ticket to get specialist help here.Just a high level: 1. make sure that the parameter you want to use are added via the URL expression on the mun item used to call the report 2. then the parameter can used in the report manager definition and assigned Also make sure the parameter id in the format expected. IRIS dates are usually in $Horolog format and not in yyyy-mm-dd as might be expected by LogiReports.
go to post Timo Lindenschmid · Mar 6 Hi,just wondering what you want to achieve. Is this for outputting a report? If so, there are better options available. e.g. InterSystems Reports or although deprecated Zenreports.
go to post Timo Lindenschmid · Mar 3 Just a note for embedded SQL, you can modify the compiler options in e.g. VSCode to include /compileembedded=1. This then will trigger a compilation of your embedded SQL on compile time and highlight any errors you might have there like missing tables etc.
go to post Timo Lindenschmid · Mar 2 Hi Harshita, please get an iService ticket raised and someone from support will assist you. Best Regards Timo
go to post Timo Lindenschmid · Feb 26 Hi, Iris comes with a PDF render engine based on Apache FOP. This is though more used to create PDF documents from scratch than convert documents to pdf. PDF render config documentation Which is used in the now deprecated ZENReports %ZEN.Report.PrintServer - InterSystems IRIS Data Platform 2024.3 - including private class membersThe other option is to make use of InterSystems Reports, but again this is for creating new pdfs from data contained in the database, not converting existing documents to pdf.
go to post Timo Lindenschmid · Feb 26 Just as a FYI this is not working if using server side editing with no local source code.
go to post Timo Lindenschmid · Feb 19 Option 2 is not totally correct.The parameter [Startup] MaxIRISTempSizeAtStart=5000 will clear the IRISTemp database and shrink it to the size specified it will not prevent IRISTemp from growing further.So you set the parameter and restart IRIS and the runaway IRISTemp database will be reset to 5000MB (per example)To ensure IRISTemp is not taking over all your available space either relocate the DB to a dedicated volume or set the maximum DB size in SMP for the database. But this all has its own risk.
go to post Timo Lindenschmid · Feb 19 Looking at the documentation, i found this Cube dependencies buildingEssentially you need to define the dependencies of the cubes using the DependsOn (not the same as the Class keyword) keyword in Designer. And you need to define the build order by creating either a Utility class with a BuildMethod or by using CubeManager.
go to post Timo Lindenschmid · Feb 19 I had the same error. I manually created that folder, which did not help. Then after i put SELinux into permissive mode (internal test container) , the error went away so i guess its SELinux tags that are wrong also.
go to post Timo Lindenschmid · Feb 4 Yes it looks like %SYS.Task so to get the data via SQL would be: select * from "%SYS".Task
go to post Timo Lindenschmid · Feb 3 Hi Jim, you should probably let us know what you are trying to achieve.
go to post Timo Lindenschmid · Jan 21 Hi So looking at those errors: First we have a process with an active transaction, that process crashed. So now the system is trying to rollback those transactions.Then the process conducting the rollback (pid: 10800) ran out of process memory (STORE error) Although i think the clean demon in the end was able to rollback the open transaction.
go to post Timo Lindenschmid · Jan 21 Hi Phillip, if IRIS is frozen/hung only way to see is via messages.log The freeze and thaw is recorded there.
go to post Timo Lindenschmid · Jan 17 Package names belong to the class names, so this is covered by the class names are case sensitive. In addition they have to by case-insensitive unique. e.g.TestClass and TESTClass would be valid class names but they are not unique as ToUPPER both read TESTCLASS same is true for package names and routines.
go to post Timo Lindenschmid · Dec 10, 2024 Hi Dmitrii, The automated export of changed files can be handled by %Studio.SourceControl.File, this would export any changed file on save and import the latest from disk on checkout. To automate import on a target system you can create a scheduled task that executes $system.OBJ.LoadDir regularly, this also per default compiles on load.
go to post Timo Lindenschmid · Dec 5, 2024 There is a setting in vscode for the objectscript extension, that allows you to modify the compile flags used. My current settings, which also triggers compilation of embedded SQL vs default behaviour to not compile embedded SQL. "objectscript.compileFlags": "cbk/compileembedded=1"