Views [dbo].[AdvanceBankingServiceProviderVendor_Legacy]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created6:57:26 AM Friday, September 12, 2025
Last Modified6:57:26 AM Friday, September 12, 2025
Columns
Name
VendorJoinField
AdvanceBankingServiceProviderID
VendorID
GenerateTransactionsFlag
AdvanceBankingServiceProviderTypeFID
FTPGenerateUploadFileFlag
FTPAutoUploadFlag
FTPUserName
FTPPassword
FTPHost
FTPPort
AccountingVendorFid
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
/**
* Do not use this view directly. Use AdvanceBankingServiceProviderVendor_Synonym instead.
* That synonym should be used to join the AdvanceBankingServiceProvider table to another table when joining on a Vendor identifier.
* That synonym will point to AdvanceBankingServiceProviderVendor_XLedger if XLedger is being used.
* Otherwise, it will point to this view (AdvanceBankingServiceProviderVendor_Legacy).
*/

create view [dbo].[AdvanceBankingServiceProviderVendor_Legacy]
as
select
    VendorJoinField = AdvanceBankingServiceProvider.VendorID,
    AdvanceBankingServiceProvider.*
from AdvanceBankingServiceProvider
GO
GRANT SELECT ON  [dbo].[AdvanceBankingServiceProviderVendor_Legacy] TO [MssExec]
GRANT INSERT ON  [dbo].[AdvanceBankingServiceProviderVendor_Legacy] TO [MssExec]
GRANT DELETE ON  [dbo].[AdvanceBankingServiceProviderVendor_Legacy] TO [MssExec]
GRANT UPDATE ON  [dbo].[AdvanceBankingServiceProviderVendor_Legacy] TO [MssExec]
GO
Uses
Used By