Store level block reason code configuration. Used
to configure whether a block reason code is turned on for a store
and also configure whether this block reason code will generate
ticklers.
Column Descriptions:
| Name | Type | Description |
| STOREENT_ID | INTEGER NOT NULL | The store entity id, foreign key of STOREENT
table. |
| BLKRSNCODE_ID | INTEGER NOT NULL | The block reason code id. Foreign key to the
BLKRSNCODE table. |
| RESPECTED | SMALLINT NOT NULL DEFAULT 1 | Indicates whether the block reason code is active
for the store.
0 = off - the code is not active for the store.
1 = on (default) - the code is active for the store.
|
| TKLRGENERATION | SMALLINT NOT NULL DEFAULT 1 | Indicates whether the block reason code generates
ticklers for the store.
0 = off - the block reason code does not generate ticklers
for the store.
1 = on (default) - the block reason code generates ticklers
for the store.
|
| FIELD1 | INTEGER | Customizable field1. |
| FIELD2 | VARCHAR (254) | Customizable field2. |
| OPTCOUNTER | SMALLINT | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
| Name | Column Names | Type |
| <SYSTEM-GENERATED> | STOREENT_ID+BLKRSNCODE_ID | Primary Key |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| R_3448 | STOREENT_ID | STOREENT | STOREENT_ID | Cascade |
| R_3449 | BLKRSNCODE_ID | BLKRSNCODE | BLKRSNCODE_ID | Cascade |