C'est super!
Bienvenue!!!
- Log in to post comments
C'est super!
Bienvenue!!!
![]()
Welcome!
@Esther Sanchez I'll do my best! And thanks for your advice!
Scheduled post is the best feature ever! Super useful!
Thanks guys! I definitely will ![]()
Hello,
I would suggest you do the following.
I understand you have a class something like:
Class My.Test extends%Persistent
{
Property PatientName;Property TypeOfTest as My.TestType;Property OrderID;
}Make TypeOfTest an instance of another class My.TestType:
Class My.TestType extends%SerialObject
{
Property Name As%String(VALUELIST = ",Sugar,Urine,Thyroid");Property Tsh;
...
}In this case, as Robert has mentioned, you will be able to write a query like
select PatientName, TypeOfTest_Name, TypeOfTest_Tsh
from My.TestAnother way to do it would be the following. Make TypeOfTest an array:
Class My.Test extends%Persistent
{
Property PatientName;Property TypeOfTest as array of %String; //%Numeric maybe?Property OrderID;
}In the array, each element is a pair of key and value. In this case, you add a key with the name of type of test and with value the result of test. And if the "Name" is "Thyroid", then you add the rest of the elements. For example:
do test.TypeOfTest.SetAt("10", "Thyriod")
do test.TypefTest.SetAt("148", Tsh)This way, for your array in SQL you will get a separate table, the name of it will be a combination of class name and property name.
.png)
You can actually write a select just to query results of the tests and then find the name of the order using the primary key (which is a link to the main table My.Test)
Good thing to know :) And useful with the contest of articles!
Ok, and here I thought a folder will be dossier...
Hmm, this is strange, in the article "How to earn points" it says that a post on the French community gives 400 pints, and here it is just 200. And for translation, it is 150 vs 50.
Awesome! Thanks, now I can share this info on French Community ![]()
Come join us! We're looking forward to your comments, likes, questions and articles 😘
Good question, would've been nice!
OK it's good and interesting but is it possible to also realize RESTfull service based on Django?
Great! I'll look forward to reading it!
This is a great question because I run out of licenses very quickly!
I love it! It's so much more informative right now! Of course, it would be nice to have the same in other supported languages, French for example ![]()
![]()
Wow! It's awesome! Great to see that the Community is growing!
I'm really glad I could attend Global Summit this year! I had a blast! And I look forward to the next year's Summit ![]()
Now it says that you don't have %Process in your request. Since "request" is the variable that you pass and it has a property "Age" you should probably check whether you specify that your request should contain %Process.
To follow the activities of "Back to school on FHIR with DC FR" go to the comment of the original announcement!
Hi guys! Check out the comments under the original announcement to see what articles and activities are up so far!
For me, it's encountering a tough problem and finally finding a solution. The first part is what I enjoy the least, the second is what I get a kick of :)
It's been a bit more than a month since the start of this activity. Visit the original announcement to check out all 16 cool articles we've chosen so far!
You have to pass a super difficult test that a lot of people fail ![]()
Thanks for giving us this opportunity to share our ideas!
It's high time we delved deeper into this topic!
This sounds interesting!
Have you joined Global Masters already? Can you access any other challenge?
This is a really awesome improvement!