WebServiceActionContext.AddEntityKey(Integer, Any) Method
Version: Available or changed with runtime version 2.0.
Add a new <fieldId, value> pair to the collection of entity keys.
Syntax
[Ok := ] WebServiceActionContext.AddEntityKey(FieldId: Integer, FieldValue: Any)
Parameters
WebServiceActionContext
Type: WebServiceActionContext
An instance of the WebServiceActionContext data type.
FieldId
Type: Integer
The field ID of the entity key.
FieldValue
Type: Any
The value for the field in the entity key.
Return Value
[Optional] Ok
Type: Boolean
true if adding the entity key succeeded, otherwise false. If you omit this optional return value and the operation does not execute successfully, a runtime error will occur.
Example
actionContext.AddEntityKey(Rec.FieldNO(Id), ToSalesHeader.Id);
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