Views [dbo].[PlasticDealCustomer_Legacy]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created9:18:36 AM Wednesday, October 15, 2025
Last Modified9:18:36 AM Wednesday, October 15, 2025
Columns
Name
CustomerJoinField
DealID
InstrumentFID
DealType
Description
TransactionCode
ApprovalCode
ProcessorCode
BillingCycle
OriginalAmount
ApprovedAmount
OriginFID
StatementDetailFID
TransactionDate
ResponseCode
ResponseMessage
CscResponseCode
TransactionStatus
SysUserFID
ActivityDate
StorageInvoiceFID
BatchStatusFID
BatchErrorCodeFID
WasReprocessed
WebDealFID
WebTransactionCode
TransactionID
PurchaseOrderNo
HppSessionID
MssTransactionID
CurrencyCode
AuthorizationDate
AuthorizationByFID
AuthorizationAmount
AuthorizationTransId
AuthorizationMssTransID
OrderFID
CustomerNumber
BranchFID
FinalizedDate
FinalizedByFID
AccountingCustomerFid
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
/**
* Don't use this view directly but instead use PlasticDealCustomer_Synonym.
* PlasticDealCustomer_Synonym will either point to this view or to
* PlasticDealCustomer_XLedger if that is active.
*/

create view [dbo].[PlasticDealCustomer_Legacy]
/*(
    -- Join to CustomerInformation_Synonym.CustomerJoinField
    CustomerJoinField
)*/

as
select
    CustomerJoinField = PlasticDeal.CustomerNumber,
    PlasticDeal.*
from PlasticDeal
GO
GRANT SELECT ON  [dbo].[PlasticDealCustomer_Legacy] TO [MssExec]
GRANT INSERT ON  [dbo].[PlasticDealCustomer_Legacy] TO [MssExec]
GRANT DELETE ON  [dbo].[PlasticDealCustomer_Legacy] TO [MssExec]
GRANT UPDATE ON  [dbo].[PlasticDealCustomer_Legacy] TO [MssExec]
GO
Uses
Used By