JDBC Driver for Zoho Inventory

Build 22.0.8462

TransferOrders

Read, Insert and Delete Transfer Orders.

Table Specific Information

Select

The driver 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 driver.

  • 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

Date Date 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.

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.

LineItems String False

A transfer can contain multiple line items.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462