go to post David Hockenbroch · 7 hr ago There are some naming conventions in the documentation already. Here's one example. I think there used to be more. I know there was one for Zen pages that suggested naming methods based on what was client side or server side or a Zen method. I thought there was also one that explained how things were named in the system classes, but I can't find that one in the current documentation. I have no strong opinion about whether they are (or were) right or wrong. I think we just need to be aware that some of these are still out there, and people may be using them.
go to post David Hockenbroch · Jul 22 Vachan, that depends in part on what exactly you are doing in the terminal at the time. If you are running a method or routine that includes logging an exception, that will happen in the terminal just like it would anywhere else.
go to post David Hockenbroch · Jul 19 Just FYI, your link is broken. Here's a fixed one. Also, here's an article on the topic.
go to post David Hockenbroch · Jul 13 Thank you for the advice! I will try to learn about all of those things so I can improve this.
go to post David Hockenbroch · Jul 13 Yes, they should all be zservice. I believe I've fixed them! Thank you.
go to post David Hockenbroch · Jul 9 You can log the exception in your catch block for exactly the result you're looking for, if I understand your request correctly. try{ //Your code here. } catch ex{ //The below line will add the exception to the application error log. //Code will continue to execute after the catch block. do ex.Log() }
go to post David Hockenbroch · Jul 9 Ronald, if that's your exact code, it may be because you have it as %Request instead of %request, lowercase r. Because %Request is undefined, it can't tell you whether %Request.Data("action",1) is undefined or not. Try it with %request.
go to post David Hockenbroch · Jun 30 As a point of clarification, property names ARE case sensitive in ObjectScript, but in SQL, column names ARE NOT case sensitive. You aren't allowed have a property named "name" and a property named "Name" because they would be ambiguous when doing SQL queries.
go to post David Hockenbroch · Jun 30 Versions that old used to install all the documentation locally. I forget what options had to be selected in the installer because it's been a while, but if you run it, you should have the option somewhere. Then you should be able to click the Cache icon in your system tray and click on "Documentation".
go to post David Hockenbroch · Jun 27 Do you mean the format as in HL7, FHIR, etc.? There are specific ContentType settings for those in the specification, I believe. If the message is a "vertical bar" encoded HL7 v2.x message, the content type SHALL be: x-application/hl7-v2+er7 If the message is an XML encoded HL7 v2.x message, the content type SHALL be: x-application/hl7-v2+xml If the message is an XML encoded HL7 v3 message, the content type SHALL be: x-application/hl7-v3+xml If the message is an XML encoded FHIR message, the content type SHALL be: x-application/fhir+xml If the message is a JSON encoded FHIR message, the content type SHALL be: x-application/fhir+json If the message is a CDA document, the content type SHALL be: x-application/xml+cda
go to post David Hockenbroch · Jun 27 In the %SYS namespace, you can query the table Security.Applications and check the type column. If you do this in the system management portal in display mode, the Type column will start with "System". In logical mode, though, it will be a number. 1 is System, 2 is CSP Application, 4 is a privileged routine application, and 8 is a client application, and if an application is more than one of those things, the Type column is their sum. For example, if it's a System applcation AND a CSP application, the type will be 3. That complicated things, but fortunately since the 1 is the only odd number and it signified system applications, we can use the modulus function to identify system applications as follows. select * from security.applications where {fn MOD(type,2)} = 1 Also, at the risk of self-promotion, I wrote an article detailing more about managing applications programatically a while back. You can find it here.
go to post David Hockenbroch · Jun 27 Here's an example of how we use the relationship between namespaces and databases. My company sells ERP software for the millwork industry. Our customers sell building materials to contractors, distributors, etc. Some of our customers have multiple locations throughout the country. For those customers, we will usually set up a different namespace for each of those locations. Each of those namespaces is set up to have their own database for their data, but the all share the same database for routines because while they all have different data, like customers, orders, invoices, etc., the same set of code is running all of them.
go to post David Hockenbroch · Jun 26 I have done those two, plus in certain cases a "CreatedBy" and "LastUser" that are automatically computed to the $USERNAME in insert and on insert/update.
go to post David Hockenbroch · Jun 26 Whoops, I replied to the wrong comment somehow. Sorry! Edit: for some reason when I clicked on the Reply button on Evgeny's comment above, it was initially showing this reply under Sergei's post below. Then when I left the page and came back, it was in the right place. Firefox being weird on me, I guess.
go to post David Hockenbroch · Jun 11 @Jude Mukkadayil in one of your posts here, you mentioned this error: [SQLCODE: <-415>:<Fatal error occurred within the SQL filer>] [%msg: <Error occurring during UPDATE in table 'SQLUser.PA_Person': $ZE=<LIST>%SQLUpdate+40^User.PAPerson.1>] According to this documentation, that could be a runtime error in some trigger code. In your User.PA_Person class's ObjectScript, you probably have a trigger defined that is causing issues for you. If so, can you post the code for the trigger(s) in that class?
go to post David Hockenbroch · Jun 11 As I'm diving into Angular right now, mine is to add a projection to a TypeScript interface. Is there a specific tag we're supposed to use for the contest this year?
go to post David Hockenbroch · Jun 3 I grew up in Mifflintown, PA, just a couple hours' drive from Lancaster. We used to make weekend trips to Lancaster and see plays at Sight & Sound and some of the other touristy stuff around there.
go to post David Hockenbroch · Jun 3 I'm David Hockenbroch, and I'm based out of Memphis Tennessee. I'm a senior analyst here at WoodWare, so I get into all kinds of things. Lately that includes spending a lot of time considering how to get some really old pieces of software that were written in VB6 or using Zen pages into something that's supported now. I'm a big food person, so Memphis is a good place for me! I also enjoy being outside or taking in a good story, whether that's a movie, book, TV show, or even a well-written videogame. I will not be at READY 2025. I look at the session list every year, and it seems very healthcare-focused. I'm not in health care, so I always question whether it's worth the trip for me. We write business software. I do typically catch up on some of the keynotes online, though.