Expand my Community achievements bar.

How to configure unique scOpen for Mobile Apps

Avatar

Community Advisor

Hi Team,

 

We have implemented scOpen as Unique event ID record type so that it records for only once.

ambikaTewari_ATCI_0-1720610711360.png

 


We have one context_data mapped to this :

ambikaTewari_ATCI_1-1720610832789.png


So want to ask if we need to do some additional configuration for MApp also to have unique scOpens or configuration in Admin section would be  sufficient and applicable for both mweb and mapp?

 

Any help in this regard will be really helpful.

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

2 Replies

Avatar

Level 6

Hi @ambikaTewari_ATCI 

I believe for mweb you will have a different property to collect data from the web, within the rules used to identify shopping cart openings you can add scOpen event either in the UI or in the custom code in set variables action and serialize it with the unique values.

You can check this article on event serialization for more details.

Avatar

Community Advisor

Most people (and Adobe) recommend sending all the data from web and mobile into the same suite. We've had that implementation for years. This was you can get your entire network data in a single place, then separate out with Virtual Reporting Suites or simply with segments for focused analysis...  it's easier to segment data than to add it together.

 

As for creating uniqueness, I am not sure if what you have will work...  you will have to test it, I hope you have AEP Assurance (formerly known as Griffon) installed in your app to make testing easier.

 

My concern is the nature of events.

Jennifer_Dungan_0-1720633005574.png

 

By default, Processing Rules is set to Custom Value and the "1" meaning the value passed here is likely just the numerical value, I don't know if you can create the serialization here.

In web, you would have:

s.events = "scOpen:12345"

or maybe for a numeric event, you would have:

s.events = "event1:1234=2" (I am guessing, I've never serialized a numeric event before, only counters, but since counters are "event1=2" this logic makes sense....)

 

You can see in the numeric events, the value would be 2, and in processing rules, I might have something like:

Jennifer_Dungan_1-1720633451178.png

 

You can see that the custom value is the numeric value, not the serialization.....

 

When I've done serialization with my developers, I am actually having them set the events directly in the call.

 

cdata.put("&&events", "event1:1234");

 

And since Products isn't available to map in Processing Rules at all, I have them do all product / shopping cart related tracking.

 

https://developer.adobe.com/client-sdks/solution/adobe-analytics/product-variable/#products-variable...