IBY_PMTMTHD_CONDITIONS
IBY_PMTMTHD_CONDITIONS stores the conditions for payment methods. Each condition is comprised of a parameter, operation, and value. The condition is evaluated at runtime to determine if the payment system account and funds capture process profile is applicable to the transaction.
Details
-
Schema: FUSION
-
Object owner: IBY
-
Object type: TABLE
-
Tablespace: APPS_TS_TX_DATA
Primary Key
Name | Columns |
---|---|
IBY_PMTMTHD_CONDITIONS_PK |
PMTMTHD_CONDITION_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
PAYMENTMETHODID | NUMBER | 18 | Yes | Payment method Identifier | |
PARAMETER_CODE | VARCHAR2 | 30 | Yes | AMOUNT, INSTRTYPE, or other condition | |
OPERATION_CODE | VARCHAR2 | 15 | Yes | EQUALS, NEQUALS, or other operation | |
VALUE | VARCHAR2 | 30 | Value for the condition | ||
IS_VALUE_STRING | VARCHAR2 | 1 | Value type such as number or character | ||
ENTRY_SEQUENCE | NUMBER | 4 | Yes | Number which denotes the order in which the admin user has entered the conditions. When queried, it needs to be displayed in the same order that the user entered it. | |
LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. | ||
SECURITY_GROUP_ID | NUMBER | Used in hosted environments | |||
CONDITION_NAME | VARCHAR2 | 80 | Mnemonic created by the user for one of the conditions which constitutes a routing rule | ||
PMTMTHD_CONDITION_ID | NUMBER | 18 | Yes | System generated primary key |
Foreign Keys
Table | Foreign Table | Foreign Key Column |
---|---|---|
IBY_PMTMTHD_CONDITIONS | iby_routinginfo | PAYMENTMETHODID |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
IBY_PMTMTHD_CONDITIONS_U1 | Unique | Default | PMTMTHD_CONDITION_ID |
IBY_PMTMTHD_CONDITIONS_U2 | Unique | Default | PAYMENTMETHODID, PARAMETER_CODE, OPERATION_CODE, ENTRY_SEQUENCE |