
[dbo].[AccountProfilesCustomer_XLedger]
create view [dbo].[AccountProfilesCustomer_XLedger]
(
AccountProfileID,
CustomerJoinField
)
as
select
AccountProfileID = AccountProfiles.AccountProfileID,
CustomerJoinField = AccountProfiles.AccountingCustomerFid
from AccountProfiles
GO
GRANT SELECT ON [dbo].[AccountProfilesCustomer_XLedger] TO [MssExec]
GRANT INSERT ON [dbo].[AccountProfilesCustomer_XLedger] TO [MssExec]
GRANT DELETE ON [dbo].[AccountProfilesCustomer_XLedger] TO [MssExec]
GRANT UPDATE ON [dbo].[AccountProfilesCustomer_XLedger] TO [MssExec]
GO