Views [dbo].[QuoteGroupVendor_XLedger]
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
QuoteGroupID
QuoteHeaderFID
ItemCodeFID
RateTypeFID
Description
Rate
Quantity
Quantity2
Charge
QuoteServiceProviderTypeFID
VendorID
VendorQuotedCharge
VendorActualCharge
SortOrder
PONumber
InvoiceNumber
ServiceDate
NoteText
LaborRatingTypeFID
QuoteServiceProviderBillToFID
RateSource
RateSourceRecord
CurrentRowVersion
ExternalVendorID
ExternalVendorName
IsLocked
AccountingVendorFid
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
/**
* Do not use this view directly. Use QuoteGroupVendor_Synonym instead.
* That synonym should be used to join the QuoteGroup table to another table when joining on a Vendor identifier.
* That synonym will point to this view (QuoteGroupVendor_XLedger) if XLedger is being used.
* Otherwise, it will point to QuoteGroupVendor_Legacy.
*/

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