define phrase basic-msg;
field data = variable-array( not(
end phrase;
What does the (not(
I have a transcription interface that is receiving transcription in Spanish and it seems like it processes the packets fine until it gets to a packet that has a “1c” in it. Then for some reason the engine tries to match phrases when the sending system isn’t done sending all the packets for the hl7 message yet. Is it because the transcription has a 1c in it and the mlp_pdl says the data can’t have an
If this is the case is there any problems with me modifying the mlp_pdl to remove that constraint so it looks like this:
define phrase basic-msg;
field data = variable-array;
end phrase;