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
I do not know of a global setting, but if you this is for a single schema, you can add an expression which converts the value to a string, then this will have the effect off removing the seperators. ToString(@id)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> </HEAD> <BODY> <P>POC Proper Case Test</P> <% 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()...
You will need to add the toProperCase() to your template body as shown, then use the second example to implement, this should propercase as you require
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/te...
Hi, I think the confusing thing here is the person answering previously is making the assumption that you have a custom personalisation block on your instance called "toSmartCase" which is likely not available on your installation. What they have done is created a personalisation block external to ...
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.toLowerC...