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

psheppar
psheppar
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
2

Likes Received

Likes Received
4

Posts

Posts
8

Discussions

Discussions
1

Questions

Questions
7

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by psheppar
Customize the badges you want to showcase on your profile
Re: Deleting Experience Fragment Offers - Adobe Target 05-10-2021
Hi, If you wish to delete Experience Fragment Offers after you have wiped you AEM instance, you will need to carry out the deletion via the Target API. https://developers.adobetarget.com/api/#delete-offer-by-id

Views

437

Likes

0

Replies

0
Re: How to customize the display style of data detail list - Adobe Campaign 17-12-2020
Hi, PshepparThanks for your answer. Yes, we do treat one column to a string. But our client seems not used to the number style, so we need to system scale config this style

Views

441

Likes

0

Replies

0
Re: Smartcase use in Transactional messages - Adobe Campaign 22-11-2020
@psheppar, made one small change so that it also works when someone writes its name in all uppercases. Works like a charm now. Thank you so much. String.prototype.toProperCase = function() { var words = this.split(' '); var results = []; for (var i = 0; i < words.length; i++) { var letter = words[i].charAt(0).toUpperCase(); var letters = ""; if(words[i].length > 1) { letters = words[i].slice(1).toLowerCase(); } results.push(letter + letters); } return results.join(' '); };

Views

1.4K

Like

1

Replies

0
Re: Generating and exporting HTML (including variables fr... - Adobe Campaign 18-11-2020
1. Design you query2. Add a javascript node to the end3. Create a loop in javascript to process the targetData in batches of say 1k, using queryDef method4. Script your content and write it to the local SFTP folder via javascript File object https://docs.adobe.com/content/help/en/campaign-classic/technicalresources/api/f-saveFile.html

Views

661

Like

1

Replies

0
Re: Move default tracking pixel - Adobe Campaign 02-03-2020
I too also had this issue and based on the solution provided previously. Create the following typology rule to automatically add the pixel just before the body tag to all email using the rule. if (delivery.targets.filteringSchema == "nms:recipient") {var html = delivery.content.html.source.toLowerCase().indexOf("");var openFormula = getOption('NmsTracking_OpenFormula');openFormula = openFormula.replace("$(urlId)","1");var pixel = openFormula;var newHTML = insert(html, pixel, delivery.content.htm...

Views

2.1K

Likes

0

Replies

0