JDBC Driver for Zoho Inventory

Build 22.0.8462

CompositeItemsMappedItems

Read the mapped items of the Composite items.

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.

  • MappedItemId supports the '=' comparison.
  • CompositeItemId supports the '=' comparison.
  • ItemId supports the '=' comparison.

For example, the following queries are processed server side:

SELECT * FROM CompositeItemsMappedItems WHERE MappedItemId = '3350895000000089001'

SELECT * FROM CompositeItemsMappedItems WHERE CompositeItemId = '205'

SELECT * FROM CompositeItemsMappedItems WHERE ItemId = '20130805'

Insert

Insert can be executed by specifying the Name,MappedItems,Sku,Rate and ItemType 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 CompositeItemsMappedItems(Name,Rate,Sku) VALUES ('PQRstub',98,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 CompositeItemsMappedItems SET Name = 'test2' WHERE MappedItemId = '3285934000000136008'

Delete

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

DELETE FROM CompositeItemsMappedItems WHERE MappedItemId = '3350895000000089001'

Columns

Name Type ReadOnly References Description
MappedItemId [KEY] Long False

Unique ID generated by the server for mapping the associated item with composite item

CompositeItemId Long False

CompositeItems.Id

Unique ID generated by the server for the Item.This is used as an identifier.

ActualAvailableStock Integer False

Stock based on Shipments and Receives minus ordered stock

AvailableStock Integer False

Stock based on Shipments and Receives

Description String False

Sample Description.

ImageId Long False

Unique identifier generated by the server for item image

ImageName String False

Name of the image

ImageType String False

Type of the image

IsComboProduct Boolean False

Defines whether the item is composite or not

ItemId Long False

Items.Id

Unique ID generated by the server for the Item.This is used as an identifier.

Name String False

Name of the composite item

PurchaseDescription String False

Purchase description of the item

PurchaseRate Integer False

Buying price of the item

Quantity Integer False

Quantity of item associated with the composite item

Rate Integer False

Selling price of the item

Sku String False

Stock Keeping Unit value of the item.

StockOnHand Integer False

Stock based on Invoices and Bills

Unit String False

Unit of Item

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