go to post Luis Angel Pére... · Jul 27, 2023 The 0 means that has been executed succesfully. Are you executing from any class or from terminal? Maybe you need to redirect the output into a file: https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls...
go to post Luis Angel Pére... · Jul 27, 2023 Have you assigned privileges to read the database of the namespace?
go to post Luis Angel Pére... · Jul 27, 2023 Try enabling the I/O log from the business operation configuration.
go to post Luis Angel Pére... · Jul 27, 2023 Have you tried in OnInit method something like this? : Set ..Adapter.ConnectTimeout = 15
go to post Luis Angel Pére... · Jul 27, 2023 Do 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
go to post Luis Angel Pére... · Jul 27, 2023 Well...you can call netstat from IRIS...for example: set status = $ZF(-100, "/LOGCMD", "netstat", "-ano", "-p", "tcp")
go to post Luis Angel Pére... · Jul 26, 2023 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.
go to post Luis Angel Pére... · Jul 26, 2023 Hi Scott! What application are you using to send the POST call? Is it a web application? IRIS?
go to post Luis Angel Pére... · Jul 25, 2023 As you can see in the documentation of the resouce the encounter is optional (0..1): http://hl7.org/fhir/R4/allergyintolerance.html
go to post Luis Angel Pére... · Jul 25, 2023 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.
go to post Luis Angel Pére... · Jul 25, 2023 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" } }
go to post Luis Angel Pére... · Jul 25, 2023 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.cls...
go to post Luis Angel Pére... · Jul 24, 2023 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.
go to post Luis Angel Pére... · Jul 22, 2023 Please, check the ODBC log, just to confirm what is the exact error.
go to post Luis Angel Pére... · Jul 22, 2023 Have you tried to check "Disable Query Timeout" option on ODBC configuration? Sorry, my Windows is configured on spanish.
go to post Luis Angel Pére... · Jul 19, 2023 If you want to configure jwt validation this is a great article: https://community.intersystems.com/post/creating-rest-api-jwt-authentica...
go to post Luis Angel Pére... · Jul 19, 2023 And for the API Rest: https://community.intersystems.com/post/creating-rest-service-iris
go to post Luis Angel Pére... · Jul 19, 2023 And take a look at the purge of the production data: https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls...
go to post Luis Angel Pére... · Jul 19, 2023 You can start compressing Journals:https://docs.intersystems.com/healthconnectlatest/csp/docbook/DocBook.UI...