Padmaja Konduru · May 7, 2025 go to post

Thank you Ashok!

I ran a test including control characters and Unicode characters. Only special characters within the range (0-31,127-159) are removed.

Padmaja Konduru · Mar 30, 2025 go to post

Hi Enrico,

Thanks for your response,

The inbound message doesn't have MSH:18 value. I tried using UTF-18 but didn't work. Is there any possibility to resolve the issue to decode the characters correctly?

Padmaja Konduru · Mar 29, 2025 go to post

This is TCP HL7 Service using class 'EnsLib.HL7.Service.TCPService' and adapter is EnsLib.HL7.Adapter.TCPInboundAdapter. while occuring the issue I set Default Char Encoding as "!iso-8859-1" but it is not working as expected. It is converting utf8 charctaer to '?'.

Padmaja Konduru · Feb 27, 2025 go to post

Hi Krishnaveni,

You can create custom class extends Ens.BusinessOperation and use the adapter as FTP Outbound Adapter

Parameter ADAPTER = "EnsLib.FTP.OutboundAdapter";

Write the below steps in Method sendStream() As %Status

{

Set path = "/tmp/data" (example) 

Set sc = ..Adapter.FilePathSet(path)

// Write your code here

}

Padmaja Konduru · Jan 14, 2025 go to post

Thank you Yaron for suggestion, it has been updated. Both the lines provide the same result.

Thanks,

Padmaja Konduru · Jul 4, 2024 go to post

Set time = "2024-07-04 13:58:43.628"

W !,##class(Ens.Util.Time).ConvertDateTime(time,"%q(1)","%q(0)")

20240704135843

Padmaja Konduru · Apr 15, 2024 go to post

Thank you Luis, I have updated query and it is working fine. Thank you so much for your response.

Padmaja Konduru · Oct 19, 2023 go to post

Hi Luis,

I have run the command as mentioned in the document "C:\InterSystems\IRIS\bin>irispip install --target C:\InterSystems\IRIS\mgr\python numpy" and it created package in IRIS installation path C:\InterSystems\HealthConnect\mgr\python but library classes not installed in Studio. I am not sure about how to import Python classes into %SYSTEM/%SYS package.

I am planning to use [Language=python] and import python code into object script. 

Padmaja Konduru · Oct 5, 2023 go to post

You can declare the Property to %Stream.GlobalCharacter and you can use code function and Write the content in the variable example are the below commands. It works for me. 

Example:

Property Content As %Stream.GlobalCharacter;

Transformation in DTL :
Do target.Content.Write( source.ClinicalReport.content)