Connector Operations
Following operations would be performed by Microsoft Dynamics GP 2013 connector:
Operation | Description |
Create | This method adds new data to Dynamics GP and use objects to specify the type of data being created and the values to be saved. |
GetByKey | When objects are retrieved individually, user must specify the unique key value for the object you want to retrieve. The "GetByKey" methods in the Dynamics GP Service are used to retrieve individual objects |
GetList | When objects are returned as a list, you will supply a set of criteria that indicate which objects you want to retrieve. The Dynamics GP Service has criteria objects that you will use to specify criteria. The "GetList" methods in the Dynamics GP Service are used to retrieve lists of objects. |
Update | The "Update" methods are used to change the values of an existing object's properties. The object is used as a parameter for this operation. |
Delete | The “Delete” methods are used to delete the object based on key values provided. |
Void | The “void” methods are used to void the object but does not delete the object. |