ReturnToClient

The ReturnToClient function is used to specify whether a data field is returned to the client or not. When no parameters are passed to the function, the default is to return the data field to the client.

Function parameters

Table 1. ReturnToClient assignment function parameters
Parameter order Input variable type Parameter data type Required parameter Description
1 Constant BOOLEAN No Indicate whether to return the data field to the client. The values for this parameter are:
  • Y - return the data field to the client
  • N - do not return the data field to the client

Example

The following XML shows an example of using the ReturnToClient function in an assignment element.
<assignment field="testBusDate"     type="ReturnToClient"    value="'Y'"/>
<assignment field="ibmNprBdDate"    type="ReturnToClient"    value="'N'"/>
In this example:
  • The testBusDate field is set to be returned to the client.
  • The ibmNprBdDate field is set to not be returned to the client.