RPC HELP TParamRecord Mult Property Example: Difference between revisions
From VistApedia
Jump to navigationJump to search
Created page with " RPC Broker Help Home <h2>Mult Example</h2> The following program code demonstrates how the Mult property can be used to pass several data elements to the..." |
(No difference)
|
Latest revision as of 00:19, 4 July 2015
Mult Example
The following program code demonstrates how the Mult property can be used to pass several data elements to the VistA M Server in one parameter:
procedure TForm1.Button1Click(Sender: TObject);
begin
with brkrRPCBroker1 do begin
Param[0].PType :=list;
Param[0].Mult['"NAME"'] := 'DOE,JOHN';
Param[0].Mult['"SSN"'] := '123456789';
RemoteProcedure := 'SETUP PATIENT INFO';
Call;
end;
end;
Assuming variable P1 is used on the VistA M Server to receive this array, it would look like the following:
P1("NAME")=DOE,JOHN
P1("SSN")=123456789