121 Posts
Use Javascript libraries in Adobe Campaign (MomentJS, Lodash..)
Ever wanted to use MomentJS or Lodash in your JS scripts? Itβs easy to include them via a CDN for client-side web apps, but it can get tricky to get...
Module Login as customer in Prestashop 1.6, 1.7
With this module, as an admin you are now able to login as a customer in order to make orders, payments and edits to his profile. Source code included, open...
Adobe Campaign input Form helper
Curated list of XML codes example for your input form in Adobe Campaign 7 with actual business cases.
Text file splitter JS (Adobe Campaign)
Splits a text file into multiple chunks based on number of occurences found (e.g. split an XML file every 50 <node>
), with configurable prefix (e.g. <xml><nodes>
)...
Use queryDef and NLWS, the Database toolkits in Adobe Campaign (SQL/JSON/XML)
Use quick and reliable Adobe Campaign methods such as NLWS.nmsDelivery.load("12435")
, NLWS.nmsRecipient.create({ firstName:"John" })
and build complex XML E4X queries to go in details!
Modern web development in Adobe Campaign
Adobe Campaign documentation is great to build 2-3 web apps. But itβs absolutely not scalable in case you need to develop 25-30 web apps with a lot of assets (CSS,...
How Web Apps work in ACC (and ctx variable)
The context variable ctx
is really handy when it comes to have custom behaviors in an Adobe Campaign web app. Sadly, thereβs not a lot of documentation about...
Call another workflow in Adobe Campaign
This tutorial will walk you through setting up a workflow1
calling workflow2
upon completion. Also contains business cases (wait for multiple workflows to complete), and exception...
Sub-workflow activity in Adobe Campaign
Your workflows contain too many activities? Youβre lost between your jumps, transitions and end activities? Consider using a sub-workflow with the tutorial below. This way, you can have workflows as...