Microsoft Dynamics NAV component for the AVA platform.
This is the component for working with Microsoft Dynamics NAV OData API on AVA platform.
The component provides ability to connect to Microsoft Dynamics NAV.
The technical notes page gives some technical details about AWS-S3 component like changelog and completeness matrix.
Please Note: From the platform version 20.51 we deprecated the component
LOG_LEVEL
environment variable. Now you can control logging level per each step of the flow.
This component has no trigger functions. This means it will not be accessible to select as a first component during the integration flow design.
Delete an existing entry with the criteria provided.
Input metadata is dynamically generated for specified object type. You need to set unique keys which specified in the Microsoft NAV OData metadata. For example:
Object type: Sales Order
Json schema:
{
"Document_Type": {
"type": "string",
"required": true,
"title": "Document_Type"
},
"No": {
"type": "string",
"required": true,
"title": "No"
}
}
You can find xml metadata using next url template: http://hostname:port/DynamicsNAV80/OData/$metadata
.
Output metadata is dynamically generated for specified object type.
Object type: Sales Order
Json schema:
{
"type": "object",
"properties": {
"result": {
"type": "string"
},
"criteria": {
"type": "object",
"properties": {
"Document_Type": {
"type": "string"
},
"No": {
"type": "string"
}
}
}
}
}