BMXNET 4.0 Developer API

TabletFromRpc is a double-dispatch method that is used by some developers. Developers create an RPC call the returns a properly format BMX command (custom or BMX SS ADO) that is then transmitted back to RPMS to retrieve the Data Table.

Namespace:  IndianHealthService.BMXNet
Assembly:  BMXNET40 (in BMXNET40.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
DataTable TableFromRPC(
	string rpcCommand,
	string rpcParameter,
	DataSet aDataSet,
	string aTableName,
	string context
)
Function TableFromRPC ( _
	rpcCommand As String, _
	rpcParameter As String, _
	aDataSet As DataSet, _
	aTableName As String, _
	context As String _
) As DataTable
DataTable^ TableFromRPC(
	String^ rpcCommand, 
	String^ rpcParameter, 
	DataSet^ aDataSet, 
	String^ aTableName, 
	String^ context
)

Parameters

rpcCommand
String
The remote procedure call name
rpcParameter
String
A carrot ^ delimited string of input parameters
aDataSet
DataSet
The DataSet to be populated with a resulting DataTable named aTableNAme
aTableName
String
The name of the DataTable in the DataSet to populate or to create
context
String

Return Value

The resulting DataTable

See Also