Views [dbo].[ThirdPartyVendor_XLedger]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created7:47:18 PM Saturday, February 7, 2026
Last Modified7:48:55 PM Saturday, February 7, 2026
Columns
Name
VendorJoinField
TPPriKey
BMinPriKey
BMinDistPriKey
VendorID
PayableAmount
InvoiceNumber
PONumber
ANPriKey
Description
DocDate
JournalDate
PostedDate
PostedBy
ApplyToDoc
InvoiceDate
1099Flag
OnHoldFlag
DocumentNumber
OriginalInvoiceNumber
AccountingVendorFid
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
/**
* Do not use this view directly. Use ThirdPartyVendor_Synonym instead.
* That synonym should be used to join the ThirdParty table to another table when joining on a Vendor identifier.
* That synonym will point to this view (ThirdPartyVendor_XLedger) if XLedger is being used.
* Otherwise, it will point to ThirdPartyVendor_Legacy.
*/

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