Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Ryan_Roberts_
Ryan_Roberts_
Offline

Badges

Badges
23

Accepted Solutions

Accepted Solutions
108

Likes Received

Likes Received
228

Posts

Posts
234

Discussions

Discussions
49

Questions

Questions
185

Ideas

Ideas
3

Blog Posts

Blog Posts
0
Top badges earned by Ryan_Roberts_
Customize the badges you want to showcase on your profile
Re: iterating over an array while creating profile scripts - Adobe Target 24-03-2022
Looks like you found a solution. There is a pretty decent built in method also just to share:var param = page.param('PARAMETERNAME');If you know the name of the page query parameter you can reference it directly in a profile script like above. The little "available tokens" widget on the right side of the edit script pane shows some of these. Hope that is helpful.

Views

258

Likes

0

Replies

1
Re: Adobe Target | How long does it take for data to show up? - Adobe Target 24-03-2022
A4T reporting: latency is generally the same as your other visit based AA data (typically about 45 min). Though as Mihnea's article points out that can be even slower initially for a brand new activity.Target reporting: latency is usually less than four minutes. If it hasn't loaded within four minutes I'd expect that something is wrong with the implementation. Can you verify the click event fired a request to Target? Was the metric defined correctly? Were you use "clicked an element" or "viewed ...

Views

219

Like

1

Replies

0
Re: Activity QA preview link issue - Adobe Target 08-03-2022
Hi @ralucatanase, Can you confirm that the device where the preview link isn't working is getting a Target response to the page? Assuming your implementation of Target is the typical client-side (meaning the browser makes calls to Target directly when the page loads). You can use the Developer Tools network tab. You can filter for "omtr" to see just the Target requests. Open the preview or response tab of the request to see if anything shows up in the execute.pageLoad portion of the object.What ...

Views

158

Like

1

Replies

0
Re: A/B Test: How can traffic enter both experiences? - Adobe Target 11-02-2022
Hi @bkmills,Is this test executed with a redirect? Depending on the setup, redirect offer test can sometimes have cross-over traffic showing up in the reports with A4T reporting.

Views

192

Likes

0

Replies

1
Re: Limit number of times Target Activity is viewed - Adobe Target 06-01-2022
Hi @renatoz28,I agree this is likely not possibly with Analytics segments alone. You need a Target profile script to help with counting prior impressions. Here in the other post I walk through how to do this sort of thing. The use case is similar to yours I think.Solved: Show experience 3 times in one AT activity - Adobe Experience League Community - 435107Hope this helps.

Views

284

Like

1

Replies

0
Re: Show experience 3 times in one AT activity - Adobe Target 04-01-2022
Hi @MA1985v1,This can be done with some customization and an XT or Experience Targeting activity. An XT activity will allow you to create experiences and then prioritize the order that a visitor qualifies for them. Move experiences to the top for higher priority. Tracking the views of each experience is where the customization comes in. You need to fire a request back to Target so it can "count" views of a particular experience. This way you can increment a profile script that can be used in an ...

Views

291

Likes

2

Replies

2
Re: English browser language audience set up - Adobe Target 15-12-2021
Hi @Maple-Michelle1, Perhaps you've solved this already. Normally the out of the box Browser > Language audience rule options should work fine. However, if you find them not working as expected you could use a profile script to define an audience. The profile script could check for the four languages you care about and return which one is most preferred. Something like this:var brL = user.header('accept-language') || "0"; if (brL.search(/^ja|^en|^fr|^de/) > -1) { return brL.substring(0,2); }Then...

Views

141

Like

1

Replies

0
Re: Best way to test a "download app" webpage - Adobe Target 15-12-2021
Hi @Maple-Michelle1, I think the "clicked an element" method is probably the easiest one to use. However, there are other ways. You could use a custom code modification in the VEC (or via a form composed test) to add a small JS that inserts an onclick action on the button/link to fire an adobe.target.trackEvent(). This allows you to create a custom mbox name and then in the goals settings you pick conversion > viewed an mbox. Then select the custom mbox name in the trackEvent(). This also allows...

Views

107

Like

1

Replies

0
Re: A4T - Don't See Target Activity - Adobe Target 15-12-2021
Hi @bkmills,When you first create an A4T activity in Target, a back-end process has to run in order to list the new activity and experiences in the Target related dimensions in Analytics Workspace. This usually only takes a few hours after the activity is first saved, but could take a day in some cases. Keep in mind the activity data collection and reporting work immediately, it's just the friendly names of the activities that are going to take a little bit to show up at first.Could this be your...

Views

472

Like

1

Replies

3
Re: Data Collection and Experience Persistence for Server Side (Java SDK) - Adobe Target 03-11-2021
Hi @rrrrrraul,#1: It does rely on the same A4T configuration option the typical client-side deployment of Target does (using an SDID parameter). This does assume a Target server-side deployment and a client-side deployment of ECID and Analytics. Then you should be setting a server-state for the ECID (VisitorAPI.js) on the page. You should be able to see this on the Target-Analytics page from the sample app for the Target Java SDK.#2: The Target Java SDK handles this so that experiences are maint...

Views

211

Like

1

Replies

0