Connector Operations
Following operations would be performed by Microsoft Dynamics NAV 2013 connector
Operation | Description |
Create | This operation creates a single record. For example, for the currency, this operation creates a new currency. The supplied record object is overwritten with the version that is created by the page. |
CreateMultiple | This operation creates a set of records. The supplied record object is overwritten with the version that is created by page. |
Read | This operation reads a single record. |
ReadMultiple | This operation reads a filtered set of records. This operation returns an array of entities. The ReadMultiple operation allows the consumer of a Web Service to specify the number of records to be returned at one time. This can reduce load on the server. |
Update | This operation updates a single record. The updated record is passed as a reference and is updated with the latest version. |
UpdateMultiple | This operation updates a set of records. The updated array of records is passed as a reference and is updated with the latest version. |
IsUpdated | This operation checks if an object has been updated since the key was obtained. This operation returns true if the object has been updated by any user; otherwise, false. Concurrency management will prevent a record being changed if it has been subsequently updated. This check will proactively prevent that failure. |
Delete<part> | This operation deletes records on a subpage of the current page. This operation is exposed only by pages that have subpages, which are pages that have parts of type page |