
[dbo].[CustomerPrimaryContact_XLedger]
create view [dbo].[CustomerPrimaryContact_XLedger]
(
CustomerJoinField,
Contact
)
as
select
CustomerJoinField = AccountingCustomer.AccountingCustomerId,
Contact = AccountingCustomer.Contact
from AccountingCustomer
GO
GRANT SELECT ON [dbo].[CustomerPrimaryContact_XLedger] TO [MssExec]
GRANT INSERT ON [dbo].[CustomerPrimaryContact_XLedger] TO [MssExec]
GRANT DELETE ON [dbo].[CustomerPrimaryContact_XLedger] TO [MssExec]
GRANT UPDATE ON [dbo].[CustomerPrimaryContact_XLedger] TO [MssExec]
GO