CallFunctionTarget¶
Any following options needs to be fulfilled.
Option 1¶
object
with following properties:
Property | Type | Required |
---|---|---|
Function |
Yes | |
Service |
Yes |
Function¶
Defintion of the OData function/action imports to be executed
- type: CallFunction
Service¶
The target OData Service
- type: Service
Option 2¶
Examples¶
Target with FunctionCall¶
// Execute a function call with result that returns an array of objects
{
"Target": {
"Function": {
"Name": "FindCustomer",
"Parameters": {
"FirstName": "{#Control:TextFieldFirstName/#Value}"
}
},
"Service": "/MyMDKApp/Services/MyOData.service",
}
}