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

perrin_ennen
perrin_ennen
Online

Badges

Badges
20

Accepted Solutions

Accepted Solutions
13

Likes Received

Likes Received
42

Posts

Posts
46

Discussions

Discussions
2

Questions

Questions
44

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by perrin_ennen
Customize the badges you want to showcase on your profile
Re: SRM Issue with A/B test with 50/50 split (100% audience) - Adobe Target 10-08-2022
It looks like the tool requires an exact 50% to 50% division. As far as I know, this is not possible in Adobe Target. It is always an approximation here. Earlier Math.random() was used for the calculation. In the meantime, window.crypto is used to calculate this. My previous suggestion will not help you here either. best regards

Views

48

Likes

2

Replies

1
Re: Adobe Target Reporting | Engagement Tracking | Private browsing not tracked? - Adobe Target 09-08-2022
By default, only one click per user for the activity is counted as a conversion. Regardless of whether the conversion is triggered more often.

Views

35

Likes

0

Replies

0
Re: SRM Issue with A/B test with 50/50 split (100% audience) - Adobe Target 09-08-2022
What is the SRM issue? Never had any problems with A/B tests myself so far. @ml19 Maybe you can describe your problem again in more detail. You can of course create an XT Activity and work with Profile Scripts - if that gets around your problem. Example (profileScript): if (mbox.name == 'target-global-mbox') { if (!user.get('Group_50_50')) { var rnd = Math.floor(Math.random() * 100) if (rnd <= 49) return 'A'; if (50 <= rnd) return 'B' } } best regards

Views

62

Likes

2

Replies

3
Re: dataProvider valid data format - Adobe Target 09-08-2022
... var data = { "param1": "test", "param2": 123 } ... data = JSON.parse(data); // maybe this line helps callback(error, data); Maybe it is enough if you use JSON.parse. best regards

Views

35

Like

1

Replies

1
Re: Target Mbox call Issue - Adobe Target 09-08-2022
var segmentProvider = { name: "segmentProvider", version: "1.0.0", timeout: 1000, callback: null, provider: function (callback, params) { ... It is important that your API request is also ready before the callback is called. With the XMLHttpRequest this is for example onreadystatechange if (this.readyState == 4 && this.status == 200) is given. After that you can write e.g. a cookie or something into the localStorage. As I understand you, you want to read something from the localStorage. var data...

Views

25

Likes

0

Replies

0
Re: How can we create test which runs on pages from different domain? - Adobe Target 09-08-2022
Firstly, if you have Adobe Target Premium and with different workspaces - you need to assign the appropriate at_property ID for the respective workspace on the domains. It is important that the other domain is allowed under Administration > Hosts. Furthermore, cname can also become an issue (if you are working with it) that this is requested and configured accordingly for the other domain as well. best regards

Views

42

Likes

2

Replies

0
Re: Target Prehide Snippet Implementation via event listener to manage cookie consent - Adobe Target 08-07-2022
Basically you need a pre-hiding snippet if Target is loaded asynchronously. If this is the case then always use a pre-hiding snippet if the user has already agreed to the cookies.In case the user has not yet given consent - do not use a pre-hiding snippet. Wait for the event when consent is given. Then there are two options. Target will be loaded (here it depends on the page and how it is manipulated with Target - whether the user sees the "transition" or not - or you come up with something) or ...

Views

151

Like

1

Replies

3
Re: AB Testing - Split traffic by 50/50 - Adobe Target 11-03-2022
Exactly the allocation is generated - therefore no exact 50:50 number is possible in the evaluation. But the direction should already be correct, that it is approximately in this range users of the corresponding variant are allocated.

Views

165

Likes

3

Replies

0
Re: Can we pass multiple values as mbox parameter? - Adobe Target 10-03-2022
You can map such a validation via a ProfileScript. There you can create more complex queries and finally return true or false. Maybe this will help you.I myself would not need a list on either side. At least, I can't think of any current case - and if so, only with some special exceptions, where a list on the left and right would not be sufficient. Best regards

Views

219

Like

1

Replies

0
Re: How to find count/names of active running profile scripts in Adobe Target? - Adobe Target 16-02-2022
Hi @umamaheswariy46, I would actually also be interested to know if this is possible via the API. Because my knowledge is that Profile Scripts are not accessible via the API. So no automation can take place here. But I'm happy to be taught better.But yes it makes total sense to keep the profile scripts clean. So far I know only the manual way.

Views

207

Like

1

Replies

1