UpdateReceiveParams Method
Retrieves the receive parameters for the function that was called.
Object Oriented Interface
public function doUpdateReceiveParams();
Procedural Interface
inerp_sapserver_do_updatereceiveparams($res);
Remarks
When the SAP system calls your installed function, the FunctionCall event will fire with the name of the function
being called. To process this function call, the first thing you must do is retrieve the ReceiveParams. The
ReceiveParams collection starts off empty. You must add the names of the parameters you wish to receive, and then
call UpdateReceiveParams. If the caller of the function provided values for the parameters you indicated, each
parameter contained in the ReceiveParams collection will now contain a value.
For instance:
SapServer1.AddReceiveParam(
"FIRSTNAME"
, PT_CHARACTERS)
SapServer1.AddReceiveParam(
"LASTNAME"
, PT_CHARACTERS)
SapServer1.UpdateReceiveParams
This method can only be used inside the FunctionCall event.