Views [dbo].[CustomerPrimaryContact_Legacy]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created7:48:55 PM Saturday, February 7, 2026
Last Modified7:48:55 PM Saturday, February 7, 2026
Columns
Name
CustomerJoinField
Contact
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
/**
* Do NOT access this view by this view name.  Instead, use the CustomerPrimaryContact_Synonym which will either
* point to this view or to the CustomerPrimaryContact_XLedger as appropriate for that system.
*/

create view [dbo].[CustomerPrimaryContact_Legacy]
(
    CustomerJoinField,
    Contact
)
as
select
    CustomerJoinField = RM00101.CUSTNMBR,
    Contact = RM00101.CNTCPRSN
from RM00101_Synonym as RM00101
GO
GRANT SELECT ON  [dbo].[CustomerPrimaryContact_Legacy] TO [MssExec]
GRANT INSERT ON  [dbo].[CustomerPrimaryContact_Legacy] TO [MssExec]
GRANT DELETE ON  [dbo].[CustomerPrimaryContact_Legacy] TO [MssExec]
GRANT UPDATE ON  [dbo].[CustomerPrimaryContact_Legacy] TO [MssExec]
GO
Uses
Used By