CData Cloud offers access to Smaregi across several standard services and protocols, in a cloud-hosted solution. Any application that can connect to a SQL Server database can connect to Smaregi through CData Cloud.
CData Cloud allows you to standardize and configure connections to Smaregi as though it were any other OData endpoint or standard SQL Server.
This page provides a guide to Establishing a Connection to Smaregi in CData Cloud, as well as information on the available resources, and a reference to the available connection properties.
Establishing a Connection shows how to authenticate to Smaregi and configure any necessary connection properties to create a database in CData Cloud
Accessing data from Smaregi through the available standard services and CData Cloud administration is documented in further details in the CData Cloud Documentation.
Connect to Smaregi by selecting the corresponding icon in the Database tab. Required properties are listed under Settings. The Advanced tab lists connection properties that are not typically required.
The ContractId and AccessToken parameters are required for the Smaregi driver. After logging into Smaregi, navigate to Settings -> System Integration -> Smaregi API Settings. In the API Receiving Settings section, change the Use Receiving function to Enable and click Generate AccessToken to obtain an AccessToken. Next, in order to enable the required API access, change the required functionality to Use in the Feature Settings section.
To authenticate with OAuth, AuthScheme must be set to OAuth or OAuthClient . OAuth authentication uses UserAccssToken and OAuthClient authentication uses AppAccessToken. For full functionality, use OAuthClient authentication with AppAccessToken. To use OAuthClient authentication, you must create a custom OAuth application, as described in Creating a Custom OAuth Application.
Automatic Refresh of the OAuth Access Token
To have the Cloud automatically refresh the OAuth access token:
Manual refresh of the OAuth access token:
The only value needed to manually refresh the OAuth access token is the OAuth refresh token.
Store the OAuth refresh token so that you can use it to manually refresh the OAuth access token after it has expired.
To authenticate with OAuth JWT, AuthScheme must be set to OAuthJWT. You must also create a custom OAuth application, as described in Creating a Custom OAuth Application.
After setting the following connection properties, you are ready to connect:
To register a custom OAuth application and obtain the OAuth client credentials, client id, and client secret:
By default, the Cloud attempts to negotiate TLS with the server. The server certificate is validated against the default system trusted certificate store. You can override how the certificate gets validated using the SSLServerCert connection property.
To specify another certificate, see the SSLServerCert connection property.
To authenticate to an HTTP proxy, set the following:
Set the following properties:
See Smaregi Data Model for the available entities in the Smaregi Data Model.
See PlatformAPI Data Model for the available entities in the Platform API Data Model.
This section shows the available API objects and provides more information on executing SQL to Smaregi APIs.
Tables describes the available tables. Table are statically defined to model Products, Customers, Shippings, and more.
Views describes the available views. Views are statically defined to model Stores, ShippingDetails and more. Views may not be modified, but can be used to supplement queries to the tables.
The Cloud models the data in Smaregi as a list of tables in a relational database that can be queried using standard SQL statements.
| Name | Description |
| BargainProducts | Usage information for the operation BargainProducts.rsd. |
| Bargains | Usage information for the operation Bargains.rsd. |
| BargainStores | Usage information for the operation BargainStores.rsd. |
| Categories | Usage information for the operation Categories.rsd. |
| Customers | Usage information for the operation Customers.rsd. |
| Losses | Usage information for the operation Losses.rsd. |
| ProductInventoryReservations | Usage information for the operation ProductInventoryReservations.rsd. |
| ProductPrices | Usage information for the operation ProductPrices.rsd. |
| ProductReserveItemLabels | Usage information for the operation ProductReserveItemLabels.rsd. |
| ProductReserveItems | Usage information for the operation ProductReserveItems.rsd. |
| Products | Usage information for the operation Products.rsd. |
| ProductStores | Usage information for the operation ProductStores.rsd. |
| Receivings | Usage information for the operation Receivings.rsd. |
| Shipments | Usage information for the operation Shipments.rsd. |
| Shippings | Usage information for the operation Shippings.rsd. |
| Staff | Usage information for the operation Staff.rsd. |
| Stocks | Usage information for the operation Stocks.rsd. |
| StorageInfo | Usage information for the operation StorageInfo.rsd. |
| Storages | Usage information for the operation Storages.rsd. |
| Stores | Usage information for the operation Stores.rsd. |
| TransactionHeads | Usage information for the operation TransactionHeads.rsd. |
Usage information for the operation BargainProducts.rsd.
| Name | Type | ReadOnly | References | Description |
| BargainProductId [KEY] | Long | False | ||
| BargainId | Integer | False |
Bargains.BargainId | |
| TargetDivision | Integer | False | ||
| TargetId | String | False | ||
| Division | Integer | False | ||
| Value | Decimal | False |
Usage information for the operation Bargains.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime data type columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT BargainName, TermStart FROM Bargains SELECT BargainName, TermStart FROM Bargains WHERE BargainName LIKE 'TestBargain%' ORDER BY TermStart
To add a Bargain, specify all fields.
INSERT INTO Bargains (BargainId, BargainName, TermStart, TermEnd) VALUES (91, 'TestBargain91', '2019-06-28', '2019-09-28')
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a Bargain, specify all fields.
UPSERT INTO Bargains (BargainId, BargainName, TermStart, TermEnd) VALUES (8, 'TestBargain9', '2019-06-28', '2019-09-28')
To add/update multiple Bargains, specify all fields.
INSERT INTO Bargains#TEMP (bargainId, BargainName, TermStart, TermEnd) VALUES (1, 'TestBargain1', '2019-06-28', '2019-09-28') INSERT INTO Bargains#TEMP (bargainId, BargainName, TermStart, TermEnd) VALUES (3, 'TestBargain3', '2019-02-28', '2019-03-28') UPSERT INTO Bargains (bargainId, BargainName, TermStart, TermEnd) SELECT bargainId, BargainName, TermStart, TermEnd FROM Bargains#TEMP
Smaregi allows updates for the BargainName, TermStart and TermEnd columns.
UPDATE Bargains SET BargainName = 'Sample', TermStart = '2019-06-25', TermEnd = '2019-11-25' WHERE BargainId = 8
Bargains can be deleted by providing the BargainId.
DELETE FROM Bargains WHERE BargainId = 1
INSERT INTO Bargains#TEMP (BargainId) VALUES (90) INSERT INTO Bargains#TEMP (BargainId) VALUES (91) DELETE FROM Bargains WHERE EXISTS SELECT BargainId FROM Bargains#TEMP
| Name | Type | ReadOnly | References | Description |
| BargainId [KEY] | Integer | False | ||
| BargainName | String | False | ||
| TermStart | Date | False | ||
| TermEnd | Date | False |
Usage information for the operation BargainStores.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime data type columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT StoreId FROM BargainStores WHERE BargainStoreId != 22 AND BargainId >= 23
To add a BargainStore, specify the BargainId and StoreId fields.
INSERT INTO BargainStores (BargainId, StoreId) VALUES (1, 1) INSERT INTO BargainStores (BargainStoreId, BargainId, StoreId) VALUES (5, 1, 1)
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a BargainStore, specify the BargainId and StoreId fields.
UPSERT INTO BargainStores (BargainStoreId, BargainId, StoreId) VALUES (4, 2, 1)
To add/update BargainStores, specify the BargainId and StoreId fields.
INSERT INTO BargainStores#TEMP (BargainId, StoreId) VALUES (4, 1) INSERT INTO BargainStores#TEMP (BargainId, StoreId) VALUES (5, 1) UPSERT INTO BargainStores (BargainId, StoreId) SELECT BargainId, StoreId FROM BargainStores#TEMP
Smaregi allows updates for the BargainId and StoreId columns.
UPDATE BargainStores SET BargainId = 3, StoreId = 3 WHERE BargainStoreId = 4
BargainStores can be deleted by providing the BargainProductId.
DELETE FROM BargainStores WHERE BargainStoreId = 4
INSERT INTO BargainStores#TEMP (BargainStoreId) VALUES (5) INSERT INTO BargainStores#TEMP (BargainStoreId) VALUES (6) DELETE FROM BargainStores WHERE EXISTS SELECT BargainStoreId FROM BargainStores#TEMP
| Name | Type | ReadOnly | References | Description |
| BargainStoreId [KEY] | Long | False | ||
| BargainId | Integer | False |
Bargains.BargainId | |
| StoreId | Integer | False |
Usage information for the operation Categories.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime data type columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following query is processed server side:
SELECT CategoryName, CategoryCode FROM Categories ORDER BY CategoryCode
To add a Category, specify the CategoryId, CategoryCode and CategoryName fields.
INSERT INTO Categories (CategoryId, CategoryCode, CategoryName) VALUES (10, 'CategoryCode10', 'CategoryName10')
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a Category, specify the CategoryId, CategoryCode and CategoryName fields.
UPSERT INTO Categories (CategoryId, CategoryCode, CategoryName) VALUES (6, 'CategoryCode', 'CategoryName')
To add/update Categories, specify the CategoryId, CategoryCode and CategoryName fields.
INSERT INTO Categories#TEMP (CategoryId, CategoryCode, CategoryName) VALUES (11, 'CategoryCode11', 'CategoryName11') INSERT INTO Categories#TEMP (CategoryId, CategoryCode, CategoryName) VALUES (12, 'CategoryCode12', 'CategoryName12') UPSERT INTO Categories (CategoryId, CategoryCode, CategoryName) SELECT CategoryId, CategoryCode, CategoryName FROM Categories#TEMP
Smaregi allows UPDATEs for the CategoryCode, CategoryName, CategoryAbbr, CategoryGroupId, ParentCategoryId, DisplaySequence, DisplayFlag, PointNotApplicable, TaxFreeDivision, Color and Tag columns.
UPDATE Categories SET CategoryCode = 'CatCode', CategoryName = 'Updated', CategoryAbbr = 'CatAbbr', CategoryGroupId = 2, ParentCategoryId = 1, DisplaySequence = 1, DisplayFlag = 0, PointNotApplicable = 1, TaxFreeDivision = 1, Tag = 'test' WHERE CategoryId = 13
Categories can be deleted by providing the CategoryId.
DELETE FROM Categories WHERE CategoryId = 2
INSERT INTO Categories#TEMP (CategoryId) VALUES (11) INSERT INTO Categories#TEMP (CategoryId) VALUES (12) DELETE FROM Categories WHERE EXISTS SELECT CategoryId FROM Categories#TEMP
| Name | Type | ReadOnly | References | Description |
| CategoryId [KEY] | Integer | False | ||
| CategoryCode | String | False | ||
| CategoryName | String | False | ||
| CategoryAbbr | String | False | ||
| CategoryGroupId | Integer | False | ||
| ParentCategoryId | Integer | False | ||
| Level | Integer | True | ||
| DisplaySequence | Integer | False | ||
| DisplayFlag | Integer | False | ||
| PointNotApplicable | Integer | False | ||
| TaxFreeDivision | Integer | False | ||
| Color | String | False | ||
| Tag | String | False | ||
| InsDateTime | Datetime | True | ||
| UpdDateTime | Datetime | True |
Usage information for the operation Customers.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime data type columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT CustomerCode, CustomerNo FROM Customers WHERE FirstName LIKE 'Na%'
To add a Customer, specify the CustomerId, CustomerCode, FirstName, LastName, FirstKana, LastKana and Sex fields.
INSERT INTO Customers (CustomerId, CustomerCode, FirstName, LastName, FirstKana, LastKana, Sex) VALUES (123, 'CustomerCode123', 'Name123', 'Surname123', 'KanaName123', 'KanaSurname123', '2')
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a Customer, specify the CustomerId, CustomerCode, FirstName, LastName, FirstKana, LastKana and Sex fields.
UPSERT INTO Customers (CustomerId, CustomerCode, FirstName, LastName, FirstKana, LastKana, Sex) VALUES (216, 'CustomerCode', 'Name', 'Surname', 'KanaName', 'KanaSurname', '2')
To add/update Customers, specify the CustomerId, CustomerCode, FirstName, LastName, FirstKana, LastKana and Sex fields.
INSERT INTO Customers#TEMP (CustomerId, CustomerCode, FirstName, LastName, FirstKana, LastKana, Sex) VALUES (123, 'CustomerCode123', 'Name123', 'Surname123', 'KanaName123', 'KanaSurname123', '2') INSERT INTO Customers#TEMP (CustomerId, CustomerCode, FirstName, LastName, FirstKana, LastKana, Sex) VALUES (124, 'CustomerCode124', 'Name124', 'Surname124', 'KanaName124', 'KanaSurname124', '2') UPSERT INTO Customers (CustomerId, CustomerCode, FirstName, LastName, FirstKana, LastKana, Sex) SELECT CustomerId, CustomerCode, FirstName, LastName, FirstKana, LastKana, Sex FROM Customers#TEMP
Smaregi allows updates for all non key columns.
UPDATE Customers SET CustomerCode = 'CustomerCode2', CustomerNo = 3 WHERE CustomerId = 216
Customers can be deleted by providing the CustomerId.
DELETE FROM Customers WHERE CustomerId = 2
INSERT INTO Customers#TEMP (CustomerId) VALUES (123) INSERT INTO Customers#TEMP (CustomerId) VALUES (124) DELETE FROM Customers WHERE EXISTS SELECT CategoryId FROM Customers#TEMP
| Name | Type | ReadOnly | References | Description |
| CustomerId [KEY] | Long | False | ||
| CustomerCode | String | False | ||
| CustomerNo | String | False | ||
| Rank | String | False | ||
| StaffRank | String | False | ||
| LastName | String | False | ||
| FirstName | String | False | ||
| LastKana | String | False | ||
| FirstKana | String | False | ||
| PostCode | String | False | ||
| Address | String | False | ||
| PhoneNumber | String | False | ||
| FaxNumber | String | False | ||
| MobileNumber | String | False | ||
| MailAddress | String | False | ||
| MailAddress2 | String | False | ||
| MailAddress3 | String | False | ||
| CompanyName | String | False | ||
| DepartmentName | String | False | ||
| ManagerialPosition | String | False | ||
| Sex | Integer | False | ||
| BirthDate | Date | False | ||
| Mile | Integer | False | ||
| Point | Integer | False | ||
| PointExpireDate | Date | False | ||
| LastComeDateTime | Datetime | False | ||
| EntryDate | Date | False | ||
| LeaveDate | Date | False | ||
| PointGivingUnitPrice | Integer | False | ||
| PointGivingUnit | Decimal | False | ||
| PinCode | String | False | ||
| PassportNo | String | False | ||
| Nationality | String | False | ||
| AlphabetName | String | False | ||
| MailReceiveFlag | Integer | False | ||
| Note | String | False | ||
| Note2 | String | False | ||
| FavoriteList | String | False | ||
| BrowsingList | String | False | ||
| Status | Integer | False | ||
| StoreId | Integer | False | ||
| InsDateTime | Datetime | False | ||
| UpdDateTime | Datetime | False |
Usage information for the operation Losses.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT Division FROM Losses ORDER BY LossId DESC SELECT * FROM Losses WHERE LossId != 5
To add a Loss, specify the StoreId, Division, Memo, IdentificationNo, Token, LossDatetime and DetailAggregate fields.
Using temporary tables:
INSERT INTO LossDetails#TEMP (productCode, color, productId, size, quantity) VALUES (4, 'White', 6, 'S', 2) INSERT INTO Losses (StoreId, Division, Memo, IdentificationNo, Token, LossDatetime, DetailAggregate) VALUES (1, '01', 'Memo', 'loss32', '764956r6f694344r3r332465', '2020-01-17 02:05:45', 'LossDetails#TEMP')
Using aggregates:
INSERT INTO Losses (StoreId, Division, Memo, IdentificationNo, LossDatetime, DetailAggregate) VALUES (1, '02', 'Memo', 'loss32', '2020-01-17 02:05:45', ' {
"table_name": "LossDetail",
"rows": [
{
"productCode": "2000001000045",
"color": "White",
"productId": "4",
"size": "S",
"quantity": "2",
}
]
}
')
Upsert is not supported for this table.
Smaregi allows UPDATEs for the Division, Memo, LossDatetime, IdentificationNo, Token and DetailAggregate columns.
UPDATE Losses SET Memo = 'UpdatedMemo5', Division = '02' WHERE LossId = 1Changes of an UPDATE query for DetailAggregate column, will be reflected in LossDetails view.
Using temp table.
INSERT INTO LossDetails#TEMP (LossId, productCode, color, productId, size, quantity) VALUES (21, 6, 'White', 5, 'S', 2) INSERT INTO LossDetails#TEMP (LossId, productCode, color, productId, size, quantity) VALUES (21, 5, 'White', 7, 'S', 2) UPDATE Losses SET DetailAggregate = 'LossDetails#TEMP' WHERE LossId = 21
Using aggregates
UPDATE Losses set DetailAggregate = ' {
"table_name": "LossDetail",
"rows": [
{
"lossId": "21",
"productCode": "2000001000045",
"color": "White",
"productId": "9",
"size": "S",
"quantity": "2",
}
]
}
' WHERE LossId = 21
Losses can be deleted by providing the ProductId.
DELETE FROM Losses WHERE LossId = 12
INSERT INTO Losses#TEMP (LossId) VALUES (11) INSERT INTO Losses#TEMP (LossId) VALUES (12) INSERT INTO Losses#TEMP (LossId) VALUES (13) INSERT INTO Losses#TEMP (LossId) VALUES (22) DELETE FROM Losses WHERE EXISTS SELECT LossId FROM Losses#TEMP
| Name | Type | ReadOnly | References | Description |
| LossId [KEY] | Integer | False | ||
| StoreId | Integer | True |
Stores.StoreId | |
| Division | String | False | ||
| Memo | String | False | ||
| LossDatetime | Datetime | False | ||
| IdentificationNo | String | False | ||
| Modified | Datetime | True | ||
| Token | String | False |
Identifier. | |
| DetailAggregate | String | False |
A JSON aggregate of details associated with the loss. |
Usage information for the operation ProductInventoryReservations.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT ReservationAmount FROM ProductInventoryReservations SELECT * FROM ProductInventoryReservations WHERE ReservationProductId <= 1005;
To add a ProductInventoryReservation, specify all fields.
INSERT INTO ProductInventoryReservations (ProductId, ReservationProductId, ReservationAmount) VALUES (1005, 4, 5)
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a ProductInventoryReservation, specify all fields.
UPSERT INTO ProductInventoryReservations (ProductId, ReservationProductId, ReservationAmount) VALUES (1005, 4, 5)
To add/update ProductInventoryReservations, specify all fields.
INSERT INTO ProductInventoryReservations#TEMP (ProductId, ReservationProductId, ReservationAmount) VALUES (7, 4, 5) INSERT INTO ProductInventoryReservations#TEMP (ProductId, ReservationProductId, ReservationAmount) VALUES (9, 4, 5) UPSERT INTO ProductInventoryReservations (ProductId, ReservationProductId, ReservationAmount) SELECT ProductId, ReservationProductId, ReservationAmount FROM ProductInventoryReservations#TEMP
Smaregi allows updates for the ReservationAmount column.
UPDATE ProductInventoryReservations SET ReservationAmount = 2 WHERE ProductId = 1005 AND ReservationProductId = 15
ProductInventoryReservations can be deleted by providing the ProductId and ReservationProductId.
DELETE FROM ProductInventoryReservations WHERE ProductId = 1005 AND ReservationProductId = 15
INSERT INTO ProductInventoryReservations#TEMP (ProductId, ReservationProductId) VALUES (9, 4) INSERT INTO ProductInventoryReservations#TEMP (ProductId, ReservationProductId) VALUES (4, 4) DELETE FROM ProductInventoryReservations WHERE EXISTS SELECT ProductId, ReservationProductId FROM ProductInventoryReservations#TEMP
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | Long | False |
Products.ProductId | |
| ReservationProductId [KEY] | Long | False | ||
| ReservationAmount | Integer | False |
Usage information for the operation ProductPrices.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM ProductPrices WHERE ProductId = 45345 SELECT ProductId, StoreId, Price FROM ProductPrices
To add a ProductPrice, specify the ProductId, StoreId , PriceDivision, Price and StartDate fields.
INSERT INTO ProductPrices (productId, storeId, priceDivision, price, StartDate) VALUES (864684, '1', 1, 100, '2019-09-30')
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a ProductPrice, specify the ProductId, StoreId, PriceDivision, Price and StartDate fields.
UPSERT INTO ProductPrices (ProductId, StoreId, PriceDivision, Price, StartDate) VALUES (45345, 1, 2, 550, '2019/02/02')
To add/update ProductPrices, specify the ProductId, StoreId, PriceDivision, Price and StartDate fields.
INSERT INTO ProductPrices#TEMP (productId, storeId, priceDivision, price, StartDate) VALUES (45, 1, 2, 550, '2019/02/02') INSERT INTO ProductPrices#TEMP (productId, storeId, priceDivision, price, StartDate) VALUES (56, 1, 2, 350, '2019/02/06') UPSERT INTO ProductPrices (productId, storeId, priceDivision, price, StartDate) SELECT productId, storeId, priceDivision, price, StartDate FROM ProductPrices#TEMP
Smaregi allows updates for the PriceDivision, StartDate, EndDate and Price columns.
UPDATE ProductPrices SET PriceDivision = 1, EndDate = '2019-12-02', StartDate = '2019/12/02' WHERE ProductId = 45345
ProductPrices can be deleted by providing ProductId and StoreId.
DELETE FROM ProductPrices WHERE ProductId = 18 AND StoreId = 1
INSERT INTO ProductPrices#TEMP (productId) VALUES (45) INSERT INTO ProductPrices#TEMP (productId) VALUES (56) DELETE FROM ProductPrices WHERE EXISTS SELECT ProductId FROM ProductPrices#TEMP
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | Long | False |
Products.ProductId | |
| StoreId [KEY] | String | False |
Stores.StoreId | |
| PriceDivision [KEY] | Integer | False | ||
| StartDate [KEY] | Date | False | ||
| EndDate | Date | False | ||
| Price | Decimal | False | ||
| InsDateTime | Datetime | True | ||
| UpdDateTime | Datetime | True |
Usage information for the operation ProductReserveItemLabels.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT Label FROM ProductReserveItemLabels SELECT * FROM ProductReserveItemLabels WHERE No != 2
To add a ProductReserveItemLabel, specify all fields.
INSERT INTO ProductReserveItemLabels (No, Label) VALUES (84, 1)
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a ProductReserveItemLabel, specify both fields.
UPSERT INTO ProductReserveItemLabels (No, Label) VALUES (84, 1)
To add/update ProductReserveItemLabels, specify all fields.
INSERT INTO ProductReserveItemLabels#TEMP (No, Label) VALUES (84, 1) INSERT INTO ProductReserveItemLabels#TEMP (No, Label) VALUES (83, 1) UPSERT INTO ProductReserveItemLabels (No, Label) SELECT No, Label FROM ProductReserveItemLabels#TEMP
Smaregi allows updates for the No, Label column.
UPDATE ProductReserveItemLabels SET Label = 2 WHERE No = 84
ProductReserveItemLabels can be deleted by providing the No.
DELETE FROM ProductReserveItemLabels WHERE No = 4
INSERT INTO ProductReserveItemLabels#TEMP (No) VALUES (83) INSERT INTO ProductReserveItemLabels#TEMP (No) VALUES (84) DELETE FROM ProductReserveItemLabels WHERE EXISTS SELECT No FROM ProductReserveItemLabels#TEMP
| Name | Type | ReadOnly | References | Description |
| No [KEY] | Integer | False | ||
| Label | String | False |
Usage information for the operation ProductReserveItems.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT Value FROM ProductReserveItems SELECT * FROM ProductReserveItems WHERE No > 5
To add a ProductReserveItem, specify all fields.
INSERT INTO ProductReserveItems (ProductId, No, Value) VALUES (45345, 2, 1)
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a ProductReserveItem, specify all fields.
UPSERT INTO ProductReserveItems (ProductId, No, Value) VALUES (45345, 2, 1)
To add/update ProductReserveItems, specify all fields.
INSERT INTO ProductReserveItems#TEMP (ProductId, No, Value) VALUES (45345, 2, 1) INSERT INTO ProductReserveItems#TEMP (ProductId, No, Value) VALUES (45347, 2, 1) UPSERT INTO ProductReserveItems (ProductId, No, Value) SELECT ProductId, No, Value FROM ProductReserveItems#TEMP
Smaregi allows updates for the Value column.
UPDATE ProductReserveItems SET Value = 0 WHERE ProductId = 7 AND No = 2
ProductReserveItems can be deleted by providing the ProductId and No.
DELETE FROM ProductReserveItems WHERE ProductId = 7 AND No = 4
INSERT INTO ProductReserveItems#TEMP (ProductId, No) VALUES (45345, 2) INSERT INTO ProductReserveItems#TEMP (ProductId, No) VALUES (45346, 2) DELETE FROM ProductReserveItems WHERE EXISTS SELECT ProductId, NO FROM ProductReserveItems#TEMP
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | Long | False |
Products.ProductId | |
| No [KEY] | Integer | False | ||
| Value | String | False |
Usage information for the operation Products.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM Products WHERE updDateTime = '2019-08-29 17:30:51.0' SELECT * FROM Products WHERE ProductId = 2 SELECT * FROM Products WHERE ProductName LIKE '%S%' AND CategoryId > 3 ORDER BY ProductId DESC
To add a Product, specify the ProductId, categoryId, productCode, ProductName, taxDivision, price, cost and taxFreeDivision fields.
INSERT INTO Products (ProductId, categoryId, productCode, ProductName, taxDivision, price, cost, taxFreeDivision) VALUES (68899, 3, 4453452, '58432InsertedProduct', 0, 500, 450, 0)
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a Product, specify the ProductId, categoryId, productCode, ProductName, taxDivision, price, cost and taxFreeDivision fields.
UPSERT INTO Products (ProductId, categoryId, productCode, ProductName, price) VALUES (45346, 3, 44534520, '58432InsertedProduct', 500)
To add/update Products, specify the ProductId, categoryId, productCode, ProductName, taxDivision, price, cost and taxFreeDivision fields.
INSERT INTO Products#TEMP (ProductId, categoryId, productCode, ProductName, taxDivision, price, cost, taxFreeDivision) VALUES (78899, 3, 4453456, '58434InsertedProduct', 0, 500, 450, 0) INSERT INTO Products#TEMP (ProductId, categoryId, productCode, ProductName, taxDivision, price, cost, taxFreeDivision) VALUES (77899, 3, 4453455, '58433InsertedProduct', 0, 500, 450, 0) UPSERT INTO Products (ProductId, categoryId, productCode, ProductName, taxDivision, price, cost, taxFreeDivision) SELECT ProductId, categoryId, productCode, ProductName, taxDivision, price, cost, taxFreeDivision FROM Products#TEMP
Smaregi allows updates for the COL1 and COL2 columns.
UPDATE Products SET CategoryId = '2', ProductCode = '2343', ProductKana = 'Kana', TaxDivision = '2', ProductPriceDivision = '2', Price = 455, CustomerPrice = 505, Cost = 444, Attribute = 'Attr', Description = 'Desc', CatchCopy = 'Copy', Size = 'XL', Color = 'Grey', Tag = 'tag', GroupCode = '43' WHERE ProductId = '45345'
Products can be deleted by providing the ProductId.
DELETE FROM Products WHERE ProductId = 5843055
INSERT INTO Products#TEMP (ProductId) VALUES (68899) INSERT INTO Products#TEMP (ProductId) VALUES (77899) INSERT INTO Products#TEMP (ProductId) VALUES (78899) DELETE FROM Products WHERE EXISTS SELECT ProductId FROM Products#TEMP
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | Long | False | ||
| CategoryId | Integer | False |
Categories.CategoryId | |
| ProductCode | String | False | ||
| ProductName | String | False | ||
| ProductKana | String | False | ||
| TaxDivision | String | False | ||
| ProductPriceDivision | String | False | ||
| Price | Decimal | False | ||
| CustomerPrice | Decimal | False | ||
| Cost | Decimal | False | ||
| Attribute | String | False | ||
| Description | String | False | ||
| CatchCopy | String | False | ||
| Size | String | False | ||
| Color | String | False | ||
| Tag | String | False | ||
| GroupCode | String | False | ||
| Url | String | False | ||
| PrintReceiptProductName | String | False | ||
| DisplaySequence | Integer | False | ||
| SalesDivision | String | False | ||
| StockControlDivision | String | False | ||
| DisplayFlag | String | False | ||
| Division | String | False | ||
| ProductOptionGroupId | Integer | False | ||
| PointNotApplicable | String | False | ||
| TaxFreeDivision | String | False | ||
| CalcDiscount | String | False | ||
| SupplierProductNo | String | False | ||
| StaffDiscountRate | Integer | False | ||
| UseCategoryReduceTax | Integer | False | ||
| ReduceTaxId | Integer | False | ||
| ReduceTaxPrice | Decimal | False | ||
| ReduceTaxCustomerPrice | Decimal | False | ||
| AppStartDateTime | Datetime | False | ||
| InsDateTime | Datetime | False | ||
| UpdDateTime | Datetime | False |
Usage information for the operation ProductStores.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM ProductStores WHERE AssignDivision > 0
To add a ProductStore, specify all fields.
INSERT INTO ProductStores (ProductId, StoreId, AssignDivision) VALUES (45345, 1, 1)
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a ProductStore, specify all fields.
UPSERT INTO ProductStores (ProductId, StoreId, AssignDivision) VALUES (45345, 1, 1)
To add/update ProductStores, specify all fields.
INSERT INTO ProductStores#TEMP (ProductId, StoreId, AssignDivision) VALUES (47, 1, 1) INSERT INTO ProductStores#TEMP (ProductId, StoreId, AssignDivision) VALUES (48, 1, 1) UPSERT INTO ProductStores (ProductId, StoreId, AssignDivision) SELECT ProductId, StoreId, AssignDivision FROM ProductStores#TEMP
Smaregi allows UPDATEs for the AssignDivision column.
UPDATE ProductStores SET AssignDivision = 0 WHERE ProductId = 84 AND StoreId = 2
Delete is not supported for this table.
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | Long | False |
Products.ProductId | |
| StoreId [KEY] | Integer | False |
Stores.StoreId | |
| AssignDivision | Integer | False |
Usage information for the operation Receivings.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM Receivings WHERE ReceivingId = 3 SELECT ReceivingId, ShippingStoreId, Memo FROM Receivings ORDER BY ReceivingId
Insert is not supported for this table.
Upsert is not supported for this table.
Smaregi allows updates for the ShippingId, ShippingStoreId, ReceivingStoreId, ReceivingDate, Memo, Status, IdentificationNo, Token and DetailAggregate columns.
UPDATE Receivings SET Memo = 'ChangedMemo' WHERE ReceivingId = 1Changes of an update query for DetailAggregate column, will be reflected in ReceivingDetails view.
Using temp table.
INSERT INTO ReceivingDetails#TEMP (ReceivingId, ProductId, InspectionQuantity, StockoutQuantity, StockoutReason, InspectionDate) VALUES (14, 8, 3, 1, 'Memo', '2019-09-28') INSERT INTO ReceivingDetails#TEMP (ReceivingId, ProductId, InspectionQuantity, StockoutQuantity, StockoutReason, InspectionDate) VALUES (14, 9, 43, 2, 'Memo', '2019-09-28') UPDATE Receivings SET ReceivingDate = '2019-09-28', Memo = 'ChangedMemo', DetailAggregate = 'ReceivingDetails#TEMP' WHERE ReceivingId = 14
Using aggregates
UPDATE Receivings SET DetailAggregate = '{
"table_name": "ReceivingDetail",
"rows": [
{
"receivingId": "14",
"productId": "17",
"inspectionQuantity": "33",
}
]
}
' WHERE ReceivingId = 14
Delete is not supported for this table.
| Name | Type | ReadOnly | References | Description |
| ReceivingId [KEY] | Integer | False | ||
| ShippingId | Integer | False |
Shippings.ShippingId | |
| ShippingStoreId | Integer | False | ||
| ReceivingStoreId | Integer | False | ||
| ReceivingDate | Date | False | ||
| Memo | String | False | ||
| Status | Integer | False | ||
| IdentificationNo | String | False | ||
| Modified | Datetime | True | ||
| Token | String | False | ||
| DetailAggregate | String | False |
A JSON aggregate of details associated with the receiving. |
Usage information for the operation Shipments.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM Shipments WHERE ShipmentId = 5 SELECT RecipientId, RecipientName FROM Shipments
To add a Shipment, specify the ShipmentStoreId, RecipientType, RecipientName, ShipmentDivision, ShipmentDate, Status AND DetailAggregate fields.
Using temporary tables:
INSERT INTO ShipmentDetails#TEMP (productId, quantity) VALUES (84, 1) INSERT INTO ShipmentDetails#TEMP (productId, quantity) VALUES (83, 1) INSERT INTO Shipments (ShipmentStoreId, RecipientType, RecipientName, ShipmentDivision, ShipmentDate, Status, DetailAggregate) VALUES (1, 3, 'TestName3113', 2, '2057-07-20', 0, 'ShipmentDetails#TEMP')
Using aggregates:
INSERT INTO Shipments (ShipmentStoreId, RecipientType, RecipientName, ShipmentDivision, ShipmentDate, Status, DetailAggregate) VALUES (1, 3, 'TestName3113', 2, '2057-07-20', 0, ' {
"table_name": "ShipmentDetail",
"rows": [
{
"productId": "65",
"quantity": "3"
}
]
}
')
Upsert is not supported for this table.
Smaregi allows updates for the RecipientType RecipientId RecipientName ShipmentDivision ShipmentDate Status IdentificationNo Token and DetailAggregate columns.
UPDATE Shipments SET IdentificationNo = '333543' WHERE ShipmentId = 5Changes of an update query for DetailAggregate column, will be reflected in ShipmentDetails view.
Using temp table.
INSERT INTO ShipmentDetails#TEMP (ShipmentId, productId, quantity) VALUES (9, 7, 1) INSERT INTO ShipmentDetails#TEMP (ShipmentId, productId, quantity) VALUES (9, 8, 1) UPDATE Shipments SET DetailAggregate = 'ShipmentDetails#TEMP' WHERE ShipmentId = 9
Using aggregates
UPDATE Shipments SET DetailAggregate = ' {
"table_name": "ShipmentDetail",
"rows": [
{
"shipmentId": "9",
"productId": "7",
"quantity": "1"
}
]
}
' WHERE ShipmentId = 21
Shipments can be deleted by providing the ShipmentId.
DELETE FROM Shipments WHERE ShipmentId = 4
INSERT INTO Shipments#TEMP (ShipmentId) VALUES (2) INSERT INTO Shipments#TEMP (ShipmentId) VALUES (3) DELETE FROM Shipments WHERE EXISTS SELECT ShipmentId FROM Shipments#TEMP
| Name | Type | ReadOnly | References | Description |
| ShipmentId [KEY] | Integer | False | ||
| ShipmentStoreId | Integer | False | ||
| RecipientType | Integer | False | ||
| RecipientId | Integer | False | ||
| RecipientName | String | False | ||
| ShipmentDivision | String | False | ||
| ShipmentDate | Date | False | ||
| Memo | String | False | ||
| Status | Integer | False | ||
| ApprovalStatus | Integer | False | ||
| ApprovalDateTime | Datetime | True | ||
| IdentificationNo | String | False | ||
| Modified | Datetime | True | ||
| Token | String | False | ||
| DetailAggregate | String | False |
A JSON aggregate of details associated with the shipment. |
Usage information for the operation Shippings.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM Shippings WHERE Status != 0 SELECT ShippingId, ShippingStoreId, StorageStoreId FROM Shippings WHERE ShippingId <= 4
To add a Shipping, specify the StorageStoreId, ShippingStoreId, Status, ShippingDate, StorageDesiredDate and DetailAggregate fields.
Using temporary tables:
INSERT INTO ShippingDetails#TEMP (productId, requestQuantity) VALUES (8, 3) INSERT INTO Shippings (StorageStoreId, ShippingStoreId, Status, ShippingDate, StorageDesiredDate, DetailAggregate) VALUES (1, 2, 0, '2019/10/10', '2019/10/10', 'ShippingDetails#TEMP')
Using aggregates:
INSERT INTO Shippings (StorageStoreId, ShippingStoreId, Status, Memo, ShippingDate, StorageExpectedDateFrom, StorageDesiredDate, DetailAggregate) VALUES (1, 2, 0, 'Changed', '2019/10/10', '2019/10/10', '2019/10/10', ' {
"table_name": "ShippingDetail",
"rows": [
{
"productId": "8",
"productName": "ProdName",
"quantity": "3",
"requestQuantity": "1"
}
]
}')
Upsert is not supported for this table.
Smaregi allows updates for the ShippingStoreId StorageStoreId StorageExpectedDateFrom StorageExpectedDateTo ShippingDate StorageDesiredDate Memo Status ModificationRequestStatus ModificationRequestDateTime ModificationRequestCheckedDateTime IdentificationNo Token and DetailAggregate columns.
UPDATE Shippings SET Memo = 'UpdatedMemo', status = 1, storageExpectedDateFrom = '2019/02/02', modificationRequestStatus = 1, storageExpectedDateTo = '2019/02/02' WHERE ShippingId = 9
Shippings can be deleted by providing the ShippingId.
DELETE FROM Shippings WHERE ShippingId = 6
INSERT INTO Shippings#TEMP (ShippingId) VALUES (3) INSERT INTO Shippings#TEMP (ShippingId) VALUES (4) INSERT INTO Shippings#TEMP (ShippingId) VALUES (5) DELETE FROM Shippings WHERE EXISTS SELECT ShippingId FROM Shippings#TEMP
| Name | Type | ReadOnly | References | Description |
| ShippingId [KEY] | Integer | False | ||
| ShippingStoreId | Integer | False | ||
| ReceivingStoreId | Integer | False | ||
| ReceivingExpectedDateFrom | Date | False | ||
| ReceivingExpectedDateTo | Date | False | ||
| ShippingDate | Date | False | ||
| ReceivingDesiredDate | Date | False | ||
| Memo | String | False | ||
| Status | Integer | False | ||
| ApprovalStatus | Integer | False | ||
| ApprovalDateTime | Datetime | True | ||
| ModificationRequestStatus | Integer | False | ||
| ModificationRequestDateTime | Datetime | False | ||
| ModificationRequestCheckedDateTime | Datetime | False | ||
| IdentificationNo | String | False | ||
| Modified | Datetime | True | ||
| Token | String | False | ||
| DetailAggregate | String | False |
A JSON aggregate of details associated with the shipping. |
Usage information for the operation Staff.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM Staff WHERE StaffId = 2 SELECT * FROM Staff WHERE StaffName LIKE '%S%' AND StaffId > 3 ORDER BY StaffId DESC
To add a Staff, specify the StaffId, StaffCode, StaffName, StaffKana, Rank, Pincode, DisplayFlag, DisplaySequence, MailAddress, LoginIpAddress, RoleId and StoresAggregate fields.
Using temporary tables:
INSERT INTO StaffStores#TEMP (StaffId, StoreId, ControlDivision) VALUES (9, 1, 1) INSERT INTO StaffStores#TEMP (StaffId, StoreId, ControlDivision) VALUES (9, 2, 1) INSERT INTO Staff (StaffId, StaffCode, StaffName, StaffKana, Rank, StoresAggregate) VALUES (9, '09', 'StaffNameSample', 'StaffNameKanaSample', 'B', 'StaffStores$TEMP')
Using aggregates:
INSERT INTO Staff (StaffId, StaffCode, StaffName, StaffKana, Rank, StoresAggregate) VALUES (9, '09', 'StaffNameSample', 'StaffNameKanaSample', 'B', '{
"table_name": "StaffStore",
"rows": [
{
"staffId": "9",
"storeId": "1",
"controlDivision": "1"
},
{
"staffId": "9",
"storeId": "2",
"controlDivision": "0"
}
]
}')
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
To add/update a Staff, specify the StaffId, StaffCode, StaffName, StaffKana, Rank, Pincode, DisplayFlag, DisplaySequence, MailAddress, LoginIpAddress. RoleId and StoresAggregate fields.
INSERT INTO StaffStores#TEMP (StaffId, StoreId, ControlDivision) VALUES (9, 1, 1) INSERT INTO StaffStores#TEMP (StaffId, StoreId, ControlDivision) VALUES (9, 2, 1) UPSERT INTO Staff(StaffId, StaffCode, StaffName, StaffKana, Rank, StoresAggregate) VALUES (9, '09', 'StaffNameSample', 'StaffNameKanaSample', 'B', 'StaffStores$TEMP')
Smaregi allows updates for the StaffCode, StaffName, StaffKana, Rank, Pincode, DisplayFlag, DisplaySequence, MailAddress, LoginIpAddress, RoleId and StoresAggregate fields.
UPDATE Staff SET StaffCode = '2', StaffName = '2343', StaffKana = 'Kana' WHERE StaffId = '1'
Staff can be deleted by providing the StaffId.
DELETE FROM Staff WHERE StaffId = 1
| Name | Type | ReadOnly | References | Description |
| StaffId [KEY] | Integer | False | ||
| StaffCode | String | False | ||
| StaffName | String | False | ||
| StaffKana | String | False | ||
| Rank | String | False | ||
| Pincode | String | False | ||
| DisplayFlag | Integer | False | ||
| DisplaySequence | Integer | False | ||
| MailAddress | String | False | ||
| LoginIpAddress | String | False | ||
| RoleId | Integer | False | ||
| StoresAggregate | String | False |
A JSON aggregate of details associated with the staff. |
Usage information for the operation Stocks.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT ProductId, StoreId, StockAmount, StockDivision FROM Stocks ORDER BY StockDivision SELECT ProductId, StoreId, StockAmount, StockDivision FROM Stocks WHERE StockDivision = 5 SELECT * FROM Stocks WHERE StockAmount < -1
To add a Stock, specify the ProductId, StoreId, StockDivision and StockAmount fields.
INSERT INTO Stocks (ProductId, StoreId, StockDivision, StockAmount) VALUES (45, 1, 05, 1)
To add/update a Stock, specify the ProductId, StoreId, StockDivision and StockAmount fields.
UPSERT INTO Stocks (ProductId, StoreId, StockDivision, StockAmount) VALUES (45, 1, 05, 1)
Using temporary tables:
INSERT INTO Stocks#TEMP (ProductId, StoreId, StockDivision, StockAmount) VALUES (46, 2, 02, 1) INSERT INTO Stocks#TEMP (ProductId, StoreId, StockDivision, StockAmount) VALUES (47, 2, 02, 1) INSERT INTO Stocks#TEMP (ProductId, StoreId, StockDivision, StockAmount) VALUES (48, 2, 02, 1) INSERT INTO Stocks#TEMP (ProductId, StoreId, StockDivision, StockAmount) VALUES (49, 2, 02, 1) UPSERT INTO Stocks (ProductId, StoreId, StockDivision, StockAmount) SELECT ProductId, StoreId, StockDivision, StockAmount FROM Stocks#TEMP
Smaregi allows updates for the StockAmount and StockDivision columns.
UPDATE Stocks SET StockAmount = 5, StockDivision = '02' WHERE ProductId = 1 UPDATE Stocks SET StockAmount = 110, StockDivision = 10, AmountType = 'Absolute' WHERE ProductId = 13 AND StoreId = 4
Delete is not supported for this table.
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | Long | False |
Products.ProductId | |
| StoreId [KEY] | Integer | False |
Stores.StoreId | |
| StockAmount | Integer | False | ||
| UpdDatetime | Datetime | True | ||
| StockDivision | String | False | ||
| Memo | String | False |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| AmountType | String |
If you want to update the stockAmount with an absolute value use 'Absolute' and if you want to add or subtract some value from stockAmount use 'Relative' The allowed values are Absolute, Relative. The default value is Absolute. |
Usage information for the operation StorageInfo.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM StorageInfo WHERE StorageInfoId = 8 SELECT OrderedDate FROM StorageInfo WHERE Status = 2
To add a StorageInfo, specify the Status, IdentificationNo, DeliveryAggregate and DeliveryProductAggregate fields.
Using temporary tables:
INSERT INTO StorageInfoDeliveries#TEMP (StorageStoreId, storageExpectedDateTo, StorageExpectedDateFrom) VALUES (2, '2019-10-11', '2019-10-1') INSERT INTO StorageInfoDeliveryProducts#TEMP (StoreId, ProductId, Quantity) VALUES (2, 1, 12) INSERT INTO StorageInfo (Status, IdentificationNo, DeliveryAggregate, DeliveryProductAggregate) VALUES (2, 'test1', 'StorageInfoDeliveries#TEMP', 'StorageInfoDeliveryProducts#TEMP')
Using aggregates:
INSERT INTO StorageInfo (Status, IdentificationNo, DeliveryAggregate, DeliveryProductAggregate, ProductAggregate) VALUES (2, '2111', ' {
"table_name": "StorageInfoDelivery",
"rows": [
{
"storageExpectedDateFrom": "2019-10-21",
"storageExpectedDateTo": "2019-12-21",
"storageStoreId": "1"
}
]
}
', ' {
"table_name": "StorageInfoDeliveryProduct",
"rows": [
{
"storeId": "1",
"productId": "1",
"quantity": "1"
}
]
}
', ' {
"table_name": "StorageInfoProduct",
"rows": [
{
"productId": "1",
"cost": "324"
}
]
}
')
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
Upsert is not supported for this table.
Smaregi allows updates for the RecipientOrderId, OrderedDate, Status and IdentificationNo columns.
INSERT INTO StorageInfoDeliveries#TEMP (StorageInfoId, StorageStoreId, storageExpectedDateTo, StorageExpectedDateFrom) VALUES (22, 1, '2019-12-11', '2019-12-1') UPDATE StorageInfo SET IdentificationNo = 'Updated', status = 2, DeliveryAggregate = 'StorageInfoDeliveries#TEMP' WHERE StorageInfoId = 22
StorageInfo can be deleted by providing the StorageInfoId.
DELETE FROM StorageInfo WHERE StorageInfoId = 7
INSERT INTO StorageInfo#TEMP (StorageInfoId) VALUES (9); INSERT INTO StorageInfo#TEMP (StorageInfoId) VALUES (6); DELETE FROM StorageInfo WHERE EXISTS SELECT StorageInfoId FROM StorageInfo#TEMP
| Name | Type | ReadOnly | References | Description |
| StorageInfoId [KEY] | Integer | False | ||
| RecipientOrderId | Integer | False | ||
| OrderedDate | Date | False | ||
| Status | Integer | False | ||
| Memo | String | False | ||
| IdentificationNo | String | False | ||
| Modified | Datetime | True | ||
| Token | String | False | ||
| DeliveryAggregate | String | False |
A JSON aggregate of deliveries associated with the storage info. | |
| ProductAggregate | String | False |
A JSON aggregate of products associated with the storage info product. | |
| DeliveryProductAggregate | String | False |
A JSON aggregate of products associated with the storage info delivery. |
Usage information for the operation Storages.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM Storages WHERE StorageId = 3 SELECT StorageInfoId, SupplierId, StorageStoreId, StorageExpectedDateFrom FROM Storages WHERE StorageId = 3
To add a Storage, specify the SupplierId, StorageStoreId and DetailAggregate fields.
Using temporary tables:
INSERT INTO StorageDetails#TEMP (productId, inspectionQuantity) VALUES (1, 4) INSERT INTO Storages (SupplierId, StorageStoreId, DetailAggregate) VALUES (1, 1, 'StorageDetails#TEMP')
Using aggregates:
INSERT INTO Storages (StorageId, StorageInfoId, SupplierId, StorageStoreId, Memo, DetailAggregate) VALUES (21, 2, 1, 1, 'chand2233445', ' {
"table_name": "StorageDetail",
"rows": [
{
"productId": "5",
"inspectionQuantity": "3"
}
]
}
')
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
Upsert is not supported for this table.
Smaregi allows updates for the StorageInfoId, SupplierId, StorageStoreId, StorageExpectedDateFrom, StorageExpectedDateTo, StorageDate, Memo, Status, IdentificationNo, Token and DetailAggregate columns.
UPDATE Storages SET Memo = 'updated2' WHERE StorageId = 18
Delete is not supported for this table.
| Name | Type | ReadOnly | References | Description |
| StorageId [KEY] | Integer | False | ||
| StorageInfoId | Integer | False |
StorageInfo.StorageInfoId | |
| SupplierId | Integer | False | ||
| StorageStoreId | Integer | False | ||
| StorageExpectedDateFrom | Date | False | ||
| StorageExpectedDateTo | Date | False | ||
| StorageDate | Date | False | ||
| Memo | String | False | ||
| Status | Integer | False | ||
| IdentificationNo | String | False | ||
| Modified | Datetime | True | ||
| Token | String | False | ||
| DetailAggregate | String | False |
A JSON aggregate of details associated with the storage. |
Usage information for the operation Stores.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM Stores WHERE StoreId = 2 SELECT StoreName, StoreCode, PostCode FROM Stores ORDER BY StoreId
To add a Store, specify the StoreId, StoreCode and StoreName.
INSERT INTO Stores (StoreId, StoreCode, StoreName) VALUES (35, 'YSM', 'TATA')
Smaregi allows updates for the StoreCode, StoreName, StoreAbbr, PostCode, Address, PhoneNumber, FaxNumber, MailAddress, Homepage, TempTranMailAddress, PriceChangeFlag, SellDivision, SumProcDivision, SumDateChangeTime, SumRefColumn, PointNotApplicable, TaxFreeDivision, MaxBundleProductCount, RoundingDivision and DiscountRoundingDivision.
UPDATE Stores SET StoreCode = 'YM', StoreName = 'TATASONS' WHERE StoreId = 35
| Name | Type | ReadOnly | References | Description |
| StoreId [KEY] | Integer | True |
Store Id. | |
| StoreCode | String | False |
Store Code. | |
| StoreName | String | False |
Store Name. | |
| StoreAbbr | String | False |
Store name abbreviation. | |
| Division | Integer | False |
Store classification, 1=Normal Store, 2=Warehouse. Its default value is 1. It cannot be changed after registeration. | |
| PostCode | String | False |
Store zip code with hyphen. | |
| Address | String | False |
Store address. | |
| PhoneNumber | String | False |
Store phone number with hyphen. | |
| FaxNumber | String | False |
Store fax number. | |
| MailAddress | String | False |
Store email address. | |
| Homepage | String | False |
Store homepage. | |
| TempTranMailAddress | String | False |
Email address to be sent when registering a temporary transaction. Multiple specifications can be specified separated by commas. | |
| PriceChangeFlag | Integer | False |
To prevent the selling price from being changed on the iPod or iPad, set 0:Cannot be changed, set 1: can be changed. Its default value is 1. | |
| SellDivision | Integer | False |
Sales category, 0:Tax-included sales, 1:Tax-excluded sales. Its default value is 1. | |
| SumProcDivision | Integer | False |
Distinguishable by means of association, 0:Manual tightening process, 1:Automatic tightening process. Its default value is 0. | |
| SumDateChangeTime | String | False |
Date change time. Used during tightening[HHMM]. Tightening method classification is 1: Required for automatic tightening. | |
| SumRefColumn | String | False |
The time to refer to when performing the tightening process. Used during closing process(0:terminal time, 1:server time). Tightening method classification is 1: Required for automatic closing process. Its default value is 0. | |
| PointNotApplicable | Integer | False |
Point target classification. 0 means Add points and 1 means Do not add points. Its default value is 0. | |
| TaxFreeDivision | Integer | False |
Tax free distinction. 0 means not applicable, 1 means General products and 2 means Consumables. Its default value is 0. | |
| MaxBundleProductCount | Integer | False |
Maximum number of simple bundle product registrations. Set the maximum number of registered products on the simple bundle sales screen. Its Default value is from 9 upto 999. Its default value is 9. | |
| RoundingDivision | String | False |
Fractional value subtraction classification. Set whether to round the total amount at the time of sale. 00:None, 11: Round off the ones place, 12: Round off the ones place, 13: Round up the ones place, 21: Round off the tens place , 22: Round the tens place, 23: Round the tens place, 31: Round the hundreds place, 32: Round the hundreds place, 33: Round the hundreds place, 41: Round the thousands place , 42: Round off the thousand's place, 43: Round up the thousand's place, 99: Manually entered. Its default value is 00. | |
| DiscountRoundingDivision | String | False |
Discount Rounding Category. 0 means rounding, 1 means rounding down, 2 means rounding up and 3 means bank rounding. Its default value is 0. | |
| PauseFlag | Boolean | True |
Pause flag (0:normal, 1:pause). | |
| PointUseDivision | Integer | True |
Point usage classification. Determine whether to use the point function(0:not used and 1: used). Its default value is 1. | |
| InsDateTime | Datetime | True |
Creation date and time: Date and time at the time of registration. [YYYY-MM-DDThh: mm: ssTZD]. | |
| UpdDateTime | Datetime | True |
Update date and time: Date and time of registration / update. [YYYY-MM-DDThh: mm: ssTZD]. |
Usage information for the operation TransactionHeads.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side. Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side. For example, the following queries are processed server side:
NOTE: One or more of the following filtering conditions are required in the request. The default filtering condition is set to UpdDateTime for the last 30 days.
SELECT * FROM TransactionHeads WHERE TransactionHeadId >= 1 AND TransactionHeadId <= 100000 SELECT * FROM TransactionHeads WHERE TransactionDateTime >= '2021/03/01 00:00:00' AND TransactionDateTime <= '2021/03/31 00:00:00' SELECT * FROM TransactionHeads WHERE TerminalTranDateTime >= '2021/03/01 00:00:00' AND TerminalTranDateTime <= '2021/03/31 00:00:00' SELECT * FROM TransactionHeads WHERE SumDateTime >= '2021/03/01 00:00:00' AND SumDateTime <= '2021/03/31 00:00:00' SELECT * FROM TransactionHeads WHERE UpdDateTime >= '2021/03/01 00:00:00' AND UpdDateTime <= '2021/03/31 00:00:00'
To add a Storage, specify the SupplierId, StorageStoreId and DetailAggregate fields.
Using temporary tables:
INSERT INTO TransactionDetails#TEMP (TransactionDetailId, ParentTransactionDetailId, TransactionDetailDivision, SalesPrice, Quantity) VALUES (1, 1, 2, 400, 4) INSERT INTO TransactionHeads (SumDivision, SumDateTime, StoreId, TerminalId, TerminalTranId, CancelDivision, TransactionDateTime, TerminalTranDateTime, TransactionHeadDivision, Subtotal, Total, DetailAggregate) VALUES (2, '2019/08/06 00:00:00', 1, 23, 6, 0, '2019/08/21', '2019-08-11', '1',-1600,-1600, 'TransactionDetails#TEMP')
Using aggregates:
INSERT INTO TransactionHeads (SumDivision, SumDateTime, StoreId, TerminalId, TerminalTranId, CancelDivision, TransactionDateTime, TerminalTranDateTime, TransactionHeadDivision, Subtotal, Total, DetailAggregate) VALUES (2, '2019/08/06 00:00:00', 1, 23, 6, 0, '2019/08/21', '2019-08-14', '1', 159, 159, ' {
"table_name": "TransactionDetail",
"rows": [
{
"parentTransactionDetailId": "1",
"transactionDetailDivision": "1",
"salesPrice": "159",
"quantity": "1"
}
]
}
')
NOTE: If records already exist, insert will not be successful and driver will return 0 affected rows.
Upsert is not supported for this table.
UPDATE is not supported for this table.
Delete is not supported for this table.
| Name | Type | ReadOnly | References | Description |
| TransactionHeadId | Long | True | ||
| TransactionDateTime | Datetime | True | ||
| TransactionHeadDivision | String | False | ||
| CancelDivision | Integer | False | ||
| UnitNonDiscountsubtotal | Decimal | True | ||
| UnitDiscountsubtotal | Decimal | True | ||
| Subtotal | Decimal | False | ||
| SubtotalDiscountPrice | Decimal | False | ||
| SubtotalDiscountRate | Decimal | False | ||
| SubtotalDiscountDivision | Integer | True | ||
| PointDiscount | Decimal | False | ||
| Total | Decimal | False | ||
| TaxExclude | Decimal | False | ||
| TaxInclude | Decimal | False | ||
| RoundingDivision | String | True | ||
| RoundingPrice | Decimal | True | ||
| CashTotal | Decimal | True | ||
| CreditTotal | Decimal | True | ||
| Deposit | Decimal | False | ||
| DepositCash | Decimal | False | ||
| DepositCredit | Decimal | False | ||
| Charge | Decimal | False | ||
| ChangeDifference | Decimal | True | ||
| Amount | Integer | True | ||
| ReturnAmount | Integer | True | ||
| CostTotal | Decimal | True | ||
| SalesHeadDivision | Integer | True | ||
| InTaxSalesTotal | Decimal | True | ||
| OutTaxSalesTotal | Decimal | True | ||
| NonTaxSalesTotal | Decimal | True | ||
| NonSalesTargetTotal | Decimal | True | ||
| NonSalesTargetOutTaxTotal | Decimal | True | ||
| NonSalesTargetInTaxTotal | Decimal | True | ||
| NonSalesTargetTaxFreeTotal | Decimal | True | ||
| NonSalesTargetCostTotal | Decimal | True | ||
| NonSalesTargetAmount | Integer | True | ||
| NonSalesTargetReturnAmount | Integer | True | ||
| NewPoint | Decimal | False | ||
| SpendPoint | Decimal | False | ||
| Point | Decimal | False | ||
| TotalPoint | Decimal | False | ||
| CurrentMile | Decimal | False | ||
| EarnMile | Decimal | False | ||
| TotalMile | Decimal | False | ||
| AdjustmentMile | Decimal | False | ||
| AdjustmentMileDivision | Integer | False | ||
| AdjustmentMileValue | Integer | False | ||
| StoreId [KEY] | Integer | False | ||
| StoreCode | String | True | ||
| TerminalId [KEY] | Integer | False | ||
| CustomerId | Long | False | ||
| CustomerCode | String | True | ||
| TerminalTranId [KEY] | String | False | ||
| TerminalTranDateTime [KEY] | Datetime | False | ||
| SumDivision | Integer | False | ||
| AdjustmentDateTime | Datetime | True | ||
| SumDateTime | Datetime | False | ||
| CustomerRank | String | False | ||
| CustomerGroupId | Integer | False | ||
| CustomerGroupId2 | Integer | False | ||
| CustomerGroupId3 | Integer | False | ||
| CustomerGroupId4 | Integer | False | ||
| CustomerGroupId5 | Integer | False | ||
| StaffId | Integer | False | ||
| StaffName | String | True | ||
| StaffCode | String | True | ||
| PaymentCount | String | True | ||
| SlipNumber | String | True | ||
| CancelSlipNumber | String | True | ||
| AuthNumber | String | True | ||
| AuthDate | String | True | ||
| CardCompany | String | True | ||
| Memo | String | False | ||
| ReceiptMemo | String | False | ||
| PaymentMethodId1 | Integer | False | ||
| PaymentMethodName1 | String | True | ||
| DepositOthers1 | Decimal | False | ||
| PaymentMethodId2 | Integer | False | ||
| PaymentMethodName2 | String | True | ||
| DepositOthers2 | Decimal | False | ||
| PaymentMethodId3 | Integer | False | ||
| PaymentMethodName3 | String | True | ||
| DepositOthers3 | Decimal | False | ||
| Carriage | Decimal | False | ||
| Commission | Decimal | False | ||
| GuestNumbers | Integer | False | ||
| TaxFreeSalesDivision | Integer | False | ||
| NetTaxFreeGeneralTaxInclude | Decimal | False | ||
| NetTaxFreeGeneralTaxExclude | Decimal | False | ||
| NetTaxFreeConsumableTaxInclude | Decimal | False | ||
| NetTaxFreeConsumableTaxExclude | Decimal | False | ||
| Tags | String | False | ||
| PointGivingDivision | Integer | False | ||
| PointGivingUnitPrice | Integer | False | ||
| PointGivingUnit | Decimal | False | ||
| PointSpendDivision | Integer | False | ||
| MileageDivision | Integer | False | ||
| MileageLabel | String | False | ||
| CustomerPinCode | String | False | ||
| DisposeDivision | Integer | False | ||
| DisposeServerTransactionHeadId | Long | False | ||
| CancelDateTime | Datetime | True | ||
| SellDivision | Integer | False | ||
| TaxRate | Decimal | False | ||
| TaxRounding | Integer | False | ||
| DiscountRoundingDivision | Integer | True | ||
| TransactionUuid | String | False | ||
| GiftReceiptValidDays | Integer | False | ||
| ReceiptIssueNumberOfTimes | Integer | True | ||
| PickUpDate | Date | False | ||
| PartPayment | Decimal | False | ||
| PartPaymentClass | Integer | True | ||
| LayawayServerTransactionHeadId | Long | False | ||
| DisabledEdit | Integer | False | ||
| UpdDateTime | Datetime | True | ||
| PickupTransactionHeadId | Long | True | ||
| DetailAggregate | String | False |
A JSON aggregate of details associated with the transaction head. | |
| CouponDiscount | Decimal | False |
The total discount amount of each coupon used in the transaction |
Views are similar to tables in the way that data is represented; however, views are read-only.
Queries can be executed against a view as if it were a normal table.
| Name | Description |
| DailySums | Usage information for the operation DailySums.rsd. |
| DailySumsSalesList | Usage information for the operation DailySumsSalesList.rsd. |
| LossDetails | Usage information for the operation LossDetails.rsd. |
| ReceivingDetails | Usage information for the operation ReceivingDetails.rsd. |
| ShipmentDetails | Usage information for the operation ShipmentDetails.rsd. |
| ShippingDetails | Usage information for the operation ShippingDetails.rsd. |
| StaffStores | Usage information for the operation StaffStores.rsd. |
| StockHistories | Usage information for the operation StockHistories.rsd. |
| StocktakingDetails | Usage information for the operation StocktakingDetails.rsd. |
| StocktakingHeads | Usage information for the operation StocktakingHeads.rsd. |
| StocktakingInfo | Usage information for the operation StocktakingInfo.rsd. |
| StocktakingStockDetails | Usage information for the operation StocktakingStockDetails.rsd. |
| StorageDetails | Usage information for the operation StorageDetails.rsd. |
| StorageInfoDeliveries | Usage information for the operation StorageInfoDeliveries.rsd. |
| StorageInfoDeliveryProducts | Usage information for the operation StorageInfoDeliveryProducts.rsd. |
| StorageInfoProducts | Usage information for the operation StorageInfoProducts.rsd. |
| TransactionCoupons | Usage information for the operation TransactionCoupons.rsd. |
| TransactionDepositOthers | Usage information for the operation TransactionDepositOthers.rsd. |
| TransactionDetails | Usage information for the operation TransactionDetails.rsd. |
Usage information for the operation DailySums.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime data type columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM [DailySums] WHERE SumDate = '2019-08-02' SELECT * FROM [DailySums] WHERE TenThousandYen >= 0
| Name | Type | References | Description |
| SumDate [KEY] | Date | ||
| StoreId [KEY] | Integer |
Stores.StoreId | |
| CashDrawerId [KEY] | Integer | ||
| Status | Integer | ||
| SalesTotal | Decimal | ||
| Discount | Decimal | ||
| PointDiscount | Decimal | ||
| TaxExcludeReceive | Decimal | ||
| NonSalesTargetTotal | Decimal | ||
| Total | Decimal | ||
| TotalExcludTax | Decimal | ||
| InTaxSalesTotal | Decimal | ||
| TaxInclude | Decimal | ||
| OutTaxSalesTotal | Decimal | ||
| TaxExclude | Decimal | ||
| TaxTotal | Decimal | ||
| TaxDetailList | String | ||
| NonTaxSalesTotal | Decimal | ||
| TaxFreeTotal | Decimal | ||
| NonSalesTargetTaxFreeTotal | Decimal | ||
| CostTotal | Decimal | ||
| GrossMargin | Decimal | ||
| Amount | Integer | ||
| TransactionCount | Integer | ||
| ReturnAmount | Integer | ||
| Carriage | Decimal | ||
| Commission | Decimal | ||
| PreparationCash | Decimal | ||
| CashSales | Decimal | ||
| CreditSales | Decimal | ||
| OtherSalseList | String | ||
| PartPayment | Decimal | ||
| PartPaymentCash | Decimal | ||
| PartPaymentCredit | Decimal | ||
| ReceivedDepositCash | Decimal | ||
| ReceivedDepositCashTotal | Decimal | ||
| ReceivedDepositCreditTotal | Decimal | ||
| PartPaymentCancel | Decimal | ||
| PartPaymentCashCancel | Decimal | ||
| PartPaymentCreditCancel | Decimal | ||
| Deposit | Decimal | ||
| ReturnDeposit | Decimal | ||
| Receipt | Decimal | ||
| Payment | Decimal | ||
| NonSalesCashTotal | Decimal | ||
| NonSalesCreditTotal | Decimal | ||
| NonSalesOtherTotal | Decimal | ||
| NonSalesTaxFreeTotal | Decimal | ||
| ChangeDifference | Decimal | ||
| CalculateBalance | Decimal | ||
| RealBalance | Decimal | ||
| Difference | Decimal | ||
| Saving | Decimal | ||
| CarryOver | Decimal | ||
| TenThousandYen | Integer | ||
| FiveThousandYen | Integer | ||
| TwoThousandYen | Integer | ||
| OneThousandYen | Integer | ||
| FiveHundredYen | Integer | ||
| OneHundredYen | Integer | ||
| FiftyYen | Integer | ||
| TenYen | Integer | ||
| FiveYen | Integer | ||
| OneYen | Integer | ||
| Comment | String | ||
| InsDateTime | Datetime | ||
| UpdDateTime | Datetime | ||
| SalesTotalNonSalesTargetDivision | String | ||
| TotalTaxFreeDivision | String |
Usage information for the operation DailySumsSalesList.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions built with the following column and operator.
SELECT * FROM [DailySumsSalesList] WHERE StoreId = '1234'
| Name | Type | References | Description |
| SumDate [KEY] | Date | ||
| StoreId [KEY] | Integer |
Stores.StoreId | |
| CashDrawerId [KEY] | Integer | ||
| Id [KEY] | Integer | ||
| Name | String | ||
| PaymentMethodDivision | String | ||
| PaymentMethodDivisionName | String | ||
| Sales | Decimal | ||
| InsDateTime | Datetime | ||
| UpdDateTime | Datetime |
Usage information for the operation LossDetails.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT LossId, ProductCode FROM LossDetails WHERE LossId >= 5 SELECT * FROM LossDetails WHERE LossId <= 5
| Name | Type | References | Description |
| LossId [KEY] | Integer |
Losses.LossId | |
| ProductId [KEY] | Long |
Products.ProductId | |
| ProductCode | String | ||
| ProductName | String | ||
| Size | String | ||
| Color | String | ||
| GroupCode | String | ||
| SupplierProductNo | String | ||
| Quantity | Integer | ||
| Modified | Datetime |
Usage information for the operation ReceivingDetails.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM ReceivingDetails WHERE ReceivingId = 9 SELECT ProductId, ProductCode FROM ReceivingDetails WHERE ReceivingId != 5
| Name | Type | References | Description |
| ReceivingId [KEY] | Integer |
Receivings.ReceivingId | |
| ProductId [KEY] | Long |
Products.ProductId | |
| ProductCode | String | ||
| ProductName | String | ||
| Size | String | ||
| Color | String | ||
| GroupCode | String | ||
| SupplierProductNo | String | ||
| ScheduledQuantity | Integer | ||
| InspectionQuantity | Integer | ||
| StockoutQuantity | Integer | ||
| StockoutReason | String | ||
| InspectionDate | Date | ||
| Status | Integer | ||
| Modified | Datetime |
Usage information for the operation ShipmentDetails.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM ShipmentDetails WHERE ShipmentId = 5 SELECT ProductId, ProductCode FROM ShipmentDetails WHERE ShipmentId = 5
| Name | Type | References | Description |
| ShipmentId [KEY] | Integer |
Shipments.ShipmentId | |
| ProductId [KEY] | Long |
Products.ProductId | |
| ProductCode | String | ||
| ProductName | String | ||
| Size | String | ||
| Color | String | ||
| GroupCode | String | ||
| SupplierProductNo | String | ||
| Cost | Decimal | ||
| Quantity | Integer | ||
| Memo | String | ||
| Modified | Datetime | ||
| TaxRate | Decimal |
Usage information for the operation ShippingDetails.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM ShippingDetails WHERE Quantity > 2 SELECT ShippingId, ProductId, ProductCode FROM ShippingDetails
| Name | Type | References | Description |
| ShippingId [KEY] | Integer |
Shippings.ShippingId | |
| ProductId [KEY] | Long |
Products.ProductId | |
| ProductCode | String | ||
| ProductName | String | ||
| Size | String | ||
| Color | String | ||
| GroupCode | String | ||
| SupplierProductNo | String | ||
| RequestQuantity | Integer | ||
| Quantity | Integer | ||
| Modified | Datetime |
Usage information for the operation StaffStores.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM StaffStores WHERE StaffId = 2 SELECT * FROM StaffStores WHERE StaffId = 1 AND StoreId > 3 ORDER BY StaffId DESC
| Name | Type | References | Description |
| StaffId [KEY] | Integer | ||
| StoreId [KEY] | Integer | ||
| ControlDivision | Integer |
Usage information for the operation StockHistories.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side. Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side. For example, the following queries are processed server side:
NOTE: One or more of the following filtering conditions are required in the request. The default filtering condition is set to UpdDateTime for the last 30 days.
SELECT * FROM StockHistories WHERE Id >= 1 AND Id <= 100000 SELECT * FROM StockHistories WHERE ProductId = 1 SELECT * FROM StockHistories WHERE UpdDateTime >= '2021/03/01 00:00:00' AND UpdDateTime <= '2021/03/31 00:00:00' SELECT * FROM StockHistories WHERE TargetDateTime >= '2021/03/01 00:00:00' AND TargetDateTime <= '2021/03/31 00:00:00'
| Name | Type | References | Description |
| Id [KEY] | Long | ||
| UpdDateTime | Datetime | ||
| TargetDateTime | Datetime | ||
| ProductId | Long | ||
| StoreId | Integer | ||
| Amount | Integer | ||
| StockAmount | Integer | ||
| StockDivision | String | ||
| FromStoreId | Integer | ||
| ToStoreId | Integer |
Usage information for the operation StocktakingDetails.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side. Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side. For example, the following queries are processed server side:
NOTE: One or more of the following filtering conditions are required in the request. The default filtering condition is set to Modified for the last 30 days.
SELECT * FROM StocktakingDetails WHERE StocktakingInfoId >= 1 AND StocktakingInfoId <= 100000 SELECT * FROM StocktakingDetails WHERE Modified >= '2021/03/01 00:00:00' AND Modified <= '2021/03/31 00:00:00'
| Name | Type | References | Description |
| StocktakingInfoId [KEY] | Integer |
StocktakingInfo.StocktakingInfoId | |
| StocktakingHeadId [KEY] | Integer |
StocktakingHeads.StocktakingHeadId | |
| ProductId [KEY] | Long |
Products.ProductId | |
| ProductCode | String | ||
| ProductName | String | ||
| Size | String | ||
| Color | String | ||
| GroupCode | String | ||
| SupplierProductNo | String | ||
| StocktakingQuantity | Integer | ||
| TransportationStockQuantity | Integer | ||
| LayawayStockQuantity | Integer | ||
| StockQuantityBeforeAdjustment | Integer | ||
| Cost | Decimal | ||
| Memo | String | ||
| Modified | Datetime | ||
| InputStocktakingQuantity | Integer | ||
| QuantityModifiedDatetime | Datetime |
Usage information for the operation StocktakingHeads.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM StocktakingHeads WHERE DivisionCode != '373838333'
| Name | Type | References | Description |
| StocktakingInfoId [KEY] | Integer |
StocktakingInfo.StocktakingInfoId | |
| StocktakingHeadId [KEY] | Integer | ||
| DivisionCode | String | ||
| Modified | Datetime |
Usage information for the operation StocktakingInfo.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM StocktakingInfo WHERE StocktakingInfoId != '344'
| Name | Type | References | Description |
| StocktakingInfoId [KEY] | Integer | ||
| StoreId | Integer | ||
| DivisionUnit | Boolean | ||
| TargetDate | Date | ||
| AdjustmentDate | Datetime | ||
| StocktakingCompleteDate | Datetime | ||
| Status | Integer | ||
| Created | Datetime | ||
| Modified | Datetime | ||
| StockCountDivision | String | ||
| StocktakingInputCompleteDate | Datetime | ||
| AutoFollowingFlag | Integer | ||
| LayawayStockIncludeFlag | Integer |
Usage information for the operation StocktakingStockDetails.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM StocktakingStockDetails WHERE stocktakingInfoId = 2 AND baseDate = '2019-08-07' SELECT * FROM StocktakingStockDetails WHERE stocktakingInfoId = 1 AND baseDate = '1/1/2019' ORDER BY stocktakingInfoId
| Name | Type | References | Description |
| StocktakingInfoId [KEY] | Integer |
StocktakingInfo.StocktakingInfoId | |
| StocktakingHeadId [KEY] | Integer |
StocktakingHeads.StocktakingHeadId | |
| ProductId [KEY] | Long |
Products.ProductId | |
| ProductCode | String | ||
| ProductName | String | ||
| Size | String | ||
| Color | String | ||
| GroupCode | String | ||
| SupplierProductNo | String | ||
| StockQuantity | Integer | ||
| StockMoney | Decimal | ||
| TransportationQuantity | Integer | ||
| TransportationMoney | Decimal | ||
| LayawayQuantity | Integer | ||
| LayawayMoney | Decimal | ||
| StoreId | Integer | ||
| BaseDate | Date |
Usage information for the operation StorageDetails.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM StorageDetails WHERE StorageId = 2 SELECT ProductCode, ProductName, GroupCode FROM StorageDetails ORDER BY Size
| Name | Type | References | Description |
| StorageId [KEY] | Integer |
Storages.StorageId | |
| ProductId [KEY] | Long |
Products.ProductId | |
| ProductCode | String | ||
| ProductName | String | ||
| Size | String | ||
| Color | String | ||
| GroupCode | String | ||
| SupplierProductNo | String | ||
| Cost | Decimal | ||
| ScheduledQuantity | Integer | ||
| InspectionQuantity | Integer | ||
| StockoutQuantity | Integer | ||
| StockoutReason | String | ||
| InspectionDate | Date | ||
| CompulsoryCompleteFlag | String | ||
| Status | Integer | ||
| Modified | Datetime |
Usage information for the operation StorageInfoDeliveries.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side. Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side. For example, the following queries are processed server side:
NOTE: One or more of the following filtering conditions are required in the request. The default filtering condition is set to Modified for the last 30 days.
SELECT * FROM StorageInfoDeliveries WHERE StorageInfoId >= 1 AND StorageInfoId <= 100000 SELECT * FROM StorageInfoDeliveries WHERE Modified >= '2021/03/01 00:00:00' AND Modified <= '2021/03/31 00:00:00'
| Name | Type | References | Description |
| StorageInfoId [KEY] | Integer |
StorageInfo.StorageInfoId | |
| StorageStoreId [KEY] | Integer | ||
| StorageExpectedDateFrom | Date | ||
| StorageExpectedDateTo | Date | ||
| Modified | Datetime | ||
| StorageId | Integer |
Usage information for the operation StorageInfoDeliveryProducts.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side. Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side. For example, the following queries are processed server side:
NOTE: One or more of the following filtering conditions are required in the request. The default filtering condition is set to Modified for the last 30 days.
SELECT * FROM StorageInfoDeliveryProducts WHERE StorageInfoId >= 1 AND StorageInfoId <= 100000 SELECT * FROM StorageInfoDeliveryProducts WHERE Modified >= '2021/03/01 00:00:00' AND Modified <= '2021/03/31 00:00:00'
| Name | Type | References | Description |
| StorageInfoId [KEY] | Integer |
StorageInfo.StorageInfoId | |
| StoreId [KEY] | Integer |
Stores.StoreId | |
| ProductId [KEY] | Long |
Products.ProductId | |
| ProductCode | String | ||
| ProductName | String | ||
| Size | String | ||
| Color | String | ||
| GroupCode | String | ||
| SupplierProductNo | String | ||
| Quantity | Integer | ||
| Modified | Datetime |
Usage information for the operation StorageInfoProducts.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side. Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side. For example, the following queries are processed server side:
NOTE: One or more of the following filtering conditions are required in the request. The default filtering condition is set to Modified for the last 30 days.
SELECT * FROM StorageInfoProducts WHERE StorageInfoId >= 1 AND StorageInfoId <= 100000 SELECT * FROM StorageInfoProducts WHERE Modified >= '2021/03/01 00:00:00' AND Modified <= '2021/03/31 00:00:00'
| Name | Type | References | Description |
| StorageInfoId [KEY] | Integer |
StorageInfo.StorageInfoId | |
| ProductId [KEY] | Long |
Products.ProductId | |
| ProductCode | String | ||
| ProductName | String | ||
| Size | String | ||
| Color | String | ||
| GroupCode | String | ||
| SupplierProductNo | String | ||
| Cost | Decimal | ||
| Quantity | Integer | ||
| Modified | Datetime |
Usage information for the operation TransactionCoupons.rsd.
| Name | Type | References | Description |
| TransactionCouponId [KEY] | Long | ID assigned to each transaction coupon | |
| TerminalTranCouponId [KEY] | Long | Terminal transaction coupon ID | |
| TransactionHeadId [KEY] | Long |
TransactionHeads.TransactionHeadId | ID given to each transaction |
| TerminalTranId [KEY] | Long | Terminal transaction ID | |
| CouponId [KEY] | Long | Coupon ID. Coupon ID managed by smartphone register | |
| CouponName | String | Name of the Coupon | |
| SerialNumber | String | The coupon serial number. | |
| AwardType | String | The type of Coupon | |
| AwardValue | Decimal | Discount amount, discount rate, etc. What the value represents depends on the privilege type | |
| DiscountPrice | Decimal | The discount price. | |
| AdjustmentValue | Decimal | The Adjustment points/mile. | |
| CouponOfflineDivision | String | The Coupon Offline Classification. |
Usage information for the operation TransactionDepositOthers.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side.
Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * FROM TransactionDepositOthers WHERE TransactionHeadId = 61855 SELECT PaymentMethodId, PaymentMethodName, DepositOthers, Denomination FROM TransactionDepositOthers ORDER BY TransactionHeadId
| Name | Type | References | Description |
| TransactionHeadId [KEY] | Long |
TransactionHeads.TransactionHeadId | The ID assigned to each transaction |
| PaymentMethodNumber [KEY] | Integer | The Sequential number for each payment method in the transaction | |
| PaymentMethodId | Integer | The ID of the payment method | |
| PaymentMethodName | String | The name of the payment method | |
| DepositOthers | Decimal | The amount deposited at the time of accounting. | |
| Denomination | String | The denomination of the payment method. |
Usage information for the operation TransactionDetails.rsd.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns. LIKE (for date and dateTime datatype columns) and IN operator are processed client-side. Operators: =, !=, <>, >, <, >=, <=, AND, LIKE, ORDER BY are processed server-side. For example, the following queries are processed server side:
NOTE: One or more of the following filtering conditions are required in the request. The default filtering condition is set to UpdDateTime for the last 30 days.
SELECT * FROM TransactionDetails WHERE TransactionDateTime >= '2021/03/01 00:00:00' AND TransactionDateTime <= '2021/03/31 00:00:00' SELECT * FROM TransactionDetails WHERE TransactionHeadId >= 1 AND TransactionHeadId <= 100000 SELECT * FROM TransactionDetails WHERE UpdDateTime >= '2021/03/01 00:00:00' AND UpdDateTime <= '2021/03/31 00:00:00'
| Name | Type | References | Description |
| TransactionHeadId [KEY] | Long |
TransactionHeads.TransactionHeadId | |
| TransactionDateTime | Datetime | ||
| TransactionDetailId [KEY] | Integer | ||
| ParentTransactionDetailId | Integer | ||
| TransactionDetailDivision | Integer | ||
| ProductId | Long | ||
| ProductCode | String | ||
| ProductName | String | ||
| TaxDivision | Integer | ||
| Price | Decimal | ||
| SalesPrice | Decimal | ||
| UnitDiscountPrice | Decimal | ||
| UnitDiscountRate | Decimal | ||
| UnitDiscountDivision | Integer | ||
| Cost | Decimal | ||
| Quantity | Integer | ||
| UnitNonDiscountSum | Decimal | ||
| UnitDiscountSum | Decimal | ||
| UnitDiscountedSum | Decimal | ||
| CostSum | Decimal | ||
| CategoryId | Integer | ||
| CategoryName | String | ||
| DiscriminationNo | String | ||
| SalesDivision | Integer | ||
| ProductDivision | Integer | ||
| PointNotApplicable | Integer | ||
| TaxFreeDivision | Integer | ||
| TaxFreeCommodityPrice | Decimal | ||
| TaxFree | Decimal | ||
| ProductBundleGroupId | Integer | ||
| DiscountPriceProportional | Decimal | ||
| DiscountPointProportional | Decimal | ||
| DiscountCouponProportional | Decimal | Set coupon discount. | |
| TaxIncludeProportional | Decimal | ||
| TaxExcludeProportional | Decimal | ||
| ProductBundleProportional | Decimal | ||
| StaffDiscountProportional | Decimal | ||
| BargainDiscountProportional | Decimal | ||
| RoundingPriceProportional | Decimal | ||
| InventoryReservationDivision | Integer | ||
| GroupCode | String | ||
| UpdDateTime | Datetime | ||
| ProductStaffDiscountRate | Integer | ||
| StaffRank | String | ||
| StaffRankName | String | ||
| StaffDiscountRate | Decimal | ||
| StaffDiscountDivision | Integer | ||
| ApplyStaffDiscountRate | Decimal | ||
| ApplyStaffDiscountPrice | Decimal | ||
| BargainId | Integer | ||
| BargainName | String | ||
| BargainDivision | Integer | ||
| BargainValue | Decimal | ||
| ApplyBargainValue | Decimal | ||
| ApplyBargainDiscountPrice | Decimal | ||
| TaxRate | Decimal | ||
| StandardTaxRate | Decimal | ||
| ModifiedTaxRate | Decimal | ||
| ReduceTaxId | Integer | ||
| ReduceTaxName | String | ||
| ReduceTaxRate | String | ||
| Color | String | ||
| Size | String |
Stored procedures are function-like interfaces that extend the functionality of the Cloud beyond simple SELECT/INSERT/UPDATE/DELETE operations with Smaregi.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Smaregi, along with an indication of whether the procedure succeeded or failed.
| Name | Description |
This section shows the available API objects and provides more information on executing SQL to Smaregi APIs.
Tables describes the available tables. Table are statically defined to model Products, Customers, Shippings, and more.
Views describes the available views. Views are statically defined to model Stores, ShippingDetails and more. Views may not be modified, but can be used to supplement queries to the tables.
The Cloud models the data in Smaregi as a list of tables in a relational database that can be queried using standard SQL statements.
| Name | Description |
| AppPaymentMethods | Returns a list of app payment methods. |
| BargainProducts | Returns a list of products for a specified bargain. |
| Bargains | Returns a list of bargains. |
| BargainStores | Returns a list of products for a specified store. |
| BudgetStaffs | Returns a list of budgets by staff. |
| BundleProducts | Returns a list of products for a specified bundle group |
| Bundles | Returns a list of bundles. |
| Categories | Returns a list of categories. |
| CategoryGroups | Returns a list of category groups. |
| CouponItems | Returns a list of items tied to the specified coupon. |
| Coupons | Returns a list of coupons. |
| CustomerGroups | Returns a list of customer groups. |
| CustomerGroupSections | Returns a list of customer group sections. |
| CustomerPoints | Returns a list of customer points. |
| CustomerRanks | Returns a list of customer ranks. |
| Customers | Returns a list of customers. |
| DailyBudget | Returns daily budget of the specified date. |
| LossDivisions | Returns a list of loss divisions. |
| Losses | Returns a list of losses. |
| PaymentMethodGroups | Returns a list of payment method groups. |
| PaymentMethods | Returns a list of payment methods. |
| ProductAttributeItems | Returns a list of product attribute items. |
| ProductAttributes | Returns a list of product attributes. |
| ProductInventoryReservations | Returns inventory reservations of the specified product. |
| ProductOptionGroupProducts | Returns a list of products for a specified product option group. |
| ProductOptionGroups | Returns a list of product option groups. |
| ProductPrices | Retuns prices of the specified product. |
| ProductReserveItemLabels | Returns a list of product reserve item labels. |
| ProductReserveItems | Returns a list of product reserve items. |
| Products | Returns a list of products. |
| PurchaseOrders | Returns a list of purchase orders. |
| Receiving | Returns a list of receiving transaction. |
| Roles | Returns a list of roles. |
| Shipments | Generated schema file. |
| Shipping | Returns a list of shipping transactions. |
| ShippingModificationRequests | Returns a list of shipping modification requests. |
| StaffRanks | Returns a list of staff ranks. |
| Stock | Returns a list of stock. |
| Storage | Returns a list of storage transactions. |
| StoreClasses | Returns a list or store classes. |
| StoreClassItemRelations | Reads or deletes a list of relationship information between stores and store classification items. |
| StoreClassItems | Returns a list of store class items. |
| Stores | Returns a list of stores. |
| SupplierDivisions | Generated schema file. |
| SupplierProducts | Generated schema file. |
| Suppliers | Generated schema file. |
| TemporaryTransactionDetails | Returns temprary transaction details. |
| TemporaryTransactions | Returns a list of temprary transactions. |
| Terminals | Returns a list of terminals. |
| TransactionLayaways | Generated schema file. |
| Transactions | Generated schema file. |
Returns a list of app payment methods.
| Name | Type | ReadOnly | References | Description |
| PaymentMethodId [KEY] | Integer | True | ||
| PaymentMethodName | String | False |
Returns a list of products for a specified bargain.
| Name | Type | ReadOnly | References | Description |
| BargainId [KEY] | Integer | True |
Bargains.BargainId | |
| BargainProductId [KEY] | Long | True | ||
| Division | String | False | ||
| InsDateTime | Datetime | True | ||
| TargetDivision | String | False | ||
| TargetId | String | False | ||
| UpdDateTime | Datetime | True | ||
| Value | Decimal | False |
Returns a list of bargains.
| Name | Type | ReadOnly | References | Description |
| BargainId [KEY] | Integer | True | ||
| BargainName | String | False | ||
| InsDateTime | Datetime | True | ||
| TermEnd | Date | False | ||
| TermStart | Date | False | ||
| UpdDateTime | Datetime | True | ||
| BargainProductId | Long | False |
Returns a list of budgets by staff.
| Name | Type | ReadOnly | References | Description |
| StoreId [KEY] | Integer | False |
Stores.StoreId | |
| StaffId [KEY] | Integer | False |
Staffs.StaffId | |
| InsDateTime | Datetime | False | ||
| salesTargetStaff | Decimal | False | ||
| UpdDateTime | Datetime | False | ||
| Ym | String | False |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| Year | Integer | |
| Month | Integer |
Returns a list of products for a specified bundle group
| Name | Type | ReadOnly | References | Description |
| ProductBundleGroupId [KEY] | Integer | False |
Bundles.ProductBundleGroupId | |
| ProductBundleId [KEY] | Integer | False | ||
| ProductCategoryId | Integer | False | ||
| ProductId | Long | False | ||
| ProductGroupCode | String | False |
Returns a list of bundles.
| Name | Type | ReadOnly | References | Description |
| ProductBundleGroupId [KEY] | Integer | False | ||
| CalcDiscount | String | False | ||
| InsDateTime | Datetime | True | ||
| PointNotApplicable | String | False | ||
| Priority | Integer | False | ||
| ProductBundleGroupName | String | False | ||
| Quantity | Integer | False | ||
| ReduceTaxId | Integer | False | ||
| ReduceTaxValue | Integer | False | ||
| TaxDivision | String | False | ||
| TaxFreeDivision | String | False | ||
| TermFrom | Date | False | ||
| TermTo | Date | False | ||
| Type | String | False | ||
| UpdDateTime | Datetime | True | ||
| Value | Integer | False | ||
| Products | String | False |
Returns a list of categories.
| Name | Type | ReadOnly | References | Description |
| CategoryId [KEY] | Integer | True | ||
| CategoryAbbr | String | False | ||
| CategoryCode | String | False | ||
| CategoryGroupId | Integer | False |
CategoryGroups.CategoryGroupId | |
| CategoryName | String | False | ||
| Color | String | False | ||
| DisplayFlag | String | False | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | True | ||
| Level | String | True | ||
| ParentCategoryId | Integer | False | ||
| PointNotApplicable | String | False | ||
| ReduceTaxId | Integer | False | ||
| Tag | String | False | ||
| TaxDivision | String | False | ||
| TaxFreeDivision | String | False | ||
| UpdDateTime | Datetime | True |
Returns a list of category groups.
| Name | Type | ReadOnly | References | Description |
| CategoryGroupId [KEY] | Integer | True | ||
| CategoryGroupCode | String | False | ||
| CategoryGroupName | String | False | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | True | ||
| UpdDateTime | Datetime | True |
Returns a list of items tied to the specified coupon.
| Name | Type | ReadOnly | References | Description |
| CouponId [KEY] | Integer | True |
Coupons.CouponId | |
| CouponItemId | Integer | True | ||
| Division [KEY] | String | False | ||
| ItemId [KEY] | Integer | False | ||
| Type [KEY] | String | False | ||
| SalesPrice | Integer | False |
Returns a list of coupons.
| Name | Type | ReadOnly | References | Description |
| CouponId [KEY] | Integer | True | ||
| ApplyConditionDivision | String | False | ||
| AwardType | String | False | ||
| AwardValue | Integer | False | ||
| CombineDivision | String | False | ||
| CouponDivision | String | False | ||
| CouponName | String | False | ||
| EndDate | Date | False | ||
| InsDateTime | Datetime | True | ||
| MaxTargetPrice | Integer | False | ||
| MinTargetPrice | Integer | False | ||
| SerialNumber | String | False | ||
| StartDate | Date | False | ||
| Summary | String | False | ||
| UpdDateTime | Datetime | True | ||
| Items | String | False | ||
| Applicable | Date | False |
Returns a list of customer groups.
| Name | Type | ReadOnly | References | Description |
| CustomerGroupId [KEY] | Integer | True | ||
| CustomerGroupSectionId | Integer | False |
CustomerGroupSections.CustomerGroupSectionId | |
| DisplayFlag | String | False | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | True | ||
| Label | String | False | ||
| UpdDateTime | Datetime | True |
Returns a list of customer group sections.
| Name | Type | ReadOnly | References | Description |
| CustomerGroupSectionId [KEY] | String | True | ||
| CustomerGroupSectionLabel | String | False | ||
| InsDateTime | Datetime | True | ||
| UpdDateTime | Datetime | True |
Returns a list of customer points.
| Name | Type | ReadOnly | References | Description |
| CustomerId [KEY] | Long | True | ||
| InsDateTime | Datetime | True | ||
| Mile | Integer | False | ||
| Point | Integer | False | ||
| PointExpireDate | Date | False | ||
| UpdDateTime | Datetime | True |
Returns a list of customer ranks.
| Name | Type | ReadOnly | References | Description |
| Rank [KEY] | String | True | ||
| DisplayFlag | String | False | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | True | ||
| Name | String | False | ||
| PointGivingUnit | Decimal | False | ||
| PointGivingUnitPrice | Integer | False | ||
| UpdDateTime | Datetime | True |
Returns a list of customers.
| Name | Type | ReadOnly | References | Description |
| CustomerId [KEY] | Long | True | ||
| Address | String | False | ||
| AlphabetName | String | False | ||
| BirthDate | Date | False | ||
| BrowsingList | String | False | ||
| CompanyName | String | False | ||
| CustomerCode | String | False | ||
| CustomerNo | String | False | ||
| DepartmentName | String | False | ||
| EntryDate | Date | False | ||
| FavoriteList | String | False | ||
| FaxNumber | String | False | ||
| FirstKana | String | False | ||
| FirstName | String | False | ||
| InsDateTime | Datetime | True | ||
| LastComeDateTime | Datetime | False | ||
| LastKana | String | False | ||
| LastName | String | False | ||
| LeaveDate | Date | False | ||
| MailAddress | String | False | ||
| MailAddress2 | String | False | ||
| MailAddress3 | String | False | ||
| MailReceiveFlag | String | False | ||
| ManagerialPosition | String | False | ||
| MobileNumber | String | False | ||
| Nationality | String | False | ||
| Note | String | False | ||
| Note2 | String | False | ||
| PassportNo | String | False | ||
| PhoneNumber | String | False | ||
| PinCode | String | False | ||
| PointExpireDate | Date | False | ||
| PointGivingUnitPrice | Integer | False | ||
| PointGivingUnit | Decimal | False | ||
| PostCode | String | False | ||
| Rank | String | False | ||
| Sex | Integer | False | ||
| StaffRank | String | False | ||
| Status | String | False | ||
| StoreId | Integer | False | ||
| UpdDateTime | Datetime | True |
Returns daily budget of the specified date.
| Name | Type | ReadOnly | References | Description |
| StoreId [KEY] | Integer | False | ||
| InsDateTime | Datetime | False | ||
| SalesTargetDaily | Decimal | False | ||
| UpdDateTime | Datetime | False | ||
| Ym | String | False | ||
| Day | Integer | False | ||
| Year [KEY] | Integer | False | ||
| Month [KEY] | Integer | False |
Returns a list of loss divisions.
| Name | Type | ReadOnly | References | Description |
| Code [KEY] | String | True | ||
| ActiveFlag | String | False | ||
| Color | String | False | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | True | ||
| Name | String | False | ||
| UpdDateTime | Datetime | True |
Returns a list of losses.
| Name | Type | ReadOnly | References | Description |
| LossId [KEY] | Integer | True | ||
| Division | String | False | ||
| IdentificationNo | String | False | ||
| InsDateTime | Datetime | True | ||
| LossDateTime | Datetime | False | ||
| Memo | String | False | ||
| StaffId | Integer | False | ||
| StaffName | String | False | ||
| StoreId | Integer | False | ||
| UpdDateTime | Datetime | True | ||
| Details | String | False |
Returns a list of payment method groups.
| Name | Type | ReadOnly | References | Description |
| PaymentMethodGroupId [KEY] | Integer | False | ||
| Code | String | False | ||
| DisplayFlag | String | False | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | False | ||
| Name | String | False | ||
| UpdDateTime | Datetime | False |
Returns a list of payment methods.
| Name | Type | ReadOnly | References | Description |
| PaymentMethodId [KEY] | Integer | False | ||
| ChangeFlag | String | False | ||
| DisplayFlag | String | False | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | False | ||
| PaymentMethodCode | String | False | ||
| PaymentMethodGroupId | Integer | False | ||
| PaymentMethodName | String | False | ||
| PointGivingUnit | Decimal | False | ||
| PointGivingUnitPrice | Integer | False | ||
| SecuritiesFlag | String | False | ||
| UnitPrice | Integer | False | ||
| UpdDateTime | Datetime | False | ||
| Stores | String | False |
Returns a list of product attribute items.
| Name | Type | ReadOnly | References | Description |
| Code [KEY] | String | False | ||
| DisplaySequence | Integer | False | ||
| No | String | False | ||
| Name | String | False |
Returns a list of product attributes.
| Name | Type | ReadOnly | References | Description |
| No [KEY] | String | True | ||
| Name | String | False |
Returns inventory reservations of the specified product.
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | Long | False |
Products.ProductId | |
| ReservationProductId [KEY] | Long | False | ||
| ReservationAmount | Integer | False |
Returns a list of products for a specified product option group.
| Name | Type | ReadOnly | References | Description |
| ProductOptionGroupId [KEY] | String | False |
ProductOptionGroups.ProductOptionGroupId | |
| ProductId [KEY] | Long | False |
Products.ProductId | |
| SyncDivision | String | False | ||
| insDateTime | Datetime | False | ||
| updDateTime | Datetime | False |
Returns a list of product option groups.
| Name | Type | ReadOnly | References | Description |
| ProductOptionGroupId [KEY] | String | False | ||
| ConditionId | String | False | ||
| InsDateTime | Datetime | False | ||
| Max | String | False | ||
| Min | String | False | ||
| ProductOptionGroupName | String | False | ||
| SyncDivision | String | False | ||
| UpdDateTime | Datetime | False | ||
| Products | String | False |
Retuns prices of the specified product.
The Cloud will use the Smaregi API to process WHERE clause conditions and selected columns.
Operators: =, ORDER BY are processed server-side.
For example, the following queries are processed server side:
SELECT * from ProductPrices where ProductId=202504301729112
NOTE: The pseudo columns are intended to be supported only for INSERT and UPDATE operations
To add to ProductPrices, specify the following columns: Price, ProductName, CategoryId, StoreId, PriceDivision, StartDate, EndDate and ProductPrice.
INSERT INTO ProductPrices (Price, ProductName, CategoryId, StoreId, PriceDivision, StartDate, EndDate, ProductPrice) VALUES (90,testingproductname,1,35,2,2000-01-23,2000-01-24,12345678)
Smaregi allows updates for the ProductPrice column.
UPDATE ProductPrices SET ProductPrice=89 WHERE ProductId=202504301729109
NOTE: Updating ProductPrice will update the value for Price column.
ProductPrices can be deleted by providing the ProductId, PriceDivision, StoreId and StartDate.
DELETE FROM ProductPrices WHERE ProductId = 1 AND PriceDivision = 2 AND StoreId = 3 AND StartDate = '2025/3/3'
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | Long | False |
Products.ProductId | |
| PriceDivision [KEY] | String | False | ||
| StartDate [KEY] | Date | False | ||
| StoreId [KEY] | Integer | False | ||
| Price | Integer | False | ||
| EndDate | Date | False |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| CategoryId | Integer | |
| ProductName | String | |
| ProductPrice | String |
Returns a list of product reserve item labels.
| Name | Type | ReadOnly | References | Description |
| No [KEY] | String | False | ||
| Label | String | False |
Returns a list of product reserve items.
| Name | Type | ReadOnly | References | Description |
| No [KEY] | String | False | ||
| ProductId [KEY] | Long | False |
Products.ProductId | |
| Value | String | False |
Returns a list of products.
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | Long | False | ||
| AppStartDateTime | Datetime | False | ||
| Attribute | String | False | ||
| CalcDiscount | String | False | ||
| CatchCopy | String | False | ||
| CategoryId | Integer | False | ||
| Color | String | False | ||
| Cost | Decimal | False | ||
| CustomerPrice | Integer | False | ||
| Description | String | False | ||
| DisplayFlag | String | False | ||
| DisplaySequence | Integer | False | ||
| Division | String | False | ||
| GroupCode | String | False | ||
| InsDateTime | Datetime | False | ||
| OrderPoint | Integer | False | ||
| PointNotApplicable | String | False | ||
| Price | Integer | False | ||
| PrintReceiptProductName | String | False | ||
| ProductCode | String | False | ||
| ProductKana | String | False | ||
| ProductName | String | False | ||
| ProductOptionGroupId | Integer | False | ||
| ProductPriceDivision | String | False | ||
| PurchaseCost | Decimal | False | ||
| ReduceTaxCustomerPrice | Integer | False | ||
| ReduceTaxId | Integer | False | ||
| ReduceTaxPrice | String | False | ||
| SalesDivision | String | False | ||
| Size | String | False | ||
| StaffDiscountRate | Integer | False | ||
| StockControlDivision | String | False | ||
| SupplierProductNo | String | False | ||
| Tag | String | False | ||
| TaxDivision | String | False | ||
| TaxFreeDivision | String | False | ||
| UpdDateTime | Datetime | False | ||
| Url | String | False | ||
| UseCategoryReduceTax | String | False | ||
| ReserveItems | String | False | ||
| Prices | String | False | ||
| Stores | String | False | ||
| AttributeItems | String | False | ||
| InventoryReservations | String | False | ||
| OrderSettings | String | False |
Returns a list of purchase orders.
| Name | Type | ReadOnly | References | Description |
| PurchaseOrderId [KEY] | Integer | False | ||
| StorageInfoId | Integer | False | ||
| CategoryGroupId | Integer | False | ||
| DivisionUnit | String | False | ||
| IdentificationNo | String | False | ||
| InsDateTime | Datetime | False | ||
| Memo | String | False | ||
| OrderedDate | Date | False | ||
| RecipientOrderId | Integer | False | ||
| RoundingDivision | String | False | ||
| StaffId | Integer | False | ||
| Status | String | False | ||
| StorageInfoId | Integer | False | ||
| UpdDateTime | Datetime | False | ||
| Products | String | False | ||
| Stores | String | False |
Returns a list of receiving transaction.
| Name | Type | ReadOnly | References | Description |
| ReceivingId [KEY] | Integer | True | ||
| ReceivingDate [KEY] | Date | True | ||
| IdentificationNo | String | False | ||
| InsDateTime | Datetime | False | ||
| Memo | String | False | ||
| ReceivingExpectedDateFrom | Date | False | ||
| ReceivingExpectedDateTo | Date | False | ||
| ReceivingStoreId | Integer | False | ||
| ShippingId | Integer | False | ||
| ShippingStoreId | Integer | False | ||
| StaffId | Integer | False | ||
| Status | String | False | ||
| UpdDateTime | Datetime | False | ||
| Details | String | False |
Returns a list of roles.
| Name | Type | ReadOnly | References | Description |
| RoleId [KEY] | Integer | True | ||
| RoleName | String | False | ||
| Note | String | False | ||
| InsDateTime | Datetime | False | ||
| UpdDateTime | Datetime | False | ||
| FunctionControls | String | False | ||
| InventoryFunctionControls | String | False | ||
| AlertFunctionControls | String | False |
Generated schema file.
| Name | Type | ReadOnly | References | Description |
| ShipmentId [KEY] | Integer | True | ||
| ApprovalDateTime | Datetime | False | ||
| ApprovalStatus | String | False | ||
| IdentificationNo | String | False | ||
| InsDateTime | Datetime | False | ||
| Memo | String | False | ||
| RecipientId | Integer | False | ||
| RecipientName | String | False | ||
| RecipientType | String | False | ||
| RoundingDivision | String | False | ||
| ShipmentDate | Date | False | ||
| ShipmentDivision | String | False | ||
| ShipmentStoreId | Integer | False | ||
| StaffId | Integer | False | ||
| Status | String | False | ||
| TaxRate | Decimal | False | ||
| UpdDateTime | Datetime | False | ||
| Details | String | False |
Returns a list of shipping transactions.
| Name | Type | ReadOnly | References | Description |
| ShippingId [KEY] | Integer | True | ||
| ApprovalDateTime | Datetime | False | ||
| ApprovalStatus | String | False | ||
| IdentificationNo | String | False | ||
| InsDateTime | Datetime | False | ||
| Memo | String | False | ||
| ModificationRequestCheckedDateTime | Datetime | False | ||
| ModificationRequestDateTime | Datetime | False | ||
| ModificationRequestStatus | String | False | ||
| ReceivingDesiredDate | Date | False | ||
| ReceivingExpectedDateFrom | Date | False | ||
| ReceivingExpectedDateTo | Date | False | ||
| ReceivingStoreId | Integer | False | ||
| RequestStaffId | Integer | False | ||
| ShippingDate | Date | False | ||
| ShippingStoreId | Integer | False | ||
| StaffId | Integer | False | ||
| Status | String | False | ||
| UpdDateTime | Datetime | False | ||
| Details | String | False |
Returns a list of shipping modification requests.
| Name | Type | ReadOnly | References | Description |
| ShippingId [KEY] | String | True | ||
| ApprovalDateTime | Datetime | False | ||
| ApprovalStatus | String | False | ||
| Details | String | False | ||
| IdentificationNo | String | False | ||
| InsDateTime | Datetime | False | ||
| Memo | String | False | ||
| ModificationRequestCheckedDateTime | String | False | ||
| ModificationRequestDateTime | String | False | ||
| ModificationRequestStatus | String | False | ||
| Receiving | String | False | ||
| ReceivingDesiredDate | Date | False | ||
| ReceivingExpectedDateFrom | Date | False | ||
| ReceivingExpectedDateTo | Date | False | ||
| ReceivingStoreId | String | False | ||
| RequestStaffId | String | False | ||
| ShippingDate | Date | False | ||
| ShippingStoreId | String | False | ||
| StaffId | Integer | False | ||
| Status | String | False | ||
| UpdDateTime | Datetime | False | ||
| ModificationRequestDate | Date | False |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| WithDetails | String | |
| WithReceiving | String |
Returns a list of staff ranks.
| Name | Type | ReadOnly | References | Description |
| StaffRank [KEY] | String | True | ||
| DisplayFlag | String | False | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | True | ||
| StaffApplicationSellingPriceDivision | String | False | ||
| StaffDiscountRate | Integer | False | ||
| StaffRankDisplayName | String | False | ||
| StaffRankFullName | String | False | ||
| UpdDateTime | Datetime | True | ||
| UseProductStaffDiscountRateDivision | String | False |
Returns a list of stock.
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | Long | False | ||
| StoreId [KEY] | Integer | False | ||
| LayawayStockAmount | Integer | False | ||
| StockAmount | Integer | False | ||
| UpdDateTime | Datetime | False | ||
| StockHistory | String | False |
Returns a list of storage transactions.
| Name | Type | ReadOnly | References | Description |
| StorageId [KEY] | Integer | False | ||
| IdentificationNo | String | False | ||
| InsDateTime | Datetime | False | ||
| Memo | String | False | ||
| RoundingDivision | String | False | ||
| StaffId | Integer | False | ||
| Status | String | False | ||
| StorageDate | Date | False | ||
| StorageExpectedDateFrom | Date | False | ||
| StorageExpectedDateTo | Date | False | ||
| StorageInfoId | Integer | False | ||
| StorageStoreId | Integer | False | ||
| SupplierId | Integer | False | ||
| UpdDateTime | Datetime | False | ||
| Details | String | False |
Returns a list or store classes.
| Name | Type | ReadOnly | References | Description |
| StoreClassId [KEY] | Integer | False | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | False | ||
| StoreClassName | String | False | ||
| UpdDateTime | Datetime | False |
Reads or deletes a list of relationship information between stores and store classification items.
| Name | Type | ReadOnly | References | Description |
| StoreClassId [KEY] | Integer | False |
StoreClasses.StoreClassId | |
| StoreId [KEY] | Integer | False |
Stores.StoreId | |
| StoreClassItemId | Integer | False |
StoreClassItems.StoreClassItemId |
Returns a list of store class items.
| Name | Type | ReadOnly | References | Description |
| StoreClassId [KEY] | Integer | True |
StoreClasses.StoreClassId | |
| StoreClassItemId [KEY] | Integer | True | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | True | ||
| StoreClassItemName | String | False | ||
| UpdDateTime | Datetime | True |
Returns a list of stores.
| Name | Type | ReadOnly | References | Description |
| StoreId [KEY] | Integer | False | ||
| Address | String | False | ||
| CancelSettingDivision | String | False | ||
| CardCompanySelectDivision | String | False | ||
| CarriageDisplayFlag | String | False | ||
| DiscountRoundingDivision | String | False | ||
| DisplaySequence | Integer | False | ||
| Division | String | False | ||
| FaxNumber | String | False | ||
| GiftReceiptValidDays | Integer | False | ||
| Homepage | String | False | ||
| InsDateTime | Datetime | False | ||
| InvoiceRegistrationNo | String | False | ||
| MailAddress | String | False | ||
| MaxBundleProductCount | Integer | False | ||
| MaxDiscountRate | Integer | False | ||
| PauseFlag | String | False | ||
| PhoneNumber | String | False | ||
| PointNotApplicable | String | False | ||
| PostCode | String | False | ||
| PriceChangeFlag | String | False | ||
| PrintReceiptStoreName | String | False | ||
| PrintStockReceiptStoreName | String | False | ||
| RoundingDivision | String | False | ||
| SavingAutoDivision | String | False | ||
| SavingAutoPrice | Integer | False | ||
| SellDivision | String | False | ||
| StoreAbbr | String | False | ||
| StoreCode | String | False | ||
| StoreName | String | False | ||
| SumDateChangeTime | String | False | ||
| SumProcDivision | String | False | ||
| SumRefColumn | String | False | ||
| TaxFreeDivision | String | False | ||
| TaxLabelNormal | String | False | ||
| TaxLabelReduce | String | False | ||
| TempTranMailAddress | String | False | ||
| TerminalAdjustmentCashFlag | String | False | ||
| TerminalCheckCashFlag | String | False | ||
| UpdDateTime | Datetime | False | ||
| WaiterAdjustmentDivision | String | False | ||
| PointCondition | String | False | ||
| ReceiptPrintInfo | String | False | ||
| WithPointCondition | String | False | ||
| WithReceiptPrintInfo | String | False |
Generated schema file.
| Name | Type | ReadOnly | References | Description |
| SupplierDivisionId [KEY] | Integer | False | ||
| DisplayFlag | String | False | ||
| DisplaySequence | Integer | False | ||
| InsDateTime | Datetime | False | ||
| Name | String | False | ||
| UpdDateTime | Datetime | False |
Generated schema file.
| Name | Type | ReadOnly | References | Description |
| SupplierId [KEY] | Integer | False | ||
| Address | String | False | ||
| FaxNumber | String | False | ||
| InsDateTime | Datetime | False | ||
| MailAddress | String | False | ||
| OrderPriority | Integer | False | ||
| PhoneNumber | String | False | ||
| StaffName | String | False | ||
| SupplierAbbr | String | False | ||
| SupplierCode | String | False | ||
| SupplierDivisionId | Integer | False |
SupplierDivisions.SupplierDivisionId | |
| SupplierName | String | False | ||
| UpdDateTime | Datetime | False |
Returns temprary transaction details.
| Name | Type | ReadOnly | References | Description |
| TransactionHeadId | Integer | False | ||
| ApplyBargainDiscountPrice | Integer | False | ||
| ApplyBargainValue | String | False | ||
| ApplyStaffDiscountPrice | Integer | False | ||
| ApplyStaffDiscountRate | Integer | False | ||
| BargainDiscountProportional | Integer | False | ||
| BargainDivision | String | False | ||
| BargainId | Integer | False | ||
| BargainName | String | False | ||
| BargainValue | Integer | False | ||
| CalcDiscount | String | False | ||
| CategoryId | Integer | False | ||
| CategoryName | String | False | ||
| Color | String | False | ||
| Cost | Decimal | False | ||
| CostSum | Decimal | False | ||
| DiscountCouponProportional | Integer | False | ||
| DiscountPointProportional | Integer | False | ||
| DiscountPriceProportional | Integer | False | ||
| DiscriminationNo | String | False | ||
| GroupCode | String | False | ||
| InventoryReservationDivision | String | False | ||
| Memo | String | False | ||
| ModifiedTaxRate | Decimal | False | ||
| ParentTransactionDetailId | Integer | False | ||
| PointNotApplicable | String | False | ||
| Price | Integer | False | ||
| PrintReceiptProductName | String | False | ||
| ProductBundleGroupId | Integer | False | ||
| ProductBundleProportional | Integer | False | ||
| ProductCode | String | False | ||
| ProductDivision | String | False | ||
| ProductId | Long | False | ||
| ProductName | String | False | ||
| ProductStaffDiscountRate | Integer | False | ||
| Quantity | Integer | False | ||
| ReduceTaxId | Integer | False | ||
| ReduceTaxMemberPrice | Integer | False | ||
| ReduceTaxName | String | False | ||
| ReduceTaxPrice | Integer | False | ||
| ReduceTaxRate | Decimal | False | ||
| RfidTags | String | False | ||
| RoundingPriceProportional | Integer | False | ||
| SalesDivision | String | False | ||
| SalesPrice | Integer | False | ||
| Size | String | False | ||
| StaffDiscountDivision | String | False | ||
| StaffDiscountProportional | Integer | False | ||
| StaffDiscountRate | Integer | False | ||
| StaffRank | String | False | ||
| StaffRankName | String | False | ||
| StandardTaxRate | String | False | ||
| TaxDivision | String | False | ||
| TaxExcludeProportional | Integer | False | ||
| TaxFree | String | False | ||
| TaxFreeCommodityPrice | Integer | False | ||
| TaxFreeDivision | String | False | ||
| TaxIncludeProportional | Integer | False | ||
| TaxRate | Decimal | False | ||
| TransactionDetailDivision | String | False | ||
| TransactionDetailId | Integer | False | ||
| UnitDiscountDivision | String | False | ||
| UnitDiscountedSum | Integer | False | ||
| UnitDiscountPrice | Integer | False | ||
| UnitDiscountRate | Integer | False | ||
| UnitDiscountSum | Integer | False | ||
| UnitNonDiscountSum | Integer | False |
Returns a list of temprary transactions.
| Name | Type | ReadOnly | References | Description |
| TransactionHeadId [KEY] | Integer | True | ||
| AdjustmentDateTime | Datetime | False | ||
| AdjustmentMile | Integer | False | ||
| AdjustmentMileDivision | String | False | ||
| AdjustmentMileValue | Integer | False | ||
| Amount | Integer | False | ||
| AuthDate | Date | False | ||
| AuthNumber | String | False | ||
| Barcode | String | False | ||
| CancelDateTime | Datetime | False | ||
| CancelDivision | String | False | ||
| CancelSlipNumber | String | False | ||
| CardCompany | String | False | ||
| Carriage | Integer | False | ||
| CashTotal | Integer | False | ||
| Change | Integer | False | ||
| Commission | Integer | False | ||
| CostTotal | Decimal | False | ||
| CouponDiscount | Integer | False | ||
| CreditDivision | String | False | ||
| CreditTotal | Integer | False | ||
| CurrentMile | Integer | False | ||
| Customer | String | False | ||
| CustomerCode | String | False | ||
| CustomerGroupId | Integer | False | ||
| CustomerGroupId2 | Integer | False | ||
| CustomerGroupId3 | Integer | False | ||
| CustomerGroupId4 | Integer | False | ||
| CustomerGroupId5 | Integer | False | ||
| CustomerGroups | String | False | ||
| CustomerId | Long | False | ||
| CustomerPinCode | String | False | ||
| CustomerRank | String | False | ||
| Denomination | String | False | ||
| Deposit | Integer | False | ||
| DepositCash | Integer | False | ||
| DepositCredit | Integer | False | ||
| DiscountRoundingDivision | String | False | ||
| DisposeDivision | String | False | ||
| DisposeServerTransactionHeadId | Integer | False | ||
| EarnMile | Integer | False | ||
| EnterDateTime | Datetime | False | ||
| ExchangeTicketNo | String | False | ||
| GiftReceiptValidDays | Integer | False | ||
| GuestNumbers | Integer | False | ||
| GuestNumbersFemale | Integer | False | ||
| GuestNumbersMale | Integer | False | ||
| GuestNumbersUnknown | Integer | False | ||
| InTaxSalesTotal | Integer | False | ||
| Memo | String | False | ||
| MileageDivision | String | False | ||
| MileageLabel | String | False | ||
| NetTaxFreeConsumableTaxExclude | Integer | False | ||
| NetTaxFreeConsumableTaxInclude | Integer | False | ||
| NetTaxFreeGeneralTaxExclude | Integer | False | ||
| NetTaxFreeGeneralTaxInclude | Integer | False | ||
| NewPoint | Integer | False | ||
| NonSalesTargetAmount | Integer | False | ||
| NonSalesTargetCostTotal | Decimal | False | ||
| NonSalesTargetInTaxTotal | Integer | False | ||
| NonSalesTargetOutTaxTotal | Integer | False | ||
| NonSalesTargetReturnAmount | Integer | False | ||
| NonSalesTargetTaxFreeTotal | Integer | False | ||
| NonSalesTargetTotal | Integer | False | ||
| NonTaxSalesTotal | Integer | False | ||
| OutTaxSalesTotal | Integer | False | ||
| PaymentCount | Integer | False | ||
| Point | Integer | False | ||
| PointDiscount | Integer | False | ||
| PointGivingDivision | String | False | ||
| PointGivingUnit | Decimal | False | ||
| PointGivingUnitPrice | Integer | False | ||
| PointSpendDivision | String | False | ||
| ReceiptMemo | String | False | ||
| ReturnAmount | String | False | ||
| ReturnSales | String | False | ||
| RoundingDivision | String | False | ||
| RoundingPrice | Integer | False | ||
| SalesHeadDivision | String | False | ||
| SequentialNumber | Integer | False | ||
| SellDivision | String | False | ||
| SlipNumber | String | False | ||
| SpendPoint | Integer | False | ||
| Staff | String | False | ||
| StaffCode | String | False | ||
| StaffId | Integer | False | ||
| StaffName | String | False | ||
| Status | String | False | ||
| Store | String | False | ||
| StoreCode | String | False | ||
| StoreId | Integer | False | ||
| Subtotal | Integer | False | ||
| SubtotalDiscountDivision | String | False | ||
| SubtotalDiscountPrice | Integer | False | ||
| SubtotalDiscountRate | Integer | False | ||
| SubtotalForDiscount | String | False | ||
| SumDate | Date | False | ||
| SumDivision | String | False | ||
| Tags | String | False | ||
| TaxExclude | Integer | False | ||
| TaxFreeSalesDivision | String | False | ||
| TaxInclude | Integer | False | ||
| TaxRate | Decimal | False | ||
| TaxRounding | String | False | ||
| TerminalId | Integer | False | ||
| TerminalTranDateTime | Datetime | False | ||
| TerminalTranId | Integer | False | ||
| TipCash | String | False | ||
| TipCredit | String | False | ||
| Total | Integer | False | ||
| TotalMile | Integer | False | ||
| TotalPoint | Integer | False | ||
| TransactionDateTime | Datetime | False | ||
| TransactionHeadDivision | String | False | ||
| TransactionUuid | String | False | ||
| UnitBargainDiscountsubtotal | Integer | False | ||
| UnitDiscountsubtotal | Integer | False | ||
| UnitNonDiscountsubtotal | Integer | False | ||
| UnitStaffDiscountsubtotal | Integer | False | ||
| UpdDateTime | Datetime | False | ||
| Details | String | False |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| WithCustomer | String | |
| WithCustomerGroups | String | |
| WithStore | String | |
| WithStaff | String |
Returns a list of terminals.
| Name | Type | ReadOnly | References | Description |
| TerminalId [KEY] | Integer | False | ||
| AppVersion | String | False | ||
| CashDrawerId | Integer | False | ||
| CreditTerminalId | Integer | False | ||
| InsDateTime | Datetime | False | ||
| ParentTerminalId | Integer | False | ||
| SelfCheckoutAvailableFlag | String | False | ||
| SmartIdEngineAvailableFlag | String | False | ||
| StoreId | Integer | False | ||
| TerminalName | String | False | ||
| TransactionEditableFlag | String | False | ||
| UpdDateTime | Datetime | False | ||
| UseStopDivision | String | False | ||
| Uuid | String | False |
Generated schema file.
| Name | Type | ReadOnly | References | Description |
| TransactionHeadId [KEY] | Integer | True | ||
| AdjustmentDateTime | Datetime | False | ||
| AdjustmentMile | Integer | False | ||
| AdjustmentMileDivision | String | False | ||
| AdjustmentMileValue | Integer | False | ||
| Amount | Integer | False | ||
| AuthDate | Date | False | ||
| AuthNumber | String | False | ||
| CancelDateTime | Datetime | False | ||
| CancelDivision | String | False | ||
| CancelSlipNumber | String | False | ||
| CardCompany | String | False | ||
| Carriage | Integer | False | ||
| CashTotal | Integer | False | ||
| Change | Integer | False | ||
| Commission | Integer | False | ||
| CostTotal | Decimal | False | ||
| CreditDivision | String | False | ||
| CreditTotal | Integer | False | ||
| CurrentMile | Integer | False | ||
| Customer | String | False | ||
| CustomerCode | String | False | ||
| CustomerGroupId | Integer | False | ||
| CustomerGroupId2 | Integer | False | ||
| CustomerGroupId3 | Integer | False | ||
| CustomerGroupId4 | Integer | False | ||
| CustomerGroupId5 | Integer | False | ||
| CustomerGroups | String | False | ||
| CustomerId | Long | False | ||
| CustomerPinCode | String | False | ||
| CustomerRank | String | False | ||
| Denomination | String | False | ||
| Deposit | Integer | False | ||
| DepositCash | Integer | False | ||
| DepositCredit | Integer | False | ||
| DiscountRoundingDivision | String | False | ||
| Discounts | String | False | ||
| DisposeDivision | String | False | ||
| DisposeServerTransactionHeadId | String | False | ||
| EarnMile | Integer | False | ||
| EnterDateTime | Datetime | False | ||
| ExchangeTicketNo | String | False | ||
| GiftReceiptValidDays | Integer | False | ||
| GuestNumbers | Integer | False | ||
| GuestNumbersFemale | Integer | False | ||
| GuestNumbersMale | Integer | False | ||
| GuestNumbersUnknown | Integer | False | ||
| InTaxSalesTotal | Integer | False | ||
| Layaway | String | False | ||
| LayawayPickUp | String | False | ||
| Memo | String | False | ||
| MileageDivision | String | False | ||
| MileageLabel | String | False | ||
| NetTaxFreeConsumableTaxExclude | Integer | False | ||
| NetTaxFreeConsumableTaxInclude | Integer | False | ||
| NetTaxFreeGeneralTaxExclude | Integer | False | ||
| NetTaxFreeGeneralTaxInclude | Integer | False | ||
| NewPoint | Integer | False | ||
| NonSalesTargetAmount | Integer | False | ||
| NonSalesTargetCostTotal | Decimal | False | ||
| NonSalesTargetInTaxTotal | Integer | False | ||
| NonSalesTargetOutTaxTotal | Integer | False | ||
| NonSalesTargetReturnAmount | Integer | False | ||
| NonSalesTargetTaxFreeTotal | Integer | False | ||
| NonSalesTargetTotal | Integer | False | ||
| NonTaxSalesTotal | Integer | False | ||
| OutTaxSalesTotal | Integer | False | ||
| PaymentCount | Integer | False | ||
| Point | Integer | False | ||
| PointDiscount | Integer | False | ||
| PointGivingDivision | String | False | ||
| PointGivingUnit | Decimal | False | ||
| PointGivingUnitPrice | Integer | False | ||
| PointSpendDivision | String | False | ||
| ReceiptMemo | String | False | ||
| ReturnAmount | Integer | False | ||
| ReturnSales | String | False | ||
| RoundingDivision | String | False | ||
| RoundingPrice | Integer | False | ||
| SalesHeadDivision | String | False | ||
| SellDivision | String | False | ||
| SlipNumber | String | False | ||
| SpendPoint | Integer | False | ||
| Staff | String | False | ||
| StaffCode | String | False | ||
| StaffId | Integer | False | ||
| StaffName | String | False | ||
| Store | String | False | ||
| StoreCode | String | False | ||
| StoreId | Integer | False | ||
| Subtotal | Integer | False | ||
| SubtotalDiscountDivision | Integer | False | ||
| SubtotalDiscountPrice | Integer | False | ||
| SubtotalDiscountRate | Integer | False | ||
| SubtotalForDiscount | String | False | ||
| SumDate | Date | False | ||
| SumDivision | String | False | ||
| Tags | String | False | ||
| TaxExclude | Integer | False | ||
| TaxFreeSalesDivision | String | False | ||
| TaxInclude | Integer | False | ||
| TaxRate | Decimal | False | ||
| TaxRounding | String | False | ||
| TerminalId | Integer | False | ||
| TerminalTranDateTime | Datetime | False | ||
| TerminalTranId | Integer | False | ||
| TipCash | Integer | False | ||
| TipCredit | Integer | False | ||
| Total | Integer | False | ||
| TotalMile | Integer | False | ||
| TotalPoint | Integer | False | ||
| TransactionDateTime | Datetime | False | ||
| TransactionHeadDivision | String | False | ||
| TransactionUuid | String | False | ||
| UnitBargainDiscountsubtotal | Integer | False | ||
| UnitDiscountsubtotal | Integer | False | ||
| UnitNonDiscountsubtotal | Integer | False | ||
| UnitStaffDiscountsubtotal | Integer | False | ||
| UpdDateTime | Datetime | False | ||
| Details | String | False |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| WithCustomer | String | |
| WithCustomerGroups | String | |
| WithDiscounts | String | |
| WithStore | String | |
| WithStaff | String | |
| WithLayway | String | |
| WithLaywayPickUp | String |
Generated schema file.
| Name | Type | ReadOnly | References | Description |
| TransactionHeadId [KEY] | Integer | True | ||
| AdjustmentDateTime | Datetime | False | ||
| AdjustmentMile | Integer | False | ||
| AdjustmentMileDivision | String | False | ||
| AdjustmentMileValue | Integer | False | ||
| Amount | Integer | False | ||
| AuthDate | Date | False | ||
| AuthNumber | String | False | ||
| Barcode | String | False | ||
| CancelDateTime | Datetime | False | ||
| CancelDivision | String | False | ||
| CancelSlipNumber | String | False | ||
| CardCompany | String | False | ||
| Carriage | Integer | False | ||
| CashTotal | Integer | False | ||
| Change | Integer | False | ||
| Commission | Integer | False | ||
| CostTotal | Decimal | False | ||
| CouponDiscount | String | False | ||
| CreditDivision | String | False | ||
| CreditTotal | String | False | ||
| CurrentMile | Integer | False | ||
| Customer | String | False | ||
| CustomerCode | String | False | ||
| CustomerGroupId | Integer | False | ||
| CustomerGroupId2 | Integer | False | ||
| CustomerGroupId3 | Integer | False | ||
| CustomerGroupId4 | Integer | False | ||
| CustomerGroupId5 | Integer | False | ||
| CustomerGroups | String | False | ||
| CustomerId | Long | False | ||
| CustomerPinCode | String | False | ||
| CustomerRank | String | False | ||
| Denomination | String | False | ||
| Deposit | Integer | False | ||
| DepositCash | Integer | False | ||
| DepositCredit | Integer | False | ||
| DiscountRoundingDivision | String | False | ||
| Discounts | String | False | ||
| DisposeDivision | String | False | ||
| DisposeServerTransactionHeadId | Integer | False | ||
| EarnMile | Integer | False | ||
| EnterDateTime | Datetime | False | ||
| ExchangeTicketNo | String | False | ||
| GiftReceiptValidDays | Integer | False | ||
| GuestNumbers | Integer | False | ||
| GuestNumbersFemale | Integer | False | ||
| GuestNumbersMale | Integer | False | ||
| GuestNumbersUnknown | Integer | False | ||
| InTaxSalesTotal | Integer | False | ||
| Layaway | String | False | ||
| Layaways | String | False | ||
| LayawayPickUp | String | False | ||
| Memo | String | False | ||
| MileageDivision | String | False | ||
| MileageLabel | String | False | ||
| MoneyControls | String | False | ||
| NetTaxFreeConsumableTaxExclude | Integer | False | ||
| NetTaxFreeConsumableTaxInclude | Integer | False | ||
| NetTaxFreeGeneralTaxExclude | Integer | False | ||
| NetTaxFreeGeneralTaxInclude | Integer | False | ||
| NewPoint | Integer | False | ||
| NonSalesTargetAmount | Integer | False | ||
| NonSalesTargetCostTotal | Decimal | False | ||
| NonSalesTargetInTaxTotal | Integer | False | ||
| NonSalesTargetOutTaxTotal | Integer | False | ||
| NonSalesTargetReturnAmount | Integer | False | ||
| NonSalesTargetTaxFreeTotal | Integer | False | ||
| NonSalesTargetTotal | Integer | False | ||
| NonTaxSalesTotal | Integer | False | ||
| OutTaxSalesTotal | Integer | False | ||
| PaymentCount | Integer | False | ||
| Point | Integer | False | ||
| PointDiscount | Integer | False | ||
| PointGivingDivision | String | False | ||
| PointGivingUnit | Decimal | False | ||
| PointGivingUnitPrice | Integer | False | ||
| PointSpendDivision | String | False | ||
| ReceiptMemo | String | False | ||
| RecordedStaffs | String | False | ||
| ReturnAmount | String | False | ||
| ReturnSales | String | False | ||
| RoundingDivision | String | False | ||
| RoundingPrice | Integer | False | ||
| SalesHeadDivision | String | False | ||
| SellDivision | String | False | ||
| SlipNumber | String | False | ||
| SpendPoint | Integer | False | ||
| Staff | String | False | ||
| StaffCode | String | False | ||
| StaffId | Integer | False | ||
| StaffName | String | False | ||
| Store | String | False | ||
| StoreCode | String | False | ||
| StoreId | Integer | False | ||
| Subtotal | Integer | False | ||
| SubtotalDiscountDivision | Integer | False | ||
| SubtotalDiscountPrice | Integer | False | ||
| SubtotalDiscountRate | Integer | False | ||
| SubtotalForDiscount | String | False | ||
| SumDate | Date | False | ||
| SumDivision | String | False | ||
| Tags | String | False | ||
| TaxExclude | Integer | False | ||
| TaxFreeSalesDivision | String | False | ||
| TaxInclude | Integer | False | ||
| TaxRate | Decimal | False | ||
| TaxRounding | String | False | ||
| TerminalId | Integer | False | ||
| TerminalTranDateTime | Datetime | False | ||
| TerminalTranId | Integer | False | ||
| TipCash | Integer | False | ||
| TipCredit | Integer | False | ||
| Total | Integer | False | ||
| TotalMile | Integer | False | ||
| TotalPoint | Integer | False | ||
| TransactionDateTime | Datetime | False | ||
| TransactionHeadDivision | String | False | ||
| TransactionUuid | String | False | ||
| UnitBargainDiscountsubtotal | Integer | False | ||
| UnitDiscountsubtotal | Integer | False | ||
| UnitNonDiscountsubtotal | Integer | False | ||
| UnitStaffDiscountsubtotal | Integer | False | ||
| UpdDateTime | Datetime | False | ||
| Details | String | False | ||
| DepositOthers | String | False | ||
| Coupons | String | False | ||
| CouponItems | String | False | ||
| LayawayPickUps | String | False |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| WithCustomer | String | |
| WithCustomerGroups | String | |
| WithDiscounts | String | |
| WithStore | String | |
| WithStaff | String | |
| WithRecordedStaff | String | |
| WithLayway | String | |
| WithLayways | String | |
| WithLaywayPickUp | String | |
| WithMoneyControl | String |
Views are similar to tables in the way that data is represented; however, views are read-only.
Queries can be executed against a view as if it were a normal table.
| Name | Description |
| Adjustments | Returns a list of adjustments. |
| CatCardCompanies | Returns a list of CAT/CCT card comanies. |
| ConsumptionTaxRates | Returns a list of consumption tax rates. |
| CustomerRequiredColumnSettings | Returns a list of customer required column settings. |
| DailySummaries | Returns daily summaries. |
| DiscountDivisions | Returns a list of discount divisions. |
| LossDetails | Returns details of the specified loss. |
| MonthlyBudget | Read the monthly budget. |
| PaymentMethodsStore | Returns stores using the specified payment method. |
| ProductImages | Returns a list of urls of product images. |
| ProductOrderPoints | Returns a list of product order points. |
| ProductsOrderSettings | Returns product order settings of the specified product. |
| ProductsPricesChanges | Returns price changes of the specified product. |
| ProductStores | Returns a list of stores of the specified product. |
| PurchaseOrdersProducts | Returns a list of products for a specified purchase order. |
| PurchaseOrdersProductsDeliveryStores | Returns a list of delivery stores for a specified purchase order. |
| PurchaseOrdersStores | Returns a list of stores for a specified purchase order. |
| ReceiptProvisoes | Returns a list of receipt provisoes. |
| ReceivingDetails | Returns receiving details for a specified receiving transaction. |
| ReduceTaxRates | Returns a list or reduce tax rates. |
| RoleAlertFunctionControls | Returns a list of alert function controls for a specified role. |
| RoleFunctionControls | Returns a list of function controls for a specified role. |
| RoleInventoryFunctionControls | Returns a list of inventory function controls for a specified role. |
| ShipmentDetails | Generated schema file. |
| ShippingDetails | Generated schema file. |
| Staffs | Returns a list of staffs. |
| StaffStores | Generated schema file. |
| StockChanges | Returns a list of stock changes. |
| Stocktaking | Returns a list of stocktaking transactions. |
| StocktakingCategories | Returns a list of stocktaking categories. |
| StocktakingDetails | Generated schema file. |
| StocktakingProducts | Generated schema file. |
| StorageDetails | Returns a list of storage. |
| StorePaymentMethods | Generated schema file. |
| StorePointConditions | Generated schema file. |
| StoreProductPrices | Generated schema file. |
| StoreProducts | Generated schema file. |
| StoreReceiptPrintInfo | Generated schema file. |
| TransactionCouponItems | Generated schema file. |
| TransactionCoupons | Generated schema file. |
| TransactionDepositOthers | Generated schema file. |
| TransactionDetails | Generated schema file. |
| TransactionDetailsDiscounts | Returns a list of discounts for a specified transaction details. |
| TransactionDetailsProductAttributes | Returns a list of product attributes for a specified transaction details. |
| TransactionDiscounts | Returns a list of discounts for a specified transaction. |
| TransactionLayawayDetails | Generated schema file. |
| TransactionLayawayPickUps | Generated schema file. |
| TransactionProductSets | Returns a list of coupon transactions |
Returns a list of adjustments.
| Name | Type | References | Description |
| StoreId | Integer | ||
| AdjustmentDateTime | Datetime | ||
| CalculateBalance | Decimal | ||
| CashAdjustmentCarryOver | Decimal | ||
| CashAdjustmentDifference | Decimal | ||
| CashAdjustmentFiftyYen | Integer | ||
| CashAdjustmentFiveHundredYen | Integer | ||
| CashAdjustmentFiveThousandYen | Integer | ||
| CashAdjustmentFiveYen | Integer | ||
| CashAdjustmentOneHundredYen | Integer | ||
| CashAdjustmentOneThousandYen | Integer | ||
| CashAdjustmentOneYen | Integer | ||
| CashAdjustmentRealBalance | Integer | ||
| CashAdjustmentSaving | Integer | ||
| CashAdjustmentTenThousandYen | Integer | ||
| CashAdjustmentTenYen | Integer | ||
| CashAdjustmentTwoThousandYen | Integer | ||
| CashSales | Decimal | ||
| ChildTerminals | String | ||
| CreditSales | Decimal | ||
| Deposit | Integer | ||
| NonSalesCashTotal | Decimal | ||
| NonSalesCreditTotal | Decimal | ||
| NonSalesOtherTotal | Decimal | ||
| OtherSalesList | String | ||
| PartPayment | Decimal | ||
| PartPaymentCancel | Decimal | ||
| PartPaymentCash | Decimal | ||
| PartPaymentCashCancel | Decimal | ||
| PartPaymentCredit | Decimal | ||
| PartPaymentCreditCancel | Decimal | ||
| Payment | Decimal | ||
| PreparationCash | Decimal | ||
| Receipt | Decimal | ||
| ReceivedDeposit | Decimal | ||
| ReceivedDepositCash | Decimal | ||
| ReceivedDepositCredit | Decimal | ||
| ReturnDeposit | Decimal | ||
| TerminalId | Integer | ||
| Tip | Decimal | ||
| TipCash | Decimal | ||
| TipCredit | Decimal | ||
| TransactionCount | Integer | ||
| AdjustmentDate | Date |
Returns a list of CAT/CCT card comanies.
| Name | Type | References | Description |
| CatCardCompanyCode | String | ||
| CatCardCompanyName | String | ||
| DisplayFlag | String | ||
| DisplaySequence | Integer | ||
| InsDateTime | Datetime | ||
| Kid | String | ||
| UpdDateTime | Datetime |
Returns a list of consumption tax rates.
| Name | Type | References | Description |
| ApplyStartDate | Date | ||
| TaxRate | Decimal | ||
| TaxRounding | String | ||
| TargetDate | Date |
Returns a list of customer required column settings.
| Name | Type | References | Description |
| ColumnName | String | ||
| DisplaySequence | Integer | ||
| InitialValue | String | ||
| InsDateTime | Datetime | ||
| UpdDateTime | Datetime | ||
| Value | String |
Returns daily summaries.
| Name | Type | References | Description |
| Amount | Integer | ||
| CalculateBalance | Integer | ||
| Carriage | Integer | ||
| CarryOver | Integer | ||
| CashDrawerId | Integer | ||
| CashSales | Integer | ||
| ChangeDifference | Integer | ||
| Comment | String | ||
| Commission | Integer | ||
| CostTotal | Decimal | ||
| CreditSales | Integer | ||
| Deposit | Integer | ||
| Difference | Integer | ||
| Discount | Integer | ||
| FiftyYen | Integer | ||
| FiveHundredYen | Integer | ||
| FiveThousandYen | Integer | ||
| FiveYen | Integer | ||
| GrossMargin | Integer | ||
| InsDateTime | Datetime | ||
| InTaxSalesTotal | Integer | ||
| NonSalesCashTotal | Integer | ||
| NonSalesCreditTotal | Integer | ||
| NonSalesOtherTotal | Integer | ||
| NonSalesTargetTaxFreeTotal | Integer | ||
| NonSalesTargetTotal | Integer | ||
| NonSalesTaxFreeTotal | Integer | ||
| NonTaxSalesTotal | Integer | ||
| OneHundredYen | Integer | ||
| OneThousandYen | Integer | ||
| OneYen | Integer | ||
| OtherSalesList | String | ||
| OutTaxSalesTotal | Integer | ||
| PartPayment | Integer | ||
| PartPaymentCancel | Integer | ||
| PartPaymentCash | Integer | ||
| PartPaymentCashCancel | Integer | ||
| PartPaymentCredit | Integer | ||
| PartPaymentCreditCancel | Integer | ||
| Payment | Integer | ||
| PointDiscount | Integer | ||
| PreparationCash | Integer | ||
| RealBalance | Integer | ||
| Receipt | Integer | ||
| ReceivedDepositCash | Integer | ||
| ReceivedDepositCashTotal | Integer | ||
| ReceivedDepositCreditTotal | Integer | ||
| ReturnAmount | Integer | ||
| ReturnDeposit | Integer | ||
| SalesTotal | Integer | ||
| SalesTotalNonSalesTargetDivision | String | ||
| Saving | Integer | ||
| Status | String | ||
| StoreId | Integer | ||
| SumDate | Date | ||
| TaxDetailList | String | ||
| TaxExclude | Integer | ||
| TaxExcludeReceive | Integer | ||
| TaxFreeTotal | Integer | ||
| TaxInclude | Integer | ||
| TaxTotal | Integer | ||
| TenThousandYen | Integer | ||
| TenYen | Integer | ||
| Total | Integer | ||
| TotalExcludeTax | Integer | ||
| TotalExcludTax | Integer | ||
| TotalTaxFreeDivision | String | ||
| TransactionCount | Integer | ||
| TwoThousandYen | Integer | ||
| UpdDateTime | Datetime |
Returns a list of discount divisions.
| Name | Type | References | Description |
| AwardType | String | ||
| DiscountDivision | String | ||
| DiscountDivisionName | String | ||
| DisplayFlag | String | ||
| DisplaySequence | Integer | ||
| InsDateTime | Datetime | ||
| UpdDateTime | Datetime |
Returns details of the specified loss.
| Name | Type | References | Description |
| LossId [KEY] | Integer |
Losses.LossId | |
| LossDetailId [KEY] | Integer | ||
| ProductId | Long | ||
| TaxRate | Decimal | ||
| Cost | Decimal | ||
| Quantity | Integer | ||
| RfidTags | String | ||
| InsDateTime | Datetime | ||
| UpdDateTime | Datetime |
Read the monthly budget.
| Name | Type | References | Description |
| StoreId [KEY] | Integer |
Stores.StoreId | |
| InsDateTime | Datetime | ||
| SalesTargetMonthly | Decimal | ||
| UpdDateTime | Datetime | ||
| Ym | String |
Returns stores using the specified payment method.
| Name | Type | References | Description |
| PaymentMethodId [KEY] | Integer |
PaymentMethods.PaymentMethodId | |
| StoreId [KEY] | Integer |
Stores.StoreId | |
| AssignDivision | String |
Returns a list of urls of product images.
| Name | Type | References | Description |
| ProductId | Long | ||
| Url | String |
Returns product order settings of the specified product.
| Name | Type | References | Description |
| ProductId [KEY] | Long |
Products.ProductId | |
| ContinuationDivision | String | ||
| OrderStatusDivision | String | ||
| OrderNoReasonDivision | String | ||
| OrderLimitAmount | Integer | ||
| OrderSupplierEditable | String | ||
| PbDivision | String | ||
| DisplayFlag | String | ||
| OrderUnit | String | ||
| Stores | String |
Returns price changes of the specified product.
| Name | Type | References | Description |
| ProductId [KEY] | Long |
Products.ProductId | |
| Id | Integer | ||
| AfterPrice | Integer | ||
| AfterTaxDivision | String | ||
| BeforePrice | Integer | ||
| BeforeTaxDivision | String | ||
| PriceDivision | String | ||
| ProcDetailDivision | String | ||
| ProcDivision | String | ||
| UpdDateTime | Datetime |
Returns a list of stores of the specified product.
| Name | Type | References | Description |
| ProductId [KEY] | Long |
Products.ProductId | |
| StoreId [KEY] | Integer | ||
| AssignDivision | String |
Returns a list of products for a specified purchase order.
| Name | Type | References | Description |
| StorageInfoId [KEY] | Integer | ||
| Cost | Decimal | ||
| InsDateTime | Datetime | ||
| ProductId | Long | ||
| Quantity | Integer | ||
| StorageInfoProductId | Integer | ||
| TaxDivision | String | ||
| TaxRate | Decimal | ||
| UpdDateTime | Datetime | ||
| DeliveryStores | String |
Returns a list of delivery stores for a specified purchase order.
| Name | Type | References | Description |
| PurchaseOrderId [KEY] | Integer | ||
| StoreId | Integer | ||
| StorageInfoDeliveryProductId | Integer | ||
| Quantity | Integer |
Returns a list of stores for a specified purchase order.
| Name | Type | References | Description |
| StorageInfoId [KEY] | Integer | ||
| InsDateTime | Datetime | ||
| StorageExpectedDateFrom | Date | ||
| StorageExpectedDateTo | Date | ||
| StorageInfoDeliveryId | Integer | ||
| StorageStoreId | Integer | ||
| UpdDateTime | Datetime |
Returns a list of receipt provisoes.
| Name | Type | References | Description |
| DisplayFlag | String | ||
| DisplaySequence | Integer | ||
| InitialValueFlag | String | ||
| InsDateTime | Datetime | ||
| ReceiptProvisoCode | String | ||
| ReceiptProvisoName | String | ||
| UpdDateTime | Datetime |
Returns receiving details for a specified receiving transaction.
| Name | Type | References | Description |
| ReceivingId | Integer |
Receiving.ReceivingId | |
| InsDateTime | Datetime | ||
| InspectionDate | Date | ||
| InspectionQuantity | Integer | ||
| ProductId | Long | ||
| ReceivingDetailId | Integer | ||
| RfidTags | String | ||
| ScheduledQuantity | Integer | ||
| Status | String | ||
| StockoutQuantity | Integer | ||
| StockoutReason | String | ||
| UpdDateTime | Datetime |
Returns a list or reduce tax rates.
| Name | Type | References | Description |
| AdvancedCondition | String | ||
| Condition | String | ||
| Division | String | ||
| InsDateTime | Datetime | ||
| Name | String | ||
| Rate | Decimal | ||
| ReduceTaxId | Integer | ||
| TermEnd | Date | ||
| TermStart | Date | ||
| UpdDateTime | Datetime | ||
| TargetDate | Date |
Returns a list of alert function controls for a specified role.
| Name | Type | References | Description |
| RoleId [KEY] | Integer | ||
| AlertType | String | ||
| ControlDivision | String |
Returns a list of function controls for a specified role.
| Name | Type | References | Description |
| RoleId [KEY] | Integer | ||
| FunctionId | Integer | ||
| ControlDivision | String |
Returns a list of inventory function controls for a specified role.
| Name | Type | References | Description |
| RoleId [KEY] | Integer | ||
| FunctionId | Integer | ||
| ControlDivision | String |
Generated schema file.
| Name | Type | References | Description |
| ShipmentId | Integer |
Shipments.ShipmentId | |
| Cost | Decimal | ||
| InsDateTime | Datetime | ||
| Memo | String | ||
| Price | Integer | ||
| ProductId | Long | ||
| Quantity | Integer | ||
| RfidTags | String | ||
| ShipmentDetailId | Integer | ||
| TaxRate | Decimal | ||
| UpdDateTime | Datetime |
Generated schema file.
| Name | Type | References | Description |
| ShippingId | Integer |
Shipping.ShippingId | |
| Cost | Decimal | ||
| InsDateTime | Datetime | ||
| Price | Integer | ||
| ProductId | Long | ||
| Quantity | Integer | ||
| RequestQuantity | Integer | ||
| RfidTags | String | ||
| ShippingDetailId | Integer | ||
| Status | String | ||
| UpdDateTime | Datetime |
Returns a list of staffs.
| Name | Type | References | Description |
| StaffId [KEY] | Integer | ||
| DisplayFlag | String | ||
| DisplaySequence | Integer | ||
| String | |||
| InsDateTime | Datetime | ||
| LoginIpAddress | String | ||
| LoginStaffFlag | String | ||
| Rank | String | ||
| RoleId | Integer | ||
| StaffCode | String | ||
| StaffName | String | ||
| StaffNameKana | String | ||
| UpdDateTime | Datetime | ||
| Stores | String | ||
| UserId | String |
Returns a list of stock changes.
| Name | Type | References | Description |
| ProductId [KEY] | Long | ||
| StoreId [KEY] | Integer | ||
| Amount | Integer | ||
| Cost | Decimal | ||
| FromStoreId | Integer | ||
| Id | Integer | ||
| LayawayStockAmount | Integer | ||
| Memo | String | ||
| Price | Integer | ||
| StaffId | Integer | ||
| StaffName | String | ||
| StockAmount | Integer | ||
| StockDivision | String | ||
| TargetDateTime | Datetime | ||
| TaxDivision | String | ||
| ToStoreId | Integer | ||
| UpdDateTime | Datetime |
Returns a list of stocktaking transactions.
| Name | Type | References | Description |
| StocktakingInfoId | Integer | ||
| AdjustmentDateTime | Datetime | ||
| AutoFollowingFlag | String | ||
| DivisionUnit | String | ||
| InsDateTime | Datetime | ||
| LayawayStockIncludeFlag | String | ||
| Status | String | ||
| StockCountDivision | String | ||
| StocktakingCompleteDateTime | Datetime | ||
| StocktakingInputCompleteDate | String | ||
| StoreId | Integer | ||
| TargetDate | Date | ||
| UpdDateTime | Datetime |
Returns a list of stocktaking categories.
| Name | Type | References | Description |
| StocktakingInfoId [KEY] | Integer |
Stocktaking.StocktakingInfoId | |
| CategoryId | Integer |
Generated schema file.
| Name | Type | References | Description |
| StocktakingInfoId [KEY] | Integer |
Stocktaking.StocktakingInfoId | |
| CategoryId | Integer | ||
| LayawayMoney | Integer | ||
| LayawayQuantity | Integer | ||
| ProductId | Long |
Products.ProductId | |
| StockMoney | Integer | ||
| StockQuantity | Integer | ||
| StoreId | Integer |
Stores.StoreId | |
| TransportationMoney | Integer | ||
| TransportationQuantity | Integer | ||
| BaseDate | Date |
Generated schema file.
| Name | Type | References | Description |
| CategoryId | Integer | ||
| Cost | Decimal | ||
| InputStocktakingQuantity | Integer | ||
| InsDateTime | Datetime | ||
| LayawayStockQuantity | Integer | ||
| Memo | String | ||
| ProductId | Long | ||
| QuantityModifiedDatetime | Datetime | ||
| RfidTags | String | ||
| StockQuantityBeforeAdjustment | Integer | ||
| StocktakingQuantity | Integer | ||
| TransportationStockQuantity | Integer | ||
| UpdDateTime | Datetime | ||
| StocktakingInfoId | Integer |
Returns a list of storage.
| Name | Type | References | Description |
| StorageId | Integer |
Storage.StorageId | |
| CompulsoryCompleteFlag | String | ||
| Cost | Decimal | ||
| DateMemo | String | ||
| InsDateTime | Datetime | ||
| InspectionDate | Date | ||
| InspectionQuantity | Integer | ||
| NumberMemo | String | ||
| ProductId | Long |
Products.ProductId | |
| RfidTags | String | ||
| ScheduledQuantity | Integer | ||
| Status | String | ||
| StockoutQuantity | Integer | ||
| StockoutReason | String | ||
| StorageDetailId | Integer | ||
| StorageInfoId | Integer | ||
| TaxRate | Decimal | ||
| UpdDateTime | Datetime |
Generated schema file.
| Name | Type | References | Description |
| ChangeFlag | String | ||
| DisplayFlag | String | ||
| DisplaySequence | Integer | ||
| InsDateTime | Datetime | ||
| PaymentMethodCode | String | ||
| PaymentMethodGroupId | Integer | ||
| PaymentMethodId | String | ||
| PaymentMethodName | String | ||
| PointGivingUnit | Decimal | ||
| PointGivingUnitPrice | Integer | ||
| SecuritiesFlag | String | ||
| UnitPrice | Integer | ||
| UpdDateTime | Datetime | ||
| StoreId | Integer |
Stores.StoreId |
Generated schema file.
| Name | Type | References | Description |
| StoreId | Integer |
Stores.StoreId | |
| PointUseDivision | String | ||
| SpendRate | String | ||
| PointGivingUnitPrice | Integer | ||
| PointGivingUnit | Decimal | ||
| PointGivingDivision | String | ||
| PointUseUnit | String | ||
| PointSpendDivision | String | ||
| PointSpendLimitDivision | String | ||
| ExpireDivision | String | ||
| ExpireLimit | String | ||
| MileageDivision | String | ||
| MileageLimit | String |
Generated schema file.
| Name | Type | References | Description |
| AppStartDateTime | Datetime | ||
| Attribute | String | ||
| CalcDiscount | String | ||
| CatchCopy | String | ||
| CategoryId | Integer | ||
| Color | String | ||
| Cost | Decimal | ||
| CustomerPrice | Integer | ||
| Description | String | ||
| DisplayFlag | String | ||
| DisplaySequence | Integer | ||
| Division | String | ||
| GroupCode | String | ||
| InsDateTime | Datetime | ||
| OrderPoint | Integer | ||
| PointNotApplicable | String | ||
| Price | Integer | ||
| PrintReceiptProductName | String | ||
| ProductCode | String | ||
| ProductId | Long | ||
| ProductKana | String | ||
| ProductName | String | ||
| ProductOptionGroupId | Integer | ||
| ProductPriceDivision | String | ||
| PurchaseCost | Decimal | ||
| ReduceTaxCustomerPrice | Integer | ||
| ReduceTaxId | Integer | ||
| ReduceTaxPrice | Integer | ||
| SalesDivision | String | ||
| Size | String | ||
| StaffDiscountRate | Integer | ||
| StockControlDivision | String | ||
| SupplierProductNo | String | ||
| Tag | String | ||
| TaxDivision | String | ||
| TaxFreeDivision | String | ||
| UpdDateTime | Datetime | ||
| Url | String | ||
| UseCategoryReduceTax | String | ||
| Stores | String | ||
| StoreId | Integer |
Stores.StoreId | |
| WithStores | String |
Generated schema file.
| Name | Type | References | Description |
| StoreId | Integer |
Stores.StoreId | |
| header | String | ||
| footer | String | ||
| receiptTaxOfficeStampComment | String | ||
| taxOfficeName | String | ||
| airPrintLogo | String | ||
| advertisementImage | String | ||
| giftReceiptImage | String | ||
| giftReceiptNote | String | ||
| discountReceiptHeader | String | ||
| discountReceiptFooter | String |
Generated schema file.
| Name | Type | References | Description |
| TransactionHeadId [KEY] | Integer | ||
| TransactionCouponDetailId | Integer | ||
| TransactionCouponId | Integer | ||
| TerminalTranCouponId | Integer | ||
| TransactionDetailId | Integer | ||
| CouponItemId | Integer |
Generated schema file.
| Name | Type | References | Description |
| TransactionHeadId [KEY] | Integer | ||
| TransactionCouponId | Integer | ||
| TerminalTranCouponId | Integer | ||
| CouponId | Integer | ||
| CouponName | String | ||
| CouponDivision | String | ||
| SerialNumber | String | ||
| AwardType | String | ||
| AwardValue | Integer | ||
| DiscountPrice | Integer |
Generated schema file.
| Name | Type | References | Description |
| TransactionHeadId | Integer | ||
| No | String | ||
| paymentMethodId | Integer | ||
| paymentMethodCode | String | ||
| paymentMethodName | String | ||
| depositOthers | String | ||
| paymentUnitPrice | Integer | ||
| paymentChangeFlag | String | ||
| paymentDivision | String | ||
| paymentSecuritiesFlag | String | ||
| denominationCode | String | ||
| denominationName | String | ||
| cardCompanyName | String | ||
| slipNumber | String | ||
| cancelSlipNumber | String | ||
| pointGivingUnitPrice | Integer | ||
| pointGivingUnit | Decimal |
Generated schema file.
| Name | Type | References | Description |
| TransactionHeadId | Integer |
Transactions.TransactionHeadId | |
| TransactionDetailId | Integer | ||
| ApplyBargainDiscountPrice | Integer | ||
| ApplyBargainValue | String | ||
| ApplyStaffDiscountPrice | Integer | ||
| ApplyStaffDiscountRate | Integer | ||
| BargainDiscountProportional | Integer | ||
| BargainDivision | String | ||
| BargainId | Integer | ||
| BargainName | String | ||
| BargainValue | Integer | ||
| CalcDiscount | String | ||
| CategoryId | Integer | ||
| CategoryName | String | ||
| Color | String | ||
| Cost | Decimal | ||
| CostSum | Decimal | ||
| DiscountCouponProportional | Integer | ||
| DiscountPointProportional | Integer | ||
| DiscountPriceProportional | Integer | ||
| DiscriminationNo | String | ||
| GroupCode | String | ||
| InventoryReservationDivision | String | ||
| Memo | String | ||
| ModifiedTaxRate | Decimal | ||
| ParentTransactionDetailId | Integer | ||
| PointNotApplicable | String | ||
| Price | Integer | ||
| PrintReceiptProductName | String | ||
| ProductBundleGroupId | Integer | ||
| ProductBundleProportional | Integer | ||
| ProductCode | String | ||
| ProductDivision | String | ||
| ProductId | Long |
Products.ProductId | |
| ProductName | String | ||
| ProductStaffDiscountRate | Integer | ||
| Quantity | Integer | ||
| ReduceTaxId | Integer | ||
| ReduceTaxMemberPrice | Integer | ||
| ReduceTaxName | String | ||
| ReduceTaxPrice | Integer | ||
| ReduceTaxRate | Decimal | ||
| RfidTags | String | ||
| RoundingPriceProportional | Integer | ||
| SalesDivision | String | ||
| SalesPrice | Integer | ||
| Size | String | ||
| StaffDiscountDivision | String | ||
| StaffDiscountProportional | Integer | ||
| StaffDiscountRate | Integer | ||
| StaffRank | String | ||
| StaffRankName | String | ||
| StandardTaxRate | String | ||
| TaxDivision | String | ||
| TaxExcludeProportional | Integer | ||
| TaxFree | String | ||
| TaxFreeCommodityPrice | Integer | ||
| TaxFreeDivision | String | ||
| TaxIncludeProportional | Integer | ||
| TaxRate | Decimal | ||
| TransactionDetailDivision | String | ||
| UnitDiscountDivision | String | ||
| UnitDiscountedSum | Integer | ||
| UnitDiscountPrice | Integer | ||
| UnitDiscountRate | Integer | ||
| UnitDiscountSum | Integer | ||
| UnitNonDiscountSum | Integer | ||
| Discounts | String | ||
| ProductAttributesunts | String | ||
| WithDiscounts | String | ||
| WithDetailProductAttributes | String |
Returns a list of discounts for a specified transaction details.
| Name | Type | References | Description |
| TransactionHeadId | Integer |
Transactions.TransactionHeadId | |
| TransactionDetailId | Integer |
TransactionDetails.TransactionDetailId | |
| TransactionDiscountDivision | String | ||
| DiscountDivision | String | ||
| DiscountDivisionName | String | ||
| AwardType | String | ||
| AwardValue | Integer | ||
| DiscountPrice | Integer |
Returns a list of product attributes for a specified transaction details.
| Name | Type | References | Description |
| TransactionHeadId | Integer |
Transactions.TransactionHeadId | |
| TransactionDetailId | Integer |
TransactionDetails.TransactionDetailId | |
| Code | String | ||
| Name | String |
Returns a list of discounts for a specified transaction.
| Name | Type | References | Description |
| TransactionHeadId | Integer |
Transactions.TransactionHeadId | |
| TransactionDetailId | Integer | ||
| TransactionDiscountDivision | String | ||
| DiscountDivision | String | ||
| DiscountDivisionName | String | ||
| AwardType | String | ||
| AwardValue | Integer | ||
| DiscountPrice | Integer |
Generated schema file.
| Name | Type | References | Description |
| TransactionHeadId | Integer |
TransactionLayaways.TransactionHeadId | |
| ApplyBargainDiscountPrice | Integer | ||
| ApplyBargainValue | Integer | ||
| ApplyStaffDiscountPrice | Integer | ||
| ApplyStaffDiscountRate | Integer | ||
| BargainDiscountProportional | Integer | ||
| BargainDivision | String | ||
| BargainId | Integer | ||
| BargainName | String | ||
| BargainValue | Integer | ||
| CalcDiscount | String | ||
| CategoryId | Integer | ||
| CategoryName | String | ||
| Color | String | ||
| Cost | Decimal | ||
| CostSum | Decimal | ||
| DiscountCouponProportional | Integer | ||
| DiscountPointProportional | Integer | ||
| DiscountPriceProportional | Integer | ||
| DiscriminationNo | String | ||
| GroupCode | String | ||
| InventoryReservationDivision | String | ||
| Memo | String | ||
| ModifiedTaxRate | Decimal | ||
| ParentTransactionDetailId | Integer | ||
| PointNotApplicable | String | ||
| Price | Integer | ||
| PrintReceiptProductName | String | ||
| ProductBundleGroupId | Integer | ||
| ProductBundleProportional | Integer | ||
| ProductCode | String | ||
| ProductDivision | String | ||
| ProductId | Long | ||
| ProductName | String | ||
| ProductStaffDiscountRate | Integer | ||
| Quantity | Integer | ||
| ReduceTaxId | Integer | ||
| ReduceTaxMemberPrice | Integer | ||
| ReduceTaxName | String | ||
| ReduceTaxPrice | Integer | ||
| ReduceTaxRate | Decimal | ||
| RfidTags | String | ||
| RoundingPriceProportional | Integer | ||
| SalesDivision | String | ||
| SalesPrice | Integer | ||
| Size | String | ||
| StaffDiscountDivision | String | ||
| StaffDiscountProportional | Integer | ||
| StaffDiscountRate | Integer | ||
| StaffRank | String | ||
| StaffRankName | String | ||
| StandardTaxRate | Decimal | ||
| TaxDivision | String | ||
| TaxExcludeProportional | Integer | ||
| TaxFree | String | ||
| TaxFreeCommodityPrice | Integer | ||
| TaxFreeDivision | String | ||
| TaxIncludeProportional | Integer | ||
| TaxRate | Decimal | ||
| TransactionDetailDivision | String | ||
| TransactionDetailId | Integer | ||
| UnitDiscountDivision | String | ||
| UnitDiscountedSum | Integer | ||
| UnitDiscountPrice | Integer | ||
| UnitDiscountRate | Integer | ||
| UnitDiscountSum | Integer | ||
| UnitNonDiscountSum | Integer | ||
| WithDiscounts | String | ||
| WithDetailProductAttributes | String |
Generated schema file.
| Name | Type | References | Description |
| TransactionHeadId | Integer |
TransactionLayaways.TransactionHeadId | |
| LayawayServerTransactionHeadId | Integer | ||
| ReceivedDepositCash | Integer | ||
| ReceivedDepositCredit | Integer |
Returns a list of coupon transactions
| Name | Type | References | Description |
| TransactionHeadId | Integer |
Transactions.TransactionHeadId | |
| TransactionProductSetId | Integer | ||
| TransactionDetailId | Integer | ||
| ProductSetId | Integer | ||
| ProductSetCode | String | ||
| ProductSetName | String | ||
| ProductSetPrice | Integer | ||
| ProductSetCategoryId | String | ||
| ProductSetCategoryName | String | ||
| CustomerId | Long | ||
| PurchaseDateTime | Datetime | ||
| ExpireDate | Date | ||
| ConsumeDateTime | Datetime | ||
| Status | String | ||
| OptionConsumeLimit | String |
Stored procedures are function-like interfaces that extend the functionality of the Cloud beyond simple SELECT/INSERT/UPDATE/DELETE operations with Smaregi.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Smaregi, along with an indication of whether the procedure succeeded or failed.
| Name | Description |
| ApproveShipping | Approve a shipping. |
| CompleteShippingModificationRequest | Complete a shipping modification request. |
| DeleteProductIconImage | Delete a product icon image. |
| DeleteProductImage | Delete a product image. |
| DisposeTransaction | Dispose a transaction. |
| DisposeTransactionLayaway | Dispose a transaction layaway. |
| ExecuteAdjustment | Execute adjustment. |
| ExecuteDailySummary | Execute daily summary. |
Approve a shipping.
| Name | Type | Required | Description |
| ShippingId | Integer | True | |
| ApprovalStatus | String | True | |
| ReceivingExpectedDateFrom | Date | False | |
| ReceivingExpectedDateTo | Date | False | |
| ShippingDate | Date | False | |
| Memo | String | False |
| Name | Type | Description |
| ProductId | Long | |
| ShippingId | Integer | |
| ReceivingStoreId | Integer | |
| ShippingStoreId | Integer | |
| ReceivingDesiredDate | Date | |
| ReceivingExpectedDateFrom | Date | |
| ReceivingExpectedDateTo | Date | |
| ShippingDate | Date | |
| StaffId | Integer | |
| RequestStaffId | Integer | |
| Memo | String | |
| IdentificationNo | String | |
| Status | String | |
| ApprovalStatus | String | |
| ApprovalDateTime | Datetime | |
| ModificationRequestStatus | String | |
| ModificationRequestDateTime | Datetime | |
| ModificationRequestCheckedDateTime | Datetime | |
| InsDateTime | Datetime | |
| UpdDateTime | Datetime |
Complete a shipping modification request.
| Name | Type | Required | Description |
| ShippingId | Integer | True | |
| Memo | String | False |
Delete a product icon image.
| Name | Type | Required | Description |
| ProductId | Long | True |
Delete a product image.
| Name | Type | Required | Description |
| ProductId | Long | True | ProductId |
Dispose a transaction.
| Name | Type | Required | Description |
| TransactionHeadId | Integer | True | |
| TerminalTranDateTime | Datetime | False | |
| DipositOthers | String | False |
| Name | Type | Description |
| TransactionHeadId | Integer | |
| TransactionDateTime | Datetime | |
| TransactionHeadDivision | String | |
| CancelDivision | String | |
| UnitNonDiscountsubtotal | Integer | |
| UnitDiscountsubtotal | Integer | |
| UnitStaffDiscountsubtotal | Integer | |
| UnitBargainDiscountsubtotal | Integer | |
| Subtotal | Integer | |
| SubtotalForDiscount | Integer | |
| SubtotalDiscountPrice | Integer | |
| SubtotalDiscountRate | Integer | |
| SubtotalDiscountDivision | Integer | |
| PointDiscount | Integer | |
| CouponDiscount | Integer | |
| Total | Integer | |
| TaxInclude | Integer | |
| TaxExclude | Integer | |
| RoundingDivision | String | |
| RoundingPrice | Integer | |
| CashTotal | Integer | |
| CreditTotal | Integer | |
| Deposit | Integer | |
| DepositCash | Integer | |
| DepositCredit | Integer | |
| Change | Integer | |
| TipCash | Integer | |
| TipCredit | Integer | |
| Amount | Integer | |
| ReturnAmount | Integer | |
| CostTotal | Decimal | |
| SalesHeadDivision | String | |
| InTaxSalesTotal | Integer | |
| OutTaxSalesTotal | Integer | |
| NonTaxSalesTotal | Integer | |
| NonSalesTargetTotal | Integer | |
| NonSalesTargetInTaxTotal | Integer | |
| NonSalesTargetOutTaxTotal | Integer | |
| NonSalesTargetTaxFreeTotal | Integer | |
| NonSalesTargetCostTotal | Decimal | |
| NonSalesTargetAmount | Integer | |
| NonSalesTargetReturnAmount | Integer | |
| NewPoint | Integer | |
| SpendPoint | Integer | |
| Point | Integer | |
| TotalPoint | Integer | |
| CurrentMile | Integer | |
| EarnMile | Integer | |
| TotalMile | Integer | |
| AdjustmentMile | Integer | |
| AdjustmentMileDivision | String | |
| AdjustmentMileValue | Integer | |
| StoreId | Integer | |
| TerminalId | Integer | |
| CustomerId | Long | |
| TerminalTranId | Integer | |
| TerminalTranDateTime | Datetime | |
| SumDivision | String | |
| AdjustmentDateTime | Datetime | |
| SumDate | Date | |
| CustomerRank | String | |
| CustomerGroupId | Integer | |
| CustomerGroupId2 | Integer | |
| CustomerGroupId3 | Integer | |
| CustomerGroupId4 | Integer | |
| CustomerGroupId5 | Integer | |
| StaffId | Integer | |
| StaffName | String | |
| CreditDivision | String | |
| PaymentCount | String | |
| SlipNumber | String | |
| CancelSlipNumber | String | |
| AuthNumber | String | |
| AuthDate | Date | |
| CardCompany | String | |
| Denomination | String | |
| Memo | String | |
| ReceiptMemo | String | |
| Carriage | Integer | |
| Commission | Integer | |
| GuestNumbers | Integer | |
| GuestNumbersMale | Integer | |
| GuestNumbersFemale | Integer | |
| GuestNumbersUnknown | Integer | |
| EnterDateTime | Datetime | |
| TaxFreeSalesDivision | String | |
| NetTaxFreeGeneralTaxInclude | Integerg | |
| NetTaxFreeGeneralTaxExclude | Integerg | |
| NetTaxFreeConsumableTaxInclude | Integerg | |
| NetTaxFreeConsumableTaxExclude | Integerg | |
| Tags | String | |
| PointGivingDivision | String | |
| PointGivingUnitPrice | Integer | |
| PointGivingUnit | Decimal | |
| PointSpendDivision | String | |
| MileageDivision | String | |
| MileageLabel | String | |
| CustomerPinCode | String | |
| ReturnSales | String | |
| DisposeDivision | String | |
| DisposeServerTransactionHeadId | Integer | |
| CancelDateTime | Datetime | |
| SellDivision | String | |
| TaxRate | Decimal | |
| TaxRounding | String | |
| DiscountRoundingDivision | String | |
| TransactionUuid | String | |
| ExchangeTicketNo | String | |
| GiftReceiptValidDays | Integer | |
| UpdDateTime | Datetime | |
| Details | String | |
| DepositOthers | String | |
| Coupons | String | |
| CouponItems | String | |
| RecordedStaff | String |
Dispose a transaction layaway.
| Name | Type | Required | Description |
| TransactionHeadId | Integer | True | |
| TerminalTranDateTime | Datetime | False |
| Name | Type | Description |
| TransactionHeadId | Integer | |
| TransactionDateTime | Datetime | |
| TransactionHeadDivision | String | |
| CancelDivision | String | |
| UnitNonDiscountsubtotal | Integer | |
| UnitDiscountsubtotal | Integer | |
| UnitStaffDiscountsubtotal | Integer | |
| UnitBargainDiscountsubtotal | Integer | |
| Subtotal | Integer | |
| SubtotalForDiscount | Integer | |
| SubtotalDiscountPrice | Integer | |
| SubtotalDiscountRate | Integer | |
| SubtotalDiscountDivision | String | |
| PointDiscount | Integer | |
| CouponDiscount | Integer | |
| Total | Integer | |
| TaxInclude | Integer | |
| TaxExclude | Integer | |
| RoundingDivision | String | |
| RoundingPrice | Integer | |
| CashTotal | Integer | |
| CreditTotal | Integer | |
| Deposit | Integer | |
| DepositCash | Integer | |
| DepositCredit | Integer | |
| Change | Integer | |
| TipCash | Integer | |
| TipCredit | Integer | |
| Amount | Integer | |
| ReturnAmount | Integer | |
| CostTotal | Decimal | |
| SalesHeadDivision | String | |
| InTaxSalesTotal | Integer | |
| OutTaxSalesTotal | Integer | |
| NonTaxSalesTotal | Integer | |
| NonSalesTargetTotal | Integer | |
| NonSalesTargetInTaxTotal | Integer | |
| NonSalesTargetOutTaxTotal | Integer | |
| NonSalesTargetTaxFreeTotal | Integer | |
| NonSalesTargetCostTotal | Decimal | |
| NonSalesTargetAmount | Integer | |
| NonSalesTargetReturnAmount | Integer | |
| NewPoint | Integer | |
| SpendPoint | Integer | |
| Point | Integer | |
| TotalPoint | Integer | |
| CurrentMile | Integer | |
| EarnMile | Integer | |
| TotalMile | Integer | |
| AdjustmentMile | Integer | |
| AdjustmentMileDivision | String | |
| AdjustmentMileValue | Integer | |
| StoreId | Integer | |
| TerminalId | Integer | |
| CustomerId | Long | |
| TerminalTranId | Integer | |
| TerminalTranDateTime | Datetime | |
| SumDivision | String | |
| AdjustmentDateTime | Datetime | |
| SumDate | Date | |
| CustomerRank | String | |
| CustomerGroupId | Integer | |
| CustomerGroupId2 | Integer | |
| CustomerGroupId3 | Integer | |
| CustomerGroupId4 | Integer | |
| CustomerGroupId5 | Integer | |
| StaffId | Integer | |
| StaffName | String | |
| CreditDivision | String | |
| PaymentCount | String | |
| SlipNumber | String | |
| CancelSlipNumber | String | |
| AuthNumber | String | |
| AuthDate | Date | |
| CardCompany | String | |
| Denomination | String | |
| Memo | String | |
| ReceiptMemo | String | |
| Carriage | Integer | |
| Commission | Integer | |
| GuestNumbers | Integer | |
| GuestNumbersMale | Integer | |
| GuestNumbersFemale | Integer | |
| GuestNumbersUnknown | Integer | |
| EnterDateTime | Datetime | |
| TaxFreeSalesDivision | String | |
| NetTaxFreeGeneralTaxInclude | Integer | |
| NetTaxFreeGeneralTaxExclude | Integer | |
| NetTaxFreeConsumableTaxInclude | Integer | |
| NetTaxFreeConsumableTaxExclude | Integer | |
| Tags | String | |
| PointGivingDivision | String | |
| PointGivingUnitPrice | Integer | |
| PointGivingUnit | Decimal | |
| PointSpendDivision | String | |
| MileageDivision | String | |
| MileageLabel | String | |
| CustomerPinCode | String | |
| ReturnSales | String | |
| DisposeDivision | String | |
| DisposeServerTransactionHeadId | Integer | |
| CancelDateTime | Datetime | |
| SellDivision | String | |
| TaxRate | Decimal | |
| TaxRounding | String | |
| DiscountRoundingDivision | String | |
| TransactionUuid | String | |
| ExchangeTicketNo | String | |
| GiftReceiptValidDays | Integer | |
| UpdDateTime | Datetime | |
| Details | String | |
| Layaway | String |
Execute adjustment.
| Name | Type | Required | Description |
| StoreId | Integer | True | |
| TerminalId | Integer | False | |
| UUId | String | False | |
| CashAdjustment | String | False |
| Name | Type | Description |
| AdjustmentDateTime | Datetime | |
| StoreId | Integer | |
| TerminalId | Integer |
Execute daily summary.
| Name | Type | Required | Description |
| SumDate | Date | True | |
| StoreId | Integer | True | |
| CashInfo | String | False |
| Name | Type | Description |
| SumDate | Date | |
| StoreId | Integer | |
| CashDrawerId | Integer | |
| TerminalIdList | String |
You can query the system tables described in this section to access schema information, information on data source functionality, and batch operation statistics.
The following tables return database metadata for Smaregi:
The following tables return information about how to connect to and query the data source:
The following table returns query statistics for data modification queries:
Lists the available databases.
The following query retrieves all databases determined by the connection string:
SELECT * FROM sys_catalogs
| Name | Type | Description |
| CatalogName | String | The database name. |
Lists the available schemas.
The following query retrieves all available schemas:
SELECT * FROM sys_schemas
| Name | Type | Description |
| CatalogName | String | The database name. |
| SchemaName | String | The schema name. |
Lists the available tables.
The following query retrieves the available tables and views:
SELECT * FROM sys_tables
| Name | Type | Description |
| CatalogName | String | The database containing the table or view. |
| SchemaName | String | The schema containing the table or view. |
| TableName | String | The name of the table or view. |
| TableType | String | The table type (table or view). |
| Description | String | A description of the table or view. |
| IsUpdateable | Boolean | Whether the table can be updated. |
Describes the columns of the available tables and views.
The following query returns the columns and data types for the Products table:
SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Products'
| Name | Type | Description |
| CatalogName | String | The name of the database containing the table or view. |
| SchemaName | String | The schema containing the table or view. |
| TableName | String | The name of the table or view containing the column. |
| ColumnName | String | The column name. |
| DataTypeName | String | The data type name. |
| DataType | Int32 | An integer indicating the data type. This value is determined at run time based on the environment. |
| Length | Int32 | The storage size of the column. |
| DisplaySize | Int32 | The designated column's normal maximum width in characters. |
| NumericPrecision | Int32 | The maximum number of digits in numeric data. The column length in characters for character and date-time data. |
| NumericScale | Int32 | The column scale or number of digits to the right of the decimal point. |
| IsNullable | Boolean | Whether the column can contain null. |
| Description | String | A brief description of the column. |
| Ordinal | Int32 | The sequence number of the column. |
| IsAutoIncrement | String | Whether the column value is assigned in fixed increments. |
| IsGeneratedColumn | String | Whether the column is generated. |
| IsHidden | Boolean | Whether the column is hidden. |
| IsArray | Boolean | Whether the column is an array. |
| IsReadOnly | Boolean | Whether the column is read-only. |
| IsKey | Boolean | Indicates whether a field returned from sys_tablecolumns is the primary key of the table. |
| ColumnType | String | The role or classification of the column in the schema. Possible values include SYSTEM, LINKEDCOLUMN, NAVIGATIONKEY, REFERENCECOLUMN, and NAVIGATIONPARENTCOLUMN. |
Lists the available stored procedures.
The following query retrieves the available stored procedures:
SELECT * FROM sys_procedures
| Name | Type | Description |
| CatalogName | String | The database containing the stored procedure. |
| SchemaName | String | The schema containing the stored procedure. |
| ProcedureName | String | The name of the stored procedure. |
| Description | String | A description of the stored procedure. |
| ProcedureType | String | The type of the procedure, such as PROCEDURE or FUNCTION. |
Describes stored procedure parameters.
The following query returns information about all of the input parameters for the SelectEntries stored procedure:
SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'SelectEntries' AND Direction = 1 OR Direction = 2
To include result set columns in addition to the parameters, set the IncludeResultColumns pseudo column to True:
SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'SelectEntries' AND IncludeResultColumns='True'
| Name | Type | Description |
| CatalogName | String | The name of the database containing the stored procedure. |
| SchemaName | String | The name of the schema containing the stored procedure. |
| ProcedureName | String | The name of the stored procedure containing the parameter. |
| ColumnName | String | The name of the stored procedure parameter. |
| Direction | Int32 | An integer corresponding to the type of the parameter: input (1), input/output (2), or output(4). input/output type parameters can be both input and output parameters. |
| DataType | Int32 | An integer indicating the data type. This value is determined at run time based on the environment. |
| DataTypeName | String | The name of the data type. |
| NumericPrecision | Int32 | The maximum precision for numeric data. The column length in characters for character and date-time data. |
| Length | Int32 | The number of characters allowed for character data. The number of digits allowed for numeric data. |
| NumericScale | Int32 | The number of digits to the right of the decimal point in numeric data. |
| IsNullable | Boolean | Whether the parameter can contain null. |
| IsRequired | Boolean | Whether the parameter is required for execution of the procedure. |
| IsArray | Boolean | Whether the parameter is an array. |
| Description | String | The description of the parameter. |
| Ordinal | Int32 | The index of the parameter. |
| Values | String | The values you can set in this parameter are limited to those shown in this column. Possible values are comma-separated. |
| SupportsStreams | Boolean | Whether the parameter represents a file that you can pass as either a file path or a stream. |
| IsPath | Boolean | Whether the parameter is a target path for a schema creation operation. |
| Default | String | The value used for this parameter when no value is specified. |
| SpecificName | String | A label that, when multiple stored procedures have the same name, uniquely identifies each identically-named stored procedure. If there's only one procedure with a given name, its name is simply reflected here. |
| IsCDataProvided | Boolean | Whether the procedure is added/implemented by CData, as opposed to being a native Smaregi procedure. |
| Name | Type | Description |
| IncludeResultColumns | Boolean | Whether the output should include columns from the result set in addition to parameters. Defaults to False. |
Describes the primary and foreign keys.
The following query retrieves the primary key for the Products table:
SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Products'
| Name | Type | Description |
| CatalogName | String | The name of the database containing the key. |
| SchemaName | String | The name of the schema containing the key. |
| TableName | String | The name of the table containing the key. |
| ColumnName | String | The name of the key column. |
| IsKey | Boolean | Whether the column is a primary key in the table referenced in the TableName field. |
| IsForeignKey | Boolean | Whether the column is a foreign key referenced in the TableName field. |
| PrimaryKeyName | String | The name of the primary key. |
| ForeignKeyName | String | The name of the foreign key. |
| ReferencedCatalogName | String | The database containing the primary key. |
| ReferencedSchemaName | String | The schema containing the primary key. |
| ReferencedTableName | String | The table containing the primary key. |
| ReferencedColumnName | String | The column name of the primary key. |
Describes the foreign keys.
The following query retrieves all foreign keys which refer to other tables:
SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
| Name | Type | Description |
| CatalogName | String | The name of the database containing the key. |
| SchemaName | String | The name of the schema containing the key. |
| TableName | String | The name of the table containing the key. |
| ColumnName | String | The name of the key column. |
| PrimaryKeyName | String | The name of the primary key. |
| ForeignKeyName | String | The name of the foreign key. |
| ReferencedCatalogName | String | The database containing the primary key. |
| ReferencedSchemaName | String | The schema containing the primary key. |
| ReferencedTableName | String | The table containing the primary key. |
| ReferencedColumnName | String | The column name of the primary key. |
| ForeignKeyType | String | Designates whether the foreign key is an import (points to other tables) or export (referenced from other tables) key. |
Describes the primary keys.
The following query retrieves the primary keys from all tables and views:
SELECT * FROM sys_primarykeys
| Name | Type | Description |
| CatalogName | String | The name of the database containing the key. |
| SchemaName | String | The name of the schema containing the key. |
| TableName | String | The name of the table containing the key. |
| ColumnName | String | The name of the key column. |
| KeySeq | String | The sequence number of the primary key. |
| KeyName | String | The name of the primary key. |
Describes the available indexes. By filtering on indexes, you can write more selective queries with faster query response times.
The following query retrieves all indexes that are not primary keys:
SELECT * FROM sys_indexes WHERE IsPrimary='false'
| Name | Type | Description |
| CatalogName | String | The name of the database containing the index. |
| SchemaName | String | The name of the schema containing the index. |
| TableName | String | The name of the table containing the index. |
| IndexName | String | The index name. |
| ColumnName | String | The name of the column associated with the index. |
| IsUnique | Boolean | True if the index is unique. False otherwise. |
| IsPrimary | Boolean | True if the index is a primary key. False otherwise. |
| Type | Int16 | An integer value corresponding to the index type: statistic (0), clustered (1), hashed (2), or other (3). |
| SortOrder | String | The sort order: A for ascending or D for descending. |
| OrdinalPosition | Int16 | The sequence number of the column in the index. |
Returns information on the available connection properties and those set in the connection string.
The following query retrieves all connection properties that have been set in the connection string or set through a default value:
SELECT * FROM sys_connection_props WHERE Value <> ''
| Name | Type | Description |
| Name | String | The name of the connection property. |
| ShortDescription | String | A brief description. |
| Type | String | The data type of the connection property. |
| Default | String | The default value if one is not explicitly set. |
| Values | String | A comma-separated list of possible values. A validation error is thrown if another value is specified. |
| Value | String | The value you set or a preconfigured default. |
| Required | Boolean | Whether the property is required to connect. |
| Category | String | The category of the connection property. |
| IsSessionProperty | String | Whether the property is a session property, used to save information about the current connection. |
| Sensitivity | String | The sensitivity level of the property. This informs whether the property is obfuscated in logging and authentication forms. |
| PropertyName | String | A camel-cased truncated form of the connection property name. |
| Ordinal | Int32 | The index of the parameter. |
| CatOrdinal | Int32 | The index of the parameter category. |
| Hierarchy | String | Shows dependent properties associated that need to be set alongside this one. |
| Visible | Boolean | Informs whether the property is visible in the connection UI. |
| ETC | String | Various miscellaneous information about the property. |
Describes the SELECT query processing that the Cloud can offload to the data source.
See SQL Compliance for SQL syntax details.
Below is an example data set of SQL capabilities. Some aspects of SELECT functionality are returned in a comma-separated list if supported; otherwise, the column contains NO.
| Name | Description | Possible Values |
| AGGREGATE_FUNCTIONS | Supported aggregation functions. | AVG, COUNT, MAX, MIN, SUM, DISTINCT |
| COUNT | Whether COUNT function is supported. | YES, NO |
| IDENTIFIER_QUOTE_OPEN_CHAR | The opening character used to escape an identifier. | [ |
| IDENTIFIER_QUOTE_CLOSE_CHAR | The closing character used to escape an identifier. | ] |
| SUPPORTED_OPERATORS | A list of supported SQL operators. | =, >, <, >=, <=, <>, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, AND, OR |
| GROUP_BY | Whether GROUP BY is supported, and, if so, the degree of support. | NO, NO_RELATION, EQUALS_SELECT, SQL_GB_COLLATE |
| OJ_CAPABILITIES | The supported varieties of outer joins supported. | NO, LEFT, RIGHT, FULL, INNER, NOT_ORDERED, ALL_COMPARISON_OPS |
| OUTER_JOINS | Whether outer joins are supported. | YES, NO |
| SUBQUERIES | Whether subqueries are supported, and, if so, the degree of support. | NO, COMPARISON, EXISTS, IN, CORRELATED_SUBQUERIES, QUANTIFIED |
| STRING_FUNCTIONS | Supported string functions. | LENGTH, CHAR, LOCATE, REPLACE, SUBSTRING, RTRIM, LTRIM, RIGHT, LEFT, UCASE, SPACE, SOUNDEX, LCASE, CONCAT, ASCII, REPEAT, OCTET, BIT, POSITION, INSERT, TRIM, UPPER, REGEXP, LOWER, DIFFERENCE, CHARACTER, SUBSTR, STR, REVERSE, PLAN, UUIDTOSTR, TRANSLATE, TRAILING, TO, STUFF, STRTOUUID, STRING, SPLIT, SORTKEY, SIMILAR, REPLICATE, PATINDEX, LPAD, LEN, LEADING, KEY, INSTR, INSERTSTR, HTML, GRAPHICAL, CONVERT, COLLATION, CHARINDEX, BYTE |
| NUMERIC_FUNCTIONS | Supported numeric functions. | ABS, ACOS, ASIN, ATAN, ATAN2, CEILING, COS, COT, EXP, FLOOR, LOG, MOD, SIGN, SIN, SQRT, TAN, PI, RAND, DEGREES, LOG10, POWER, RADIANS, ROUND, TRUNCATE |
| TIMEDATE_FUNCTIONS | Supported date/time functions. | NOW, CURDATE, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, MONTH, QUARTER, WEEK, YEAR, CURTIME, HOUR, MINUTE, SECOND, TIMESTAMPADD, TIMESTAMPDIFF, DAYNAME, MONTHNAME, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, EXTRACT |
| REPLICATION_SKIP_TABLES | Indicates tables skipped during replication. | |
| REPLICATION_TIMECHECK_COLUMNS | A string array containing a list of columns which will be used to check for (in the given order) to use as a modified column during replication. | |
| IDENTIFIER_PATTERN | String value indicating what string is valid for an identifier. | |
| SUPPORT_TRANSACTION | Indicates if the provider supports transactions such as commit and rollback. | YES, NO |
| DIALECT | Indicates the SQL dialect to use. | |
| KEY_PROPERTIES | Indicates the properties which identify the uniform database. | |
| SUPPORTS_MULTIPLE_SCHEMAS | Indicates if multiple schemas may exist for the provider. | YES, NO |
| SUPPORTS_MULTIPLE_CATALOGS | Indicates if multiple catalogs may exist for the provider. | YES, NO |
| DATASYNCVERSION | The CData Data Sync version needed to access this driver. | Standard, Starter, Professional, Enterprise |
| DATASYNCCATEGORY | The CData Data Sync category of this driver. | Source, Destination, Cloud Destination |
| SUPPORTSENHANCEDSQL | Whether enhanced SQL functionality beyond what is offered by the API is supported. | TRUE, FALSE |
| SUPPORTS_BATCH_OPERATIONS | Whether batch operations are supported. | YES, NO |
| SQL_CAP | All supported SQL capabilities for this driver. | SELECT, INSERT, DELETE, UPDATE, TRANSACTIONS, ORDERBY, OAUTH, ASSIGNEDID, LIMIT, LIKE, BULKINSERT, COUNT, BULKDELETE, BULKUPDATE, GROUPBY, HAVING, AGGS, OFFSET, REPLICATE, COUNTDISTINCT, JOINS, DROP, CREATE, DISTINCT, INNERJOINS, SUBQUERIES, ALTER, MULTIPLESCHEMAS, GROUPBYNORELATION, OUTERJOINS, UNIONALL, UNION, UPSERT, GETDELETED, CROSSJOINS, GROUPBYCOLLATE, MULTIPLECATS, FULLOUTERJOIN, MERGE, JSONEXTRACT, BULKUPSERT, SUM, SUBQUERIESFULL, MIN, MAX, JOINSFULL, XMLEXTRACT, AVG, MULTISTATEMENTS, FOREIGNKEYS, CASE, LEFTJOINS, COMMAJOINS, WITH, LITERALS, RENAME, NESTEDTABLES, EXECUTE, BATCH, BASIC, INDEX |
| PREFERRED_CACHE_OPTIONS | A string value specifies the preferred cacheOptions. | |
| ENABLE_EF_ADVANCED_QUERY | Indicates if the driver directly supports advanced queries coming from Entity Framework. If not, queries will be handled client side. | YES, NO |
| PSEUDO_COLUMNS | A string array indicating the available pseudo columns. | |
| MERGE_ALWAYS | If the value is true, The Merge Mode is forcibly executed in Data Sync. | TRUE, FALSE |
| REPLICATION_MIN_DATE_QUERY | A select query to return the replicate start datetime. | |
| REPLICATION_MIN_FUNCTION | Allows a provider to specify the formula name to use for executing a server side min. | |
| REPLICATION_START_DATE | Allows a provider to specify a replicate startdate. | |
| REPLICATION_MAX_DATE_QUERY | A select query to return the replicate end datetime. | |
| REPLICATION_MAX_FUNCTION | Allows a provider to specify the formula name to use for executing a server side max. | |
| IGNORE_INTERVALS_ON_INITIAL_REPLICATE | A list of tables which will skip dividing the replicate into chunks on the initial replicate. | |
| CHECKCACHE_USE_PARENTID | Indicates whether the CheckCache statement should be done against the parent key column. | TRUE, FALSE |
| CREATE_SCHEMA_PROCEDURES | Indicates stored procedures that can be used for generating schema files. |
The following query retrieves the operators that can be used in the WHERE clause:
SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'
Note that individual tables may have different limitations or requirements on the WHERE clause; refer to the Data Model section for more information.
| Name | Type | Description |
| NAME | String | A component of SQL syntax, or a capability that can be processed on the server. |
| VALUE | String | Detail on the supported SQL or SQL syntax. |
Returns information about attempted modifications.
The following query retrieves the Ids of the modified rows in a batch operation:
SELECT * FROM sys_identity
| Name | Type | Description |
| Id | String | The database-generated Id returned from a data modification operation. |
| Batch | String | An identifier for the batch. 1 for a single operation. |
| Operation | String | The result of the operation in the batch: INSERTED, UPDATED, or DELETED. |
| Message | String | SUCCESS or an error message if the update in the batch failed. |
Describes the available system information.
The following query retrieves all columns:
SELECT * FROM sys_information
| Name | Type | Description |
| Product | String | The name of the product. |
| Version | String | The version number of the product. |
| Datasource | String | The name of the datasource the product connects to. |
| NodeId | String | The unique identifier of the machine where the product is installed. |
| HelpURL | String | The URL to the product's help documentation. |
| License | String | The license information for the product. (If this information is not available, the field may be left blank or marked as 'N/A'.) |
| Location | String | The file path location where the product's library is stored. |
| Environment | String | The version of the environment or rumtine the product is currently running under. |
| DataSyncVersion | String | The tier of CData Sync required to use this connector. |
| DataSyncCategory | String | The category of CData Sync functionality (e.g., Source, Destination). |
The connection string properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure in the connection string for this provider. Click the links for further details.
For more information on establishing a connection, see Establishing a Connection.
| Property | Description |
| AuthScheme | The scheme used for authenticating to SharePoint. |
| AccessToken | AccessToken of the currently authenticated user. |
| ContractId | ContractId of the currently authenticated user. |
| UseSandbox | A Boolean value indicating if you are using a Sandbox account. |
| Property | Description |
| OAuthClientId | Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication. |
| OAuthClientSecret | Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.). |
| Property | Description |
| SSLServerCert | Specifies the certificate to be accepted from the server when connecting using TLS/SSL. |
| Property | Description |
| Verbosity | Specifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5. |
| Property | Description |
| BrowsableSchemas | Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC . |
| Schema | The type of schema to use. |
| Property | Description |
| MaxRows | Specifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY. |
| MaxThreads | The Max Thread. |
| Pagesize | Specifies how many issues the driver will retrieve for each request. The max value for a Smaregi API is 1000. However, The max value for a DailySum table exepect. This table max value is 100. |
| PseudoColumns | Specifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'. |
| ThrowsKeyNotFound | Specifies whether or not throws an exception if there is no rows updated. |
| Timeout | Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. |
This section provides a complete list of the Authentication properties you can configure in the connection string for this provider.
| Property | Description |
| AuthScheme | The scheme used for authenticating to SharePoint. |
| AccessToken | AccessToken of the currently authenticated user. |
| ContractId | ContractId of the currently authenticated user. |
| UseSandbox | A Boolean value indicating if you are using a Sandbox account. |
The scheme used for authenticating to SharePoint.
string
"AccessToken"
The Cloud supports the following authentication mechanisms. See the Getting Started chapter for authentication guides.
AccessToken of the currently authenticated user.
string
""
AccessToken of the currently authenticated user.
ContractId of the currently authenticated user.
string
""
ContractId of the currently authenticated user.
A Boolean value indicating if you are using a Sandbox account.
bool
false
A Boolean value indicating if you are using a Sandbox account.
This section provides a complete list of the OAuth properties you can configure in the connection string for this provider.
| Property | Description |
| OAuthClientId | Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication. |
| OAuthClientSecret | Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.). |
Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.
string
""
This property is required in two cases:
(When the driver provides embedded OAuth credentials, this value may already be provided by the Cloud and thus not require manual entry.)
OAuthClientId is generally used alongside other OAuth-related properties such as OAuthClientSecret and OAuthSettingsLocation when configuring an authenticated connection.
OAuthClientId is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can usually find this value in your identity provider’s application registration settings. Look for a field labeled Client ID, Application ID, or Consumer Key.
While the client ID is not considered a confidential value like a client secret, it is still part of your application's identity and should be handled carefully. Avoid exposing it in public repositories or shared configuration files.
For more information on how this property is used when configuring a connection, see Establishing a Connection.
Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).
string
""
This property (sometimes called the application secret or consumer secret) is required when using a custom OAuth application in any flow that requires secure client authentication, such as web-based OAuth, service-based connections, or certificate-based authorization flows. It is not required when using an embedded OAuth application.
The client secret is used during the token exchange step of the OAuth flow, when the driver requests an access token from the authorization server. If this value is missing or incorrect, authentication fails with either an invalid_client or an unauthorized_client error.
OAuthClientSecret is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can obtain this value from your identity provider when registering the OAuth application.
Notes:
For more information on how this property is used when configuring a connection, see Establishing a Connection
This section provides a complete list of the SSL properties you can configure in the connection string for this provider.
| Property | Description |
| SSLServerCert | Specifies the certificate to be accepted from the server when connecting using TLS/SSL. |
Specifies the certificate to be accepted from the server when connecting using TLS/SSL.
string
""
If you are using a TLS/SSL connection, use this property to specify the TLS/SSL certificate to be accepted from the server. If you specify a value for this property, all other certificates that are not trusted by the machine are rejected.
This property can take the following forms:
| Description | Example |
| A full PEM Certificate (example shortened for brevity) | -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE----- |
| A path to a local file containing the certificate | C:\cert.cer |
| The public key (example shortened for brevity) | -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY----- |
| The MD5 Thumbprint (hex values can also be either space- or colon-separated) | ecadbdda5a1529c58a1e9e09828d70e4 |
| The SHA1 Thumbprint (hex values can also be either space- or colon-separated) | 34a929226ae0819f2ec14b4a3d904f801cbb150d |
Note: It is possible to use '*' to signify that all certificates should be accepted, but due to security concerns this is not recommended.
This section provides a complete list of the Logging properties you can configure in the connection string for this provider.
| Property | Description |
| Verbosity | Specifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5. |
Specifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.
string
"1"
This property defines the level of detail the Cloud includes in the log file. Higher verbosity levels increase the detail of the logged information, but may also result in larger log files and slower performance due to the additional data being captured.
The default verbosity level is 1, which is recommended for regular operation. Higher verbosity levels are primarily intended for debugging purposes. For more information on each level, refer to Logging.
When combined with the LogModules property, Verbosity can refine logging to specific categories of information.
This section provides a complete list of the Schema properties you can configure in the connection string for this provider.
| Property | Description |
| BrowsableSchemas | Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC . |
| Schema | The type of schema to use. |
Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
string
""
Listing all available database schemas can take extra time, thus degrading performance. Providing a list of schemas in the connection string saves time and improves performance.
The type of schema to use.
string
"Smaregi"
The schemas available are Smaregi and PlatformAPI.
This section provides a complete list of the Miscellaneous properties you can configure in the connection string for this provider.
| Property | Description |
| MaxRows | Specifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY. |
| MaxThreads | The Max Thread. |
| Pagesize | Specifies how many issues the driver will retrieve for each request. The max value for a Smaregi API is 1000. However, The max value for a DailySum table exepect. This table max value is 100. |
| PseudoColumns | Specifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'. |
| ThrowsKeyNotFound | Specifies whether or not throws an exception if there is no rows updated. |
| Timeout | Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. |
Specifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.
int
-1
The default value for this property, -1, means that no row limit is enforced unless the query explicitly includes a LIMIT clause. (When a query includes a LIMIT clause, the value specified in the query takes precedence over the MaxRows setting.)
Setting MaxRows to a whole number greater than 0 ensures that queries do not return excessively large result sets by default.
This property is useful for optimizing performance and preventing excessive resource consumption when executing queries that could otherwise return very large datasets.
The Max Thread.
string
"1"
Specifies how many issues the driver will retrieve for each request. The max value for a Smaregi API is 1000. However, The max value for a DailySum table exepect. This table max value is 100.
string
"1000"
Number of Issue entries retrieved in each page.
Specifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.
string
""
This property allows you to define which pseudocolumns the Cloud exposes as table columns.
To specify individual pseudocolumns, use the following format:
Table1=Column1;Table1=Column2;Table2=Column3
To include all pseudocolumns for all tables use:
*=*
Specifies whether or not throws an exception if there is no rows updated.
bool
false
Specifies whether or not throws an exception if there is no rows updated.
Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.
int
60
The timeout applies to each individual communication with the server rather than the entire query or operation. For example, a query could continue running beyond 60 seconds if each paging call completes within the timeout limit.
Timeout is set to 60 seconds by default. To disable timeouts, set this property to 0.
Disabling the timeout allows operations to run indefinitely until they succeed or fail due to other conditions such as server-side timeouts, network interruptions, or resource limits on the server.
Note: Use this property cautiously to avoid long-running operations that could degrade performance or result in unresponsive behavior.
LZMA from 7Zip LZMA SDK
LZMA SDK is placed in the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original LZMA SDK code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
LZMA2 from XZ SDK
Version 1.9 and older are in the public domain.
Xamarin.Forms
Xamarin SDK
The MIT License (MIT)
Copyright (c) .NET Foundation Contributors
All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
NSIS 3.10
Copyright (C) 1999-2025 Contributors THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
1. DEFINITIONS
"Contribution" means:
a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor:
i) changes to the Program, and
ii) additions to the Program;
where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.
"Contributor" means any person or entity that distributes the Program.
"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.
"Program" means the Contributions distributed in accordance with this Agreement.
"Recipient" means anyone who receives the Program under this Agreement, including all Contributors.
2. GRANT OF RIGHTS
a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.
b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
3. REQUIREMENTS
A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:
a) it complies with the terms and conditions of this Agreement; and
b) its license agreement:
i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.
When the Program is made available in source code form:
a) it must be made available under this Agreement; and
b) a copy of this Agreement must be included with each copy of the Program.
Contributors may not remove or alter any copyright notices contained within the Program.
Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.
4. COMMERCIAL DISTRIBUTION
Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.
For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.
5. NO WARRANTY
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.
6. DISCLAIMER OF LIABILITY
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
7. GENERAL
If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.
All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.
Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.
This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.