ARM_AMORTIZATION_SCHEDULE
This table stores the amortization schedule for transactions.
Details
Object type: TABLE
Primary Key
| Name | Columns |
|---|---|
|
ARM_AMORTIZATION_SCHEDULE_PK |
AMORT_SCHEDULE_ENTRY_ID |
Columns
| Name | Data Type | Length | Precision | Scale | Null Allowed | Comments |
|---|---|---|---|---|---|---|
|
AMORT_SCHEDULE_ENTRY_ID |
NUMBER |
18 |
0 |
No |
Unique key |
|
|
TRANSACTION_ID |
NUMBER |
18 |
0 |
No |
Foreign key to ARM_AMORTIZATIONS and ARM_TRANSACTIONS |
|
|
CURRENCY_BUCKET_ID |
NUMBER |
18 |
0 |
No |
Currency Bucket ID, FK to ARM_CURRENCY_BUCKETS |
|
|
CURRENCY |
VARCHAR2 |
80 |
No |
Currency of the amortization |
||
|
PERIOD_NUM |
NUMBER |
No |
Number identifying the period (1-based) |
|||
|
AMOUNT |
NUMBER |
29 |
12 |
No |
Amount of amortization |
|
|
OBJECT_VERSION_NUMBER |
NUMBER |
9 |
0 |
No |
Used to implement optimistic locking. This number is incremented every time 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_UPDATE_LOGIN |
NUMBER |
Yes |
Who column. Stores the login/session ID of the user who last updated this row. |
|||
|
LAST_UPDATED_BY |
VARCHAR2 |
255 |
No |
Who column. Stores the ID of the user who last updated this row. |
||
|
LAST_UPDATE_DATE |
DATE |
No |
Who column. Stores the date when this row was last updated. |
|||
|
CREATED_BY |
VARCHAR2 |
255 |
No |
Who column. Stores the ID of the user who created this row. |
||
|
CREATION_DATE |
DATE |
No |
Who column. Stores the date when this row was created in the database. |
|||
|
PERIOD_ID |
NUMBER |
18 |
0 |
Yes |
Period of the amortization |
Indexes
| Index | Uniqueness | Columns |
|---|---|---|
|
ARM_AMORTIZATION_SCHEDULE_PK |
UNIQUE |
AMORT_SCHEDULE_ENTRY_ID |
|
ARM_AMORTIZATION_SCHEDULE_UK |
UNIQUE |
TRANSACTION_ID, PERIOD_NUM, CURRENCY_BUCKET_ID |