@ASP_Corp maybe not the comma seperated values but you can use a regex in the UI, however i fell like using a custom code will give more flexiblity for this use case but you can try using a regex as well if it work well your requirments.
Hi @ASP_Corp You can use a custom event type with the following code.document.addEventListener('click', function(event) {
var element = event.target;
if (element.classList.contains('align-L2-content') &&
element.classList.contains('pl-1') &&
element.classList.contains(...
Hi @Mohitvasist80 Yes FPIDs aren't compatible with third party cookies, third party cookies are those cookies which are set outside your website domains. for example you website is example.com and some analytics service on your website setting a cookie on analytics.com domain.You can Implement a CNA...
Hi @Sushmita_2 Based on the scenario you've mentioned there will be two ECIDs or two profiles.however if you are capturing person details (during first visit when he made an unauthenticated using his laptop and provided his details) you can also capture the his email and mark as an identity, so if t...
yes, In AEP you can define multiple identities in your schema followed by a single primary identity of standard and custom identity namespaces, Identity service then will merge all these fragments to provide you a holistic user profile.
Hi @Michael_Soprano If you're not setting s.visitorID and using identity service for visitors identification then Adobe uses ECID followed by a fallback ID if ECID is not available if none of this is available then IP is used to identify visitors.Check this document for more details. @jayakrishnaapa...
Hi @Roy23 Check the mentioned documents, might be helpfulhttps://github.com/adobe/aepsdk-react-native/blob/main/README.md https://www.npmjs.com/package/@adobe/react-native-aepcore https://developer.adobe.com/client-sdks/home/
Hi @MohitVashist FPID is used to identify visitors by using first-party cookies to automatically encoded into an ECID by the Edge Network(basically seeding the ECID), if one of your platform is utilizing FPID while others aren't I suggest you should wait until all your platform have the FPID functio...
Hi @Ankit_EG While implementing web SDK ECID will be available by default, however its won't be available in a custom variable or field you can map it by using two following methods here(via data prep in DataStream or create a data element to map it on the client side).For product string you can use...