PriceBookItems
List items of pricebooks.
Table Specific Information
Select
The adapter will use the API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client-side within the adapter.
- Id supports the '=' comparison.
- PricebookItemId supports the '=' comparison.
For example, the following queries are processed server side:
SELECT * FROM PriceBookItems WHERE Id = '3350895000000089001'
Insert
Insert can be executed by specifying the Name,CurrencyId,PricebookType,IsIncrease and SalesOrPurchaseType 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 PriceBookItems (PricebookRate) VALUES ('12')
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 PriceBookItems SET PricebookRate = '67' WHERE Id = '3350895000000089001'
Delete
Delete can be executed by specifying the Id in the WHERE Clause
For example:
DELETE FROM PriceBookItems WHERE Id = '3350895000000089001'
Columns
Name | Type | References | Description |
PricebookId | Long |
Pricebooks.Id | Unique ID generated by server for the price book |
ItemId | Long | Unique ID generated by server for Item | |
PricebookItemId [KEY] | Long | Unique ID generated by server for Price book Item | |
PricebookRate | Integer | Rate of the price book for the Items |