TransferOrders
Read, Insert and Delete Transfer Orders.
Table Specific Information
Select
The add-in will use the Zoho Inventory API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client-side within the add-in.
- Id supports the '=' comparison.
For example, the following queries are processed server side:
SELECT * FROM TransferOrders WHERE Id = '3350895000000089001'
Insert
Insert can be executed by specifying the TransferOrderNumber, Date, FromWarehouseId, ToWarehouseId and LineItems column. The columns that are not read-only can be inserted optionally. Following is an example of how to insert into this table.
INSERT INTO TransferOrders (TransferOrderNumber, Date, FromWarehouseId, ToWarehouseId, LineItems) VALUES ('TO-00001', '2018-03-23', '4815000000035003', '4815000000035003', 'TransferOrderLINEITEMS#TEMP')
Delete
Delete can be executed by specifying the Id in the WHERE Clause
For example:
DELETE FROM TransferOrders WHERE Id = '3350895000000089001'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | Long | True |
Unique ID generated by the server for the Transfer Order | |
CreatedById | Long | True |
Unique ID generated by the server for the Transfer Order | |
CreatedByName | String | False |
The name of the person who created Transfer Order. | |
CreatedTime | Datetime | True |
Time at which the Transfer Order was created. | |
Date | Date | False |
The date for the Transfer Order. | |
Description | Description | False |
The date for the Transfer Order. | |
TransferOrderNumber | String | False |
The Transfer Order number. | |
FromWarehouseId | Long | False |
Unique ID generated by the server for the Warehouse.This is used a unique identifier.This is a source warehouse. | |
FromWarehouseName | String | False |
Warehouse Name. | |
IsIntransitOrder | Boolean | False |
It states whether the transfer order is in transit or transferred.The default value is false. | |
ToWarehouseId | Long | False |
Unique ID generated by the server for the Warehouse.This is used a unique identifier.This is a destination warehouse. | |
TransferOrderNumber | String | False |
The Transfer Order number. This is unique for each transfer order. | |
LastModifiedById | Long | True |
The Id of the contact who modified the transfer order last | |
LastModifiedByName | String | True |
The name of the contact who modified the transfer order last. | |
LastModifiedTime | Datetime | True |
Time at which the Transfer Order was updated | |
QuantityTransfer | Integer | False |
Quantity. | |
Status | String | False |
Status. | |
LineItems | String | False |
A transfer can contain multiple line items. |