WebServiceActionContext.SetResultCode(WebServiceActionResultCode) Method
Version: Available or changed with runtime version 2.0.
Sets the web service action result status code.
Syntax
WebServiceActionContext.SetResultCode(ResultCode: WebServiceActionResultCode)
Parameters
WebServiceActionContext
Type: WebServiceActionContext
An instance of the WebServiceActionContext data type.
ResultCode
Type: WebServiceActionResultCode
The new web service action result status code.
Example
...
// Set the result code to inform the caller that an item was created.
actionContext.SetResultCode(WebServiceActionResultCode::Created);
...
For a complete code example, see Creating and Interacting with an OData V4 Bound Action.
Related information
WebServiceActionContext Data Type
Creating and Interacting with an OData V4 Bound Action
Get Started with AL
Developing Extensions