Activity for nHapi

  • Chris Johns Chris Johns posted a comment on discussion Help

    I'm trying to create ORUs with report text in OBX-5. The customer wants tilde characters in OBX-5 to denote carriage returns. I believe the HL7 Standard allows this, so long as OBX-2 is TX. But no matter what I try, the tilde characters are always escaped as \R. I'm using nHapi 3.1.0 with VB.NET I've removed fields for simplicity of posting here. Any help would be greatly appreciated! Output: MSH|^~\&|||||20220115075025||ORU^R01|ABC|T|2.5 PV1|1 ORC|1 OBR|1 OBX|1|TX|||This\R\is\R\a\R\test\R\report...

  • Dustin Prevatt Dustin Prevatt posted a comment on discussion Help

    I was able to figure this out by creating a custom message model based on the default models from the library. After creating the custom segment i was then able to replicate the existing models and enter the custom segment within the appropriate location.

  • Dustin Prevatt Dustin Prevatt posted a comment on discussion Help

    Hello, I have been attempting to create a custom segment within an existing group, specifically the FINANCIAL group within a DFT_P03 message. I have been able to create the custom segment, however I can't seem to find a way to dictate where the custom segment should reside within the message. Any help with this is appreciated. Thank you!

  • rajesh vankayalapati rajesh vankayalapati posted a comment on discussion Help

    Hi Verena, I have the same problem but I don't understand what result is. can you be more specific on what the result in the above example is? Rajesh.

  • rajesh vankayalapati rajesh vankayalapati posted a comment on discussion Open Discussion

    I am not able to set the observation value, can someone please help me understand how to set this value? var obx = orderObservation.AddOBSERVATION().OBX; //Sequence: 1 obx.SetIDOBX.Value = setIdObx.ToString(); //Sequence: 2 obx.ValueType.Value = Constants.HL7Constants.OBXConstants.ValueType; //Sequence: 3 obx.ObservationIdentifier.Identifier.Value = result.LoincCode; obx.ObservationIdentifier.Text.Value = result.TestCode; obx.ObservationIdentifier.NameOfCodingSystem.Value = Constants.HL7Constants.OBXConstants.NameOfCodingSystem;...

  • Pavan Kumar Gupta Pavan Kumar Gupta posted a comment on discussion Help

    Hi, I want to create HL7 message PCD-04 and current nHAPI is only supporting until ORU_R30 message not ORU_R40. Is there any other way to extract ORU_R40 message? I am waiting for answer.

  • Oliamster Oliamster modified a comment on discussion Open Discussion

    Z-Segments are handled using a custom model class factory: public class CustomFactory : IModelClassFactory { //define the new factory for model class lookup } //then define the class for ZRX , public class ZRX : AbstractSegment { public ZRX():base(new ADT_A01(), new CustomFactory()) { } } ADT_A01 adt = new ADT_A01( new CustomFactory()); adt.AddNonStandardSegment("ZRX"); Consider this documentation

  • Oliamster Oliamster modified a comment on discussion Open Discussion

    Z-Segments are handled using a custom model class factory: public class CustomFactory : IModelClassFactory { //define the new factory for model class lookup } ADT_A01 p = new ADT_A01( new CustomContext());

  • Oliamster Oliamster posted a comment on discussion Open Discussion

    Z-Segments are handled using a custom model class factory: public class CustomFactory : IModelClassFactory { //define the new factory for model class lookup } PipeParser p = new PipeParser( new CustomContext());

  • ben sellens ben sellens modified a comment on discussion Open Discussion

    I am trying to create a custom (Z) segment to carry additional information within and ADT_A01 Message but dont seem to be able to get anywhere ADT_A01 message = new ADT_A01(); message.addNonstandardSegment("ZRX"); this doesnt appear to have any effect on the message object??

  • ben sellens ben sellens posted a comment on discussion Open Discussion

    I am trying to create a custoim (Z) segment to carry additional information within and ADT_A01 Message but dont seem to be able to get anywhere ADT_A01 message = new ADT_A01(); message.addNonstandardSegment("ZRX"); this doesnt wappear to have any effect on the message object??

  • Ryan Hill Ryan Hill posted a comment on discussion Open Discussion

    Never mind. I think I found my answer.

  • Ryan Hill Ryan Hill posted a comment on discussion Open Discussion

    On the product page, it mentions compatibility with version 2.5. Does that include version 2.5.1?

  • Anonymous modified a comment on ticket #24

    Can this be confirmed as a bug?

  • Koushik Gupta Koushik Gupta posted a comment on discussion Help

    Please Help me on this I have stuct on this line.I'm not getting pid 13.1 Which is...

  • Koushik Gupta Koushik Gupta posted a comment on discussion Open Discussion

    Please Help me on this I have stuct on this line.I'm not getting pid 13.1 Which is...

  • Koushik Gupta Koushik Gupta posted a comment on discussion Open Discussion

    Please Help me on this I have stuct on this line.I'm not getting pid 13.1 Which is...

  • David Grinberg David Grinberg posted a comment on discussion Help

    Are you able to provide an example HL7 message?

  • Reddy Reddy posted a comment on discussion Help

    I am getting below error : NHapi.Base.HL7Exception: Can't return repetition #4 of...

  • Anonymous modified a comment on ticket #25

    I cannot yet post a file example because I cannot be sure how much of the file needs...

  • Steve Short Steve Short posted a comment on discussion Open Discussion

    I know that nHapi has been moved to Codeplex but I've noticed that bug reports there...

  • Verena Verena posted a comment on discussion Help

    Finally I found a solution: Varies var = oul_obx.GetObservationValue(0); SN sn =...

  • Verena Verena posted a comment on discussion Help

    Hi, how is it possible to add an observation result to OBX in nHapi 2.5? I have accessed...

  • Usman Yasin Usman Yasin posted a comment on discussion Open Discussion

    Hi Guys, I need to know how can I add segment of ORC in my REF I12 message type....

  • techy techy posted a comment on discussion Help

    I am working on creating HL7 VXU V04 type message using NHapi V2.5. Below is the...

  • Trilok Acharya Trilok Acharya modified a comment on discussion Open Discussion

    Hi guys, I know this is an old issue, but I came across this problem when trying...

  • Trilok Acharya Trilok Acharya posted a comment on discussion Open Discussion

    Hi guys, I know this is an old issue, but I came across this problem when trying...

  • Pat Willmott Pat Willmott posted a comment on discussion Help

    I wonder if anyone can help me. I am attempting to parse a v2.4 ORU-R01 which contains...

  • Ajay Ajay posted a comment on discussion Open Discussion

    Hi Milenko, Thnks for the file which u have post for observation. Actually iam getting...

  • Mienko Djuricin Mienko Djuricin posted a comment on discussion Open Discussion

    ORU_R01_OBSERVATION has ORU_R01_OBSERVATION group incorrectly defined as required,...

1