go to post Mindy Caldwell · Jan 4, 2024 Best part for me is having one spot instead of trying to remember the links to all the pieces.
go to post Mindy Caldwell · Jan 4, 2024 I was a bit of a "head in the sand" person this year dealing with medical issues for myself and elderly in-laws. My most fascinating technology topic was how to get the most out of MyChart. It made me crazy some days (it wasn't always easy to find what I needed) but I always knew what I needed was there.
go to post Mindy Caldwell · Apr 28, 2023 Edward, Thank YOU! You solved the problem. I'll need to do more testing but on first glance it appears that by adding COLLATION = "Space" to the property and recompiling the class, the CMQL select now works as I expect.
go to post Mindy Caldwell · Apr 26, 2023 Edward, Thanks for your suggestion. Class modified as suggested. Index rebuilt. Select command still fails unless I put the leading space. TRAX:SELECT ISELLER WITH FundraiserId = "HTE_FSG_SPRING2022" [401] No items present. TRAX:SELECT ISELLER WITH FundraiserId = " HTE_FSG_SPRING2022" 505 Items selected to list #0 TRAX>>clearselect TRAX:SELECT SALESREP WITH FundraiserId = "HTE_FSG_SPRING2022" 505 Items selected to list #0 TRAX>>clearselect TRAX:
go to post Mindy Caldwell · May 5, 2022 Well, I won't win any prizes but I just wanted to rejoice in writing my first classmethod in objectscript. Here is my less than elegant solution ClassMethod Detector(a As %String, b As %String) As %Boolean { SET a=$CHANGE(a," ","") SET a=$ZCVT(a,"l") SET b=$CHANGE(b," ","") SET b=$ZCVT(b,"l") SET c = "" FOR i = 1 :1 :$L(a) { SET p = $F(b,$E(a,1)) if p { SET $E(b,p-1)="" } else { set c=c_$E(a,1) } set $E(a,1)="" } if ($L(a) + $L(b) + $L(c) ) { q 0 } else { q 1 } } }
go to post Mindy Caldwell · Dec 10, 2020 Sample code and common apps. Would love to have a shopping cart example.