내 커뮤니티 업적 표시줄을 확대합니다.

Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Mobile - Send Data to Multiple Report Suites

Avatar

Community Advisor and Adobe Champion

I'm trying to find out if it's possible to send data to multiple report suites from a mobile app like it is for a website.  I am going to be working on a project where we will want to send data for a specific call within the app to two report suites, but the rest of the time it will only be going to the primary suite.  I know this is possible on a website, but I was curious if this could also work on a mobile app implementation.

Thanks in advance!

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Employee

Hey Jeff,

As mentioned earlier in this thread, there is a way to send data to multiple report suites with a single request.  However, there is no API in the mobile SDK to dynamically add and/or remove report suites at runtime, which means that all of the report suites you list in the ADBMobileConfig.json file will get data for every request.  

You can achieve what you want by implementing Vista rules.  With Vista rules, you can decide which report suites should process each request based on the content of the request.  

For example, for the special request that needs to be collected by both report suites, you could set a special context data variable that is only sent for that kind of request.  The Vista rule would only forward the data to your second report suite when that context data variable is present.

For more information on Vista rules, please check out the documentation: https://marketing.adobe.com/resources/help/en_US/reference/VISTA.html

Hope this helps.

steve benedick

sr mobile software engineer

원본 게시물의 솔루션 보기

3 답변 개

Avatar

Employee

Hi Jeff,

Yes. The SDKs provide the ability to send data to multiple Adobe Analytics report suites. To capture data into multiple report suites using a single image request, set the mutiple RSIDs (report suite IDs) into the "rsids" field (under "anayltics" section) in the ADBMobileConfig.json file delimited by commas (with no spaces in-between). For further detail, please review documentation (see rsids variable)

I hope this helps.

Tanmay

Avatar

정확한 답변 작성자:
Employee

Hey Jeff,

As mentioned earlier in this thread, there is a way to send data to multiple report suites with a single request.  However, there is no API in the mobile SDK to dynamically add and/or remove report suites at runtime, which means that all of the report suites you list in the ADBMobileConfig.json file will get data for every request.  

You can achieve what you want by implementing Vista rules.  With Vista rules, you can decide which report suites should process each request based on the content of the request.  

For example, for the special request that needs to be collected by both report suites, you could set a special context data variable that is only sent for that kind of request.  The Vista rule would only forward the data to your second report suite when that context data variable is present.

For more information on Vista rules, please check out the documentation: https://marketing.adobe.com/resources/help/en_US/reference/VISTA.html

Hope this helps.

steve benedick

sr mobile software engineer

Avatar

Community Advisor and Adobe Champion

Thanks.  That's the answer I was looking for.