Views [dbo].[CommStmtVendor_XLedger]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created9:18:42 AM Wednesday, October 15, 2025
Last Modified9:18:42 AM Wednesday, October 15, 2025
Columns
Name
VendorJoinField
MSID
CommStmtHeader
VendorID
VendorName
Balance
AccountingVendorFid
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
/**
* Do not use this view directly. Use CommStmtVendor_Synonym instead.
* That synonym should be used to join the CommStmtVendor table to another table when joining on a Vendor identifier.
* That synonym will point to this view (CommStmtVendor_XLedger) if XLedger is being used.
* Otherwise, it will point to CommStmtVendor_Legacy.
*/

create view [dbo].[CommStmtVendor_XLedger]
as
select
    VendorJoinField = CommStmtVendor.AccountingVendorFid,
    CommStmtVendor.*
from CommStmtVendor
GO
GRANT SELECT ON  [dbo].[CommStmtVendor_XLedger] TO [MssExec]
GRANT INSERT ON  [dbo].[CommStmtVendor_XLedger] TO [MssExec]
GRANT DELETE ON  [dbo].[CommStmtVendor_XLedger] TO [MssExec]
GRANT UPDATE ON  [dbo].[CommStmtVendor_XLedger] TO [MssExec]
GO
Uses