My project is
ORM - Received
ACK - Send
ORU - Send
The first 2 are already, now I will study the ORU, but can not find any examples
of how to attach a PDF file with test data / medical observations.
It may be ED (embedded) or RP (reference pointer) I think so.
any suggestions
Attach report in ORU
-
- Site Admin
- Posts: 256
- Joined: Sun Jun 05, 2011 8:06 pm
Re: Attach report in ORU
Hi,
Sample code for ED data type :
Sample code for ED data type :
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
var
msg :TdiORM_O01_25;
pdf_ed : TdiED_25;
begin
msg:=TdiORM_O01_25.Create;
msg.ORDER[0].ORDER_DETAIL.OBSERVATION[0].OBX.SetIDOBX.AsString:='1';
msg.ORDER[0].ORDER_DETAIL.OBSERVATION[0].OBX.ValueType.AsString:='ED';
pdf_ed:=TdiED_25.Create;
pdf_ed.SourceApplication.NamespaceID.AsString:='application';
pdf_ed.TypeofData.AsString:='PDF';
pdf_ed.Data.AsBase64:='PDF TEXT';
// pdf_ed.Data.Value:='Raw Data';
msg.ORDER[0].ORDER_DETAIL.OBSERVATION[0].OBX.ObservationValue[0]:=pdf_ed;
FreeAndNil(msg);
end;
Who is online
Users browsing this forum: No registered users and 1 guest