rno Table: Note
Oracle DBMS

Specifies the columns and rows with Oracle data type information for the rno Note table.

Parent-Child: This table has one or more child tables--click here for a listing.

rno Columns

DescriptionColumn NameData Type ?Characteristics ?
Portfoliopor_sCHAR(2)
Companycom_sCHAR(2)
Regionreg_sCHAR(2)
Officeoff_sCHAR(3)
Note attached to leasenote_sCHAR(10)
Record modification stampstamp_lNUMBER(10)
Lenderlen_sCHAR(9)
Leaselse_sCHAR(10)
Assetunit_sCHAR(10)
Note dated_note_sDATE
Note commencement dated_com_sDATE
System booking dated_boo_sDATE
System booking timet_boo_sCHAR(6)
Maturity dated_mat_sDATE
Date note was attached to lease/assetd_att_sDATE
Date of last updated_lup_sDATE
Time of last updatet_lup_sCHAR(6)
Activity status dated_act_sDATE
Next payment due dated_pmt_sDATE
Note accrued to dated_acc_sDATE
Last payment dated_pay_sDATE
Last payment due dated_lst_sDATE
Effective date of last paymentd_eff_sDATE
Date note was paid offd_pyf_sDATE
Time note was paid offt_pyf_sCHAR(6)
Payoff effective dated_epf_sDATE
Activity statusact_nt_sCHAR(4)
Accrual methodacc_nt_sCHAR(4)
Note typetyp_nt_sCHAR(4)
Float index codefl_idx_sCHAR(4)
Bank account GL vector
  ' 1' - If multiple banks module is purchased
  ' ' - multiple banks module is not purchased.
bank_sCHAR(3)
Payment due last accrual (Y/N)due_lst_cCHAR(1)
Removal allowed (Y/N)rem_allow_cCHAR(1)
Comments [1]commt1_sVARCHAR2(80)
Comments [2]commt2_sVARCHAR2(80)
Note descriptiondesc_sVARCHAR2(36)
Number of payments accruedpmt_lNUMBER(10)
Note termnote_trm_lNUMBER(10)
Payment due daydue_lNUMBER(10)
Number of payments processedpmt_prcd_lNUMBER(10)
Interest ratep_int_rt_dNUMBER(15,5)
Note rate add-onp_add_rt_dNUMBER(15,5)
Float floor ratep_min_rt_dNUMBER(15,5)
Float ceiling ratep_max_rt_dNUMBER(15,5)
Original principal amountorg_dNUMBER(15,2)
Down paymentdown_dNUMBER(15,2)
Current principal balancecur_prn1_dNUMBER(15,2)
Interest carry overint_car_dNUMBER(15,2)
Interest unpaidint_unpd_dNUMBER(15,2)
Interest accrued current monthint_accr_cur_dNUMBER(15,2)
Interest accrued period to dateint_ptd_dNUMBER(15,2)
Interest Y-T-Dint_ytd1_dNUMBER(15,2)
Interest paid L-T-Dint_ltd_dNUMBER(15,2)
Interest previous yearint_prv1_dNUMBER(15,2)
Partial period interest at bookingint_par_bk_dNUMBER(15,2)
Partial period interest at payoffint_par_pf_dNUMBER(15,2)
Base payoff amountbase_amt_pf_dNUMBER(15,2)
Principal outstanding at payoffouts_prn_pf_dNUMBER(15,2)
Interest outstanding at payoffouts_int_pf_dNUMBER(15,2)
Funding dated_fund_sDATE
Interest per diemint_perd_dNUMBER(15,2)
Bank loan numberbank_loan_sCHAR(16)
Gap feegap_fee_dNUMBER(15,2)
Security depositsec_dep_dNUMBER(15,2)
Reserve for charge backsres_for_chrg_bck_dNUMBER(15,2)
Service feeser_fee_dNUMBER(15,2)
Bank code for security depositsec_dep_bnk_code_sCHAR(4)
Bank code for reserve for charge backsres_chrg_bck_bnk_code_sCHAR(4)
Bank code for pre-payment reservepre_pmt_res_bnk_code_sCHAR(4)
Equipment costeqp_cost_dNUMBER(15,2)
Lease feeslse_fee_dNUMBER(15,2)
Lease number tied to notelse_numb_att_sCHAR(10)

rno Indexes

Index NamePiece 1Piece 2Piece 3Piece 4Piece 5
rno_idx0por_scom_sreg_soff_snote_s
rno_idx1len_snote_s
rno_idx2note_s
rno_idx3lse_snote_s
rno_idx4unit_snote_s

Child Table Listing

Table NameDescription
rnonNote Payment Schedule

Data Type Definitions and Characteristics

Following are descriptions of the Oracle data types used in the LeasePak database. Note that LeasePak does not use all the Oracle data types.

char
Oracle fixed length character string. Typically used to store short-length string data such as keys, four-character codes, and single-character switch values.
Characteristics:
  • length - The maximum number of ASCII or ISO-8859-1 characters the string can contain.

date
Oracle date and time, containing century, year, month, day, hour, minute, and second information.
Characteristics:
  • format - The date format for the LeasePak database. For example, format YYYYMMDD is the 4-digit year number followed by the 2-digit month number followed by the 2-digit day number with no intervening punctuation.

number
Oracle numeric data type. Used for all numbers.
Characteristics:
  • precision - The magnitude and fractional granularity together, meaning the maximum number of places available to both the left and right of the decimal point. Use precision minus scale to determine the maximum number of places available to the left of the decimal point.
  • scale - The fractional granularity, meaning the maximum number of places available to the right of the decimal point.

varchar2
Oracle variable length character string. Typically used to store medium and long-length string data such as names, addresses, descriptions, and notebook entries.
Characteristics:
  • length - The maximum number of ASCII or ISO-8859-1 characters the string can contain.