CRM Visitors: Difference between revisions
From Customer365 for SageCRM
(Created page with "Within CRM itself you can view any person records recorded as registered visitors in CRM To do this logon as a user with admin rights Click Administration -> System -> Sel...") |
No edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
Administration -> System -> Self Service | Administration -> System -> Self Service | ||
[[File: | [[File:Ss1.png]] | ||
Uncheck the " | Uncheck the "Anonymous visitors only" checkbox and click filter to see the people | ||
[[File: | [[File:Ss2.png]] | ||
Visitor maintenance is available at | Visitor maintenance is available at | ||
[[File: | [[File:Ss3.png]] | ||
See also | |||
[https://community.sagecrm.com/partner_community/b/hints_tips_and_tricks/archive/2014/09/03/sage-crm-7-2-administering-self-service-visitors.aspx "Sage CRM 7.2: Administering Self Service Visitors"] | |||
---- | |||
Trigger on visitor table that sets the users email address as the logon id (the logon id field should be expanded to make sure the data fits before using this) | |||
create trigger [dbo].[UpdateLogonId] | |||
on [dbo].[Visitor] | |||
after insert, update | |||
as | |||
begin | |||
set nocount on; | |||
declare @visiId int | |||
DECLARE @Email VARCHAR(50) | |||
select @visiId = INSERTED.Visi_VisitorId | |||
from inserted | |||
select @Email = INSERTED.Visi_EmailAddress | |||
from inserted | |||
update Visitor | |||
SET Visi_LogonId = @Email | |||
WHERE Visi_VisitorId = @visiId | |||
END |
Latest revision as of 12:37, 30 May 2019
Within CRM itself you can view any person records recorded as registered visitors in CRM
To do this logon as a user with admin rights
Click
Administration -> System -> Self Service
Uncheck the "Anonymous visitors only" checkbox and click filter to see the people
Visitor maintenance is available at
See also
"Sage CRM 7.2: Administering Self Service Visitors"
Trigger on visitor table that sets the users email address as the logon id (the logon id field should be expanded to make sure the data fits before using this)
create trigger [dbo].[UpdateLogonId] on [dbo].[Visitor] after insert, update as begin set nocount on; declare @visiId int DECLARE @Email VARCHAR(50) select @visiId = INSERTED.Visi_VisitorId from inserted select @Email = INSERTED.Visi_EmailAddress from inserted update Visitor SET Visi_LogonId = @Email WHERE Visi_VisitorId = @visiId END