Have you assigned privileges to read the database of the namespace?
- Log in to post comments
Have you assigned privileges to read the database of the namespace?
Try enabling the I/O log from the business operation configuration.
Have you tried in OnInit method something like this? :
Set ..Adapter.ConnectTimeout = 15Do you mean how to write the range in the OBX segment? I've this example of a range:
OBX|13|NM|MO^# Monocitos^SNM||0.00|#|0.2-0.9||||F|||20230330133551
Well...you can call netstat from IRIS...for example:
set status = $ZF(-100, "/LOGCMD", "netstat", "-ano", "-p", "tcp")There is a DTL by default when you install the FHIR server or the FHIR adapter...in my case I've installed the adapter and the DTL is named:
HS.FHIR.DTL.vR4.SDA3.AllergyIntolerance.Allergy
This transformation is used to parse an object of type HS.FHIR.DTL.vR4.Model.Resource.AllergyIntolerance into a HS.SDA3.Allergy, you can use it as a reference for your transformation.
Hi Scott! What application are you using to send the POST call? Is it a web application? IRIS?
Don't forget to check the answer as correct!
As you can see in the documentation of the resouce the encounter is optional (0..1):
http://hl7.org/fhir/R4/allergyintolerance.html
.png)
I guess that you only have to send a POST with this json as body (updating the references to your patient and practitioner - you can remove it) from a Postman to your FHIR endpoint.
Something like this example?
http://hl7.org/fhir/R4/allergyintolerance-fishallergy.json.html
{
"resourceType": "AllergyIntolerance",
"id": "fishallergy",
"text": {
"status": "additional",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>allergy is to fresh fish. Tolerates canned fish</p>\n <p>recordedDate:2015-08-06T00:00:00-06:00</p>\n <p>substance:Fish - dietary (substance)</p>\n </div>"
},
"identifier": [
{
"system": "http://acme.com/ids/patients/risks",
"value": "49476535"
}
],
"clinicalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
"code": "active",
"display": "Active"
}
]
},
"verificationStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
"code": "confirmed",
"display": "Confirmed"
}
]
},
"category": [
"food"
],
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "227037002",
"display": "Fish - dietary (substance)"
}
],
"text": "Allergic to fresh fish. Tolerates canned fish"
},
"patient": {
"reference": "Patient/example"
},
"recordedDate": "2015-08-06T15:37:31-06:00",
"recorder": {
"reference": "Practitioner/example"
}
}If your Business Operation is deployed in a Production you can configure the default options of EnsLib.HTTP.OutboundAdapter to control timeouts and retries:
https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cl…
.png)
Could you try to run the data load just for the 10 problematic tables? Just to be sure that is not a specific problem of those tables.
Please, check the ODBC log, just to confirm what is the exact error.
Have you tried to check "Disable Query Timeout" option on ODBC configuration?
.png)
Sorry, my Windows is configured on spanish.
If you want to configure jwt validation this is a great article:
https://community.intersystems.com/post/creating-rest-api-jwt-authentic…
And for the API Rest:
https://community.intersystems.com/post/creating-rest-service-iris
And take a look at the purge of the production data:
https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cl…
You can start compressing Journals:
https://docs.intersystems.com/healthconnectlatest/csp/docbook/DocBook.U…
Take a look at this question of the community:
https://community.intersystems.com/post/how-copy-array-values-json-obje…
Well, I'll answer you from my experience, maybe I'm wrong.
About your first question, you are totally free to use a encoded BP or BPL and DTL, as you prefer. I usually prefer to use BP by code for custom objects and DTL and BPL when I work with HL7 messages...why? because I'm too lazy to write code foreach transformation of field in an HL7 message.
The Business Service used by the RecordMapper has a property called Synchronous Send:
When you check it the Business Service is going to send the record mapped in a sync call to your BP, so it's not going to read a new line of the file until a response is received from the destination.
About the OnRespone, you can check the official documentation: https://docs.intersystems.com/iris20231/csp/docbook/DocBook.UI.Page.cls…
I usually implement the OnResponse to receive Async responses from Business Operations called by my BP, in your case I think that it's unnecessary, but this is a personal opinion.
You can see in this post some allowed adaptations by code of the business rules, but always in the context of a production.
https://community.intersystems.com/post/how-edit-fields-intersystems-en…
I don't think that is possible out of the context of a production, at the end the destination of the routed message is always a business component deployed in a production, the context info and the messages are linked to components of the productions too.
I think that is easier to learn objectscript than try to adapt the behavior of the business rules.
Check you pool connections, it looks like you have a pool of 100 and when you try to open the 101 connection it fails.
Maybe this page put you in the right direction:
https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cl…
Maybe it's too obvious but, have you tried to cast the column?
CAST(DRIVER AS VARCHAR(8000)) AS DRIVERNot sure if Private property is what you are looking for:
https://docs.intersystems.com/iris20231/csp/docbook/DocBook.UI.Page.cls…

😂
You have to create a new class that extends Ens.StringResponse, then you will be able to add so many properties as you need in your new class.
Please, check this URL: https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cl…
Second position is the best position!
Well, from my experience you will need the same databases on your local instance, so you will need to load a backup from the original into the local instance and after that apply the journal file generated after the creation of this backup from the original.