JDBC Driver for Zoho Inventory

Build 22.0.8462

InventoryAdjustmentsLineItems

Line items of the inventory adjustments.

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.
  • InventoryAdjustmentsId supports the '=' comparison.

For example, the following queries are processed server side:

SELECT * FROM InventoryAdjustmentsLineItems WHERE Id = '3350895000000089001'

Insert

Insert can be executed by specifying the QuantityAdjusted and ItemId 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 InventoryAdjustmentsLineItems(QuantityAdjusted,Description,ItemId) VALUES ('11' , 'value',9)

Update

Update can be executed by specifying the Id in the WHERE Clause. The columns that are not read-only can be Updated. For example:

UPDATE InventoryAdjustmentsLineItems SET Description = 'poor quality', QuantityAdjusted = '9', ItemId = 9 WHERE Id = '3350895000000090009'

Delete

Delete can be executed by specifying the Id in the WHERE Clause For example:

DELETE FROM InventoryAdjustmentsLineItems WHERE Id = '3350895000000089001'

Columns

Name Type References Description
InventoryAdjustmentsId Long Unique ID generated by the server for the item adjustment.
Id [KEY] Long Unique ID generated by the server for each line item.
ItemId Long Unique ID generated by the server for the item.
Name String Name of the line item.
Description String Sample Description.
QuantityAdjusted Double The adjusted quantity of the line item.
ItemTotal Double Total of line item.
Unit String Unit of line item.
IsComboProduct Boolean boolean to see is_combo_product
AdjustmentAccountId Long Unique
AdjustmentAccountName String Name of the Adjustment Account.
WarehouseId Long Unique ID generated by the server for the Warehouse.
WarehouseName String Name of the Warehouse.

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