Views [dbo].[CustomerInvoiceReportCustomer_Legacy]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created7:47:19 PM Saturday, February 7, 2026
Last Modified7:48:55 PM Saturday, February 7, 2026
Columns
Name
CustomerInvoiceReportID
CustomerJoinField
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
/**
* Don't use this view directly but instead use CustomerInvoiceReportCustomer_Synonym.
* CustomerInvoiceReportCustomer_Synonym will either point to this view or to
* CustomerInvoiceReportCustomer_XLedger if that is active.
*/

create view [dbo].[CustomerInvoiceReportCustomer_Legacy]
(
    -- Join to CustomerInvoiceReport.CustomerInvoiceReportID
    CustomerInvoiceReportID,
    -- Join to CustomerInformation_Synonym.CustomerJoinField
    CustomerJoinField
)
as
select
    CustomerInvoiceReportID = CustomerInvoiceReport.CustomerInvoiceReportID,
    CustomerJoinField = CustomerInvoiceReport.CustomerNumber
from CustomerInvoiceReport
GO
GRANT SELECT ON  [dbo].[CustomerInvoiceReportCustomer_Legacy] TO [MssExec]
GRANT INSERT ON  [dbo].[CustomerInvoiceReportCustomer_Legacy] TO [MssExec]
GRANT DELETE ON  [dbo].[CustomerInvoiceReportCustomer_Legacy] TO [MssExec]
GRANT UPDATE ON  [dbo].[CustomerInvoiceReportCustomer_Legacy] TO [MssExec]
GO
Uses
Used By