LineItemGroups
Create, update, delete, and query the SuiteCRM line items groups
テーブル固有の情報
Select
WHERE 句で任意の条件を使用して、Line Item Groups テーブルをクエリできます。本製品 はSuiteCRM API を使用して結果をフィルタリングします。
SELECT * FROM [Line Item Groups] WHERE Discount > 0
Insert
書き込み可能なカラムを指定して、Line Item Groups エントリを作成します。
INSERT INTO [Line Item Groups] ([Group Name], Currency, Number) VALUES ('New Group', 'USD', 1)
Update
Id を指定して、書き込み可能なLine Item Groups エントリカラムを更新できます。
UPDATE [Line Item Groups] SET Tax = 450 WHERE Id = 'Test123'
Delete
Id を指定して、Line Item Group を削除します。
DELETE FROM [Line Item Groups] WHERE Id = '10003'
Columns
| Name | Type | ReadOnly | Description |
| ID [KEY] | String | False |
The unique identifier of the line items group. |
| Assignedto | String | True |
The user name of the user assigned to the record. |
| AssignedUserId | String | False |
The Id of the user assigned to the record. |
| CreatedById | String | True |
The Id of the user who created the record. |
| CreatedByName | String | True |
The name of the user who created the record. |
| Currency | String | False |
Id of the currency used for currency values |
| DateCreated | Datetime | True |
The date the record was created. |
| DateModified | Datetime | True |
The date the record was last modified. |
| Deleted | Bool | False |
The record deletion indicator. |
| Description | String | False |
Description for the line items group |
| Discount | Double | False |
Group's discount value |
| Discount(DefaultCurrency) | Double | True |
Group's discount value in the system's default currency |
| GroupName | String | False |
Name assigned to the line items group |
| GroupTotal | Double | True |
Group's total amount |
| GroupTotal(DefaultCurrency) | Double | True |
Group's total amount in the system's default currency |
| ModifiedById | String | True |
The Id of the user who last modified the record. |
| ModifiedByName | String | True |
The name of the user who last modified the record. |
| Number | Int | False |
Number assigned to the group |
| LBL_PARENT_ID | String | False |
Parent record of this group |
| LBL_FLEX_RELATE | String | True |
Group's parent name |
| ParentType | String | False |
Parent't type of this group |
| Subtotal | Double | False |
Group's subtotal amount |
| Subtotal(DefaultCurrency) | Double | False |
Group's subtotal amount in the system's default currency |
| SubtotalTax | Double | True |
Group's subtotal and amount |
| SubtotalTaxAmount | Double | True |
Group's subtotaland tax amount in the system's default currency |
| Tax | Double | False |
Group's tax amount |
| Tax(DefaultCurrency) | Double | True |
Group's tax amount in the system's default currency |
| Total | Double | True |
Group's total amount in the system's default currency |
| Total(DefaultCurrency) | Double | True |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| Rows@Next | String |
Identifier for the next page of results. Do not set this value manually. |