
[dbo].[ARCCustomerInformationCustomer_XLedger]
create view [dbo].[ARCCustomerInformationCustomer_XLedger]
as
select
CustomerJoinField = ARCCustomerInformation.AccountingCustomerFid,
ARCCustomerInformation.*
from ARCCustomerInformation
GO
GRANT SELECT ON [dbo].[ARCCustomerInformationCustomer_XLedger] TO [MssExec]
GRANT INSERT ON [dbo].[ARCCustomerInformationCustomer_XLedger] TO [MssExec]
GRANT DELETE ON [dbo].[ARCCustomerInformationCustomer_XLedger] TO [MssExec]
GRANT UPDATE ON [dbo].[ARCCustomerInformationCustomer_XLedger] TO [MssExec]
GO