go to post Iryna Mykhailova · Sep 16, 2024 Congratulations @Benjamin De Boe 🥂 Thanks for all the good things you do for the Community! I'm eager to get some pointers regarding the travels 😜
go to post Iryna Mykhailova · Sep 3, 2024 Congratulations to the winner! This was an interesting experience 😁 I hope we will get more sweepstakes like this!
go to post Iryna Mykhailova · Aug 1, 2024 I think the DC AI is the most helpful with answering more straightforward questions. For example, on DC every once in a while there's a question on converting dates (for example): https://community.intersystems.com/ask-dc-ai?question_id=129616 Most short questions like this can be answered by AI and if the answer is wrong than it's worth posting a question on a Developer Community.
go to post Iryna Mykhailova · Jul 24, 2024 Well deserved! Your omnipotent presence is always felt on the Community 😁
go to post Iryna Mykhailova · Jul 23, 2024 Thanks a lot for the quick feedback! Now I will know what to do if something goes awry 😉
go to post Iryna Mykhailova · Apr 22, 2024 You can use two conversions: $zdate($zdateh("25/03/1988", 4), 8)
go to post Iryna Mykhailova · Mar 23, 2024 I'm not sure there is a ReplaceStr or Strip functions in ObjectScript. But $replace should work if you need to get rid of "\T\": USER>write $replace("AIS|1||COLO \T\ EGD^COLONOSCOPY \T\ EGD|||||||Can||", "\T\", "") AIS|1||COLO EGD^COLONOSCOPY EGD|||||||Can||
go to post Iryna Mykhailova · Mar 23, 2024 First of all, there are no links to docs you've tried in your post. If you add them (or the code from them) it will be easier to understand what you've already tried. In general, I believe the easiest way to insert data in your case will be to use SQL. You can either write something like insert into JASON.BikeDB (Make, Model) values (:make, :model) and pass the values of parameters. Or if you wish to use your class method, you will first need to add a modifier SqlProc to it: ClassMethod SaveNew(Make As %String, Model As %String) [SqlProc] { Set obj=##class(JASON.BikeDB).%New() Set obj.Make=Make Set obj.Model=Model Set sve=obj.%Save() } and then call this as a stored procedure: begin JASON.DataBase.SaveNew(:make, :model); end;
go to post Iryna Mykhailova · Mar 21, 2024 I feel like I have to pass more courses on the Learning Services to get more badges now 😁
go to post Iryna Mykhailova · Mar 21, 2024 Can't even log in there - I get asked for a login and password in a loop 😭🤣 It doesn't seem to work for the Developer Community moderators' accounts.
go to post Iryna Mykhailova · Mar 21, 2024 Interesting idea. I will return to your suggestion a bit later.
go to post Iryna Mykhailova · Mar 21, 2024 Congratulations Robert! You definitely deserve all the accolades 🎉