<LOANPAYMENTSDUE> - Sub element of <LOAN>
NLS 5.40.3
For modifying Payments Due record. Use either RowID or the combination of AcctRefno, PaymentNumber, and PaymentType to identify record to modify.
Attribute | Type | Size | REQ | Default | Comments |
---|---|---|---|---|---|
RowID
|
Numeric | 9 | Yes* | *Required if AcctRefno , PaymentNumber , and PaymentType are not specified. |
|
AcctRefno
|
Numeric | 10 | Yes* | *Required if RowID is not specified. |
|
PaymentNumber
|
Numeric | 9 | Yes* | *Required if RowID is not specified. |
|
PaymentType
|
String | 3 | Yes* | *Required if RowID is not specified.Valid values are: N = N/API = Principal & InterestP = PrincipalPB = Principal BalloonI = InterestIB = Interest BalloonL = Late ChargesF = FeesZZ = Total Payment Amount RowZX = Total Payoff Amount RowU1 = UserDefined1U2 = UserDefined2U3 = UserDefined3U4 = UserDefined4U5 = UserDefined5U6 = UserDefined6U7 = UserDefined7U8 = UserDefined8U9 = UserDefined9U10 = UserDefined10IM = ImpoundDI = Deferred Interest |
|
NewAmount
|
Numeric | 16,2 | |||
EffectiveDate
|
Date | No | Current System Date | MM/dd/yyyy or as configured by the DATEFMT user defined parameter. | |
Comment
|
String | No | |||
LateFeeCode
|
String | No |
Update using RowID
<NLS CommitBlock="1" EnforceTagExistence="1"> <LOAN UpdateFlag="1" LoanNumber="ABC123"> <LOANPAYMENTSDUE RowID="1000" NewAmount="1234.56" EffectiveDate="11/26/2024" Comment="Your comment here" LateFeeCode="4" /> </LOAN> </NLS>
Update using AcctRefno, PaymentNumber, and PaymentType
<NLS CommitBlock="1" EnforceTagExistence="1"> <LOAN UpdateFlag="1" LoanNumber="ABC123"> <LOANPAYMENTSDUE AcctRefno="123" PaymentNumber="1" PaymentType=”P” NewAmount="1234.56" EffectiveDate="11/26/2024" Comment="Your comment here" LateFeeCode="4" /> </LOAN> </NLS>