Uniqe visitor to be added fid | Community
Skip to main content
September 18, 2022
Solved

Uniqe visitor to be added fid

  • September 18, 2022
  • 1 reply
  • 1224 views

when I check the developer Console im in my platform I can see the fid it tracked, however in my report suite I can't found this evar or prop. 

my question is, how to add the fid which is tracked in the logs to new evar? which tool should i use or it is by code change please to help me. 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Charles_Thirupathi

Hi @moudar 

 

fid is legacy method of identifying unique visitor, my suggestion is to implement Experience Cloud ID service.

 

For Capturing fid value in eVar/prop you need to assign fid value to the eVar/prop. Below is an example

s.eVar1 = s.fid;
s.prop1 = s.fid;

 

Note : Make sure you enabled 'Make tracker globally accessible' option

 

Thanks,

Charles

 

1 reply

Charles_Thirupathi
Charles_ThirupathiAccepted solution
Level 4
September 19, 2022

Hi @moudar 

 

fid is legacy method of identifying unique visitor, my suggestion is to implement Experience Cloud ID service.

 

For Capturing fid value in eVar/prop you need to assign fid value to the eVar/prop. Below is an example

s.eVar1 = s.fid;
s.prop1 = s.fid;

 

Note : Make sure you enabled 'Make tracker globally accessible' option

 

Thanks,

Charles

 

Jennifer_Dungan
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
September 19, 2022

You can also just use Dynamic Variables:

 

D=fid 

 

In your eVar or prop declaration...

 

This will tell Adobe during processing to take whatever value is in fid, and apply the same value to your eVar/Prop

 

https://experienceleague.adobe.com/docs/analytics/implementation/vars/page-vars/dynamic-variables.html?lang=en

 

moudarAuthor
September 19, 2022

my question is where shoud i add this?

(D=fid;

 s.eVar1 = s.fid;
s.prop1 = s.fid;)

can you provide me with URL

Best Regards 
Moudar