go to post Enrico Parisi · Dec 11 select * from INFORMATION_SCHEMA.SCHEMATA; There are many tables in INFORMATION_SCHEMA schema you can query to get info, check: select * from INFORMATION_SCHEMA.TABLES where TABLE_SCHEMA ='INFORMATION_SCHEMA';
go to post Enrico Parisi · Dec 10 Have you tried explicitly adding to the production a BP using Ens.ScheduleHandler class?
go to post Enrico Parisi · Dec 4 Make sure the CSPSystem user has read access to the database where your custom login page is located. https://docs.intersystems.com/iris20253/csp/docbook/DocBook.UI.Page.cls?...
go to post Enrico Parisi · Dec 4 Are you using the IRIS login page or a custom login page defined in the Web Application?
go to post Enrico Parisi · Nov 26 The AI BOT answers are moderated, that means that must be approved by a moderator before being published. I do not understand "That is troublesome, particularly if Vitaliy is a Global Masters user.", can you please elaborate your concern?
go to post Enrico Parisi · Nov 21 OK, thank you, now that you edited adding the link it makes more sense.
go to post Enrico Parisi · Nov 21 I'm afraid it's not correct, for example the first item: For ResearcherId the parretn 1N means "One Number", EXACTLY one number I think the correct pattern should be .N, this means any number of Number (digits). Supposing ResearcherId is mandatory and my contains only numbers (at least one), the the pattern would be 1.N Last name would be 1.A, that is at least one low/upper case character
go to post Enrico Parisi · Nov 21 Hi @Fan Ji, is the item "The complete FHIR SQL Builder configuration" missing a screenshot?
go to post Enrico Parisi · Nov 14 Is the message queued in Ens.Alert? What kind of host and class in used by Ens.Alert?
go to post Enrico Parisi · Nov 14 I don't think there is a limit on the number of Business Services a production may contain, 30 is definitely not a big number of BS, I've seen production with more than 100 BS and it works just fine. Concerning the conversion of system Tasks into (scheduled, I guess) BS, well, it depends 😊 Depending on your use case there can be advantages or disadvantages, the main differences that come to my mind are: Scheduled BS starts only if/when a production is started When using mirror, scheduled BS runs only in Primary member Scheduled BS run (start) only in the production namespace
go to post Enrico Parisi · Nov 12 I would just decode the B64 then if it catch any error or returns nothing ("") is not valid.
go to post Enrico Parisi · Nov 12 Hi @Ariel Glikman, my bad, in the latest 2024-2025 "Healthcare Mirroring" documentation page I didn't see this: To automatically configure and schedule this task, as well as mirror the HSSYS database, use the HSSYS Mirroring Utility. Alternatively, manually schedule the task on each mirror member: In fact until 2023.1 the (just released?! 😉) HSSYS Mirroring Utility was only mentioned in the Upgrade documentation.
go to post Enrico Parisi · Nov 12 Are you sure that the tool (browser? does not look like Postman) you use in the first picture is using a POST andf not a GET method? The "405 Method Not Allowed" error means that POST (as used in your code) is not allowed.
go to post Enrico Parisi · Nov 12 Hi @Ariel Glikman, thank you for the tip regarding the HSSYS Mirroring Utility. Is there any reason why that utility is mentioned in the "Upgrade reference" part of the documentation and not in the "Healthcare Mirroring" (installation) documentation? This gives the impression that the utility is (only?) for upgrading IRIS for Health.
go to post Enrico Parisi · Nov 10 I don't think Try/Catch is the solution, but I don't know what you want to happen when an error occur. Maybe an option could be using the "erropt" parameter in $ZDTH, like: Set dateH=$ZDTH(whatevervalue,,,,,,,,,"invalid")If dateH="invalid" ....
go to post Enrico Parisi · Nov 8 Can you please provide some context on how/where you are using try/catch within DTL? What exactly you want to happen when an error occur? Depending on your requirements, maybe writing a custom function is easier to handle this situation?