Items
Lists list items based on the search criteria.
テーブル固有の情報
Select
本製品 は、SAP Concur API を使用して検索条件に基づきリストアイテムを取得します。
デフォルトでは、プロバイダーは各リストの最初のレベルのアイテムのみを返します。 一意のアイテムのみが返されます。同じアイテムが複数のリストに存在する場合、一度だけ表示されます。
次のクエリでは、本製品 はSAP Concur API に処理をオフロードします。
SELECT * FROM Items where ListId = '665E58E7E1226346BC424861DEC93F30' SELECT * FROM Items where ListId IN ( '3e5ce609-bcf7-7d49-884c-baf70588d4bc','241563a3-bf89-4842-a0fb-6cbd06c87c0c')
Insert
Item を作成するには、ListItems を参照してください。
Update
UPDATE Items SET value = 'updatedListItem', ShortCode='VFAL1' WHERE ID = '54f19bfa-aef0-2645-b3a4-3b2f15749858'
Delete
DELETE FROM Items WHERE Id = '54f19bfa-aef0-2645-b3a4-3b2f15749858'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | False |
The unique identifier of the list item. | |
| Code | String | False |
List item long code. | |
| ShortCode | String | False |
List item short code. | |
| Value | String | False |
List item value. | |
| ParentId | String | False |
The unique identifier of the parent list item. | |
| Level | Int | False |
Level of the list item within the list. | |
| HasChildren | Boolean | False |
If true, the list item has children in this particular list. | |
| Lists | String | False |
The unique identifiers of the lists that contains the list item. The list item may exist under one or more lists. | |
| IsDeleted | Boolean | False |
Indicates the deleted state of the item in a particular list. If false, the list item is not deleted from one or more lists. The lists field will include only the lists that contain the list item in a not-deleted state. isDeleted will only be true when the list item is deleted from all lists. The lists field will include all lists that contain the list item. デフォルト値はfalseです。 | |
| ListId | String | False |
Lists.Id |
The unique identifier of the list that contains the list item. |