User bio
404 bio not found
Member since Mar 5
Posts:
Replies:
You won't believe the solution !!
I needed to change the send instructions with the clone object, pOutput, and NOT the HL7 message object, pRequest.
Example:
//$$$ThrowOnError(..SendRequestAsync(..VistaTarget, pRequest, 1, "OutputCernerToVistaORM"))
// 03272025 Must make a new command that uses the clone object instead of the HL7 message object which is immutable
$$$ThrowOnError(..SendRequestAsync(..VistaTarget, pOutput, 1, "OutputCernerToVistaORM")) // Must use the object for the clone
This is resolved.
Now, I need to add the CR/LF
I also tried this outside the loop;
Certifications & Credly badges:
Gary has no Certifications & Credly badges yet.
Global Masters badges:
Gary has no Global Masters badges yet.
Followers:
Gary has no followers yet.
Following:
Again , thanks, Your help made a difference solving the issues.