
[dbo].[BillingMinorItemAlternateCustomer_XLedger]
create view [dbo].[BillingMinorItemAlternateCustomer_XLedger]
(
BMinPriKey,
CustomerJoinField,
CustomerAddressJoinField
)
as
select
BMinPriKey = BillingMinorItem.BMinPriKey,
CustomerJoinField = BillingMinorItem.AlternateAccountingCustomerFid,
CustomerAddressJoinField = BillingMinorItem.AlternateAccountingCustomerAddressFid
from BillingMinorItem
GO
GRANT SELECT ON [dbo].[BillingMinorItemAlternateCustomer_XLedger] TO [MssExec]
GRANT INSERT ON [dbo].[BillingMinorItemAlternateCustomer_XLedger] TO [MssExec]
GRANT DELETE ON [dbo].[BillingMinorItemAlternateCustomer_XLedger] TO [MssExec]
GRANT UPDATE ON [dbo].[BillingMinorItemAlternateCustomer_XLedger] TO [MssExec]
GO