The second form of SOAPCALL, the action, may take as input either a single record or a recordset. Neither type of input produces any returned result--it simply launches the specified SOAP service, providing it input data.
Example:
//1 rec in, no result
SOAPCALL( 'https://service.example.com:8022/','MyModule.SomeService',
{STRING500 InData := 'Some Input Data'});
//recordset in, no result
SOAPCALL( InputDataset,'https://service.example.com:8022/','MyModule.SomeService',{STRING500 InData});
See Also: RECORD Structure, TRANSFORM Structure