V_QUERY_RE7_INSTALLMENT
Fields
| Field | Field Type | Null | Description |
|---|---|---|---|
| LOCALID | int | ||
| REVENUE_LOCALID | int | ||
| INSTALLMENTDATE | datetime | ||
| INSTALLMENTAMOUNT | money | ||
| SEQUENCE | int | ||
| INSTALLMENTBALANCE | money | ||
| PAYMENTCOUNT | int | ||
| PAYMENTAMOUNT | money | ||
| INSTALLMENTSTATUS | varchar(14) | yes |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 6/23/2025 4:35:39 AM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=4.0.4000.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE VIEW dbo.V_QUERY_RE7_INSTALLMENT AS
select
[I].[LOCALID],
[I].[REVENUE_LOCALID],
[I].[INSTALLMENTDATE],
[I].[INSTALLMENTAMOUNT],
[I].[SEQUENCE],
[I].[INSTALLMENTBALANCE],
[I].[PAYMENTCOUNT],
[I].[PAYMENTAMOUNT],
case [I].[INSTALLMENTSTATUS]
when 0 then 'Payment'
when 1 then 'Missed payment'
when 2 then 'Future payment'
end as [INSTALLMENTSTATUS]
from dbo.[RE7_INSTALLMENT] [I];