ProductPreOrderSettingsLocales
Overrides for the product in a channel locale.
Table Specific Information
Select
The provider uses the BigCommerce API to process WHERE clause conditions built with the following columns and operators:
- ChannelId supports the = comparison. Required filter.
- LocaleId supports the = comparison. Required filter.
The rest of the filter is executed client-side within the provider.
For example, the following queries are processed server-side:
SELECT * FROM ProductPreOrderSettingsLocales;
SELECT * FROM ProductPreOrderSettingsLocales WHERE ChannelId = '1' AND LocaleId = 'en';
Update
You can set locale-specific pre-order settings for a product. ProductId, ChannelId, and LocaleId must be specify in WHERE clause. For example:
UPDATE ProductPreOrderSettingsLocales SET PreOrderSettingsMessage = 'Pre-order available' WHERE ProductId = '111' AND ChannelId = '1' AND LocaleId = 'en';
Delete
You can remove locale-specific pre-order settings overrides.
DELETE FROM ProductPreOrderSettingsLocales WHERE ProductId = '111' AND ChannelId = '1' AND LocaleId = 'fr';
Columns
| Name | Type | ReadOnly | Description |
| ProductId [KEY] | String | False |
The unique identifiers of the products. |
| ChannelId [KEY] | String | False |
Storefront channel. |
| LocaleId [KEY] | String | False |
Locale in the channel. |
| PreOrderSettingsMessage | String | False |
Pre-order message in a channel locale. |