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

DavidKangni
DavidKangni
Online

Badges

Badges
32

Accepted Solutions

Accepted Solutions
175

Likes Received

Likes Received
307

Posts

Posts
412

Discussions

Discussions
33

Questions

Questions
379

Ideas

Ideas
2

Blog Posts

Blog Posts
1
Top badges earned by DavidKangni
Customize the badges you want to showcase on your profile
Re: Where is active Bug list for build 9346 - Adobe Campaign 16-02-2022
Usually, you don't have access to these issue. NEO-XXXXXThey are fixed in the future releases and you will be able to find them in the latest release notes That being said, you can open a support ticket and Adobe will let you know the fix for your issue or provide a patch for your build if it exists. Thanks,David

Views

151

Likes

4

Replies

0
Re: How to make new RT Events show in template? - Adobe Campaign 16-02-2022
Hi Darren, You just have to disconnect and reconnect to your instance for the creation to be effective .Thanks,David

Views

169

Likes

0

Replies

1
Re: Send Email with dynamic table - Adobe Campaign 16-02-2022
try this Code Description<% var query = xtk.queryDef.create( ).ExecuteQuery(); for each (var record in query ) { vars.code=record.code; vars.desc=record.desc; %> <%= vars.code %> <%= vars.desc %><% } %> Thanks,David

Views

309

Like

1

Replies

0
Re: how do we implement Field Level Encryption in Adobe campaign table - Adobe Campaign 14-02-2022
use ACC cryptsting() or import a crypto js libraryThanks,David

Views

164

Like

1

Replies

1
Re: How to check the API functions definition? - Adobe Campaign 11-02-2022
it's a jssp function 

Views

347

Likes

0

Replies

1
Re: How to check the API functions definition? - Adobe Campaign 10-02-2022
Hi XL, You can find all ACC functions in the API documentation.If not, it's probably a local function used in one of the OOTB JS libraries

Views

365

Likes

0

Replies

3
Re: How to identify users who have not changed their password in last 3 months in Adobe campaign classic ? - Adobe Campaign 10-02-2022
Hi, If you're not using LDAP or Adobe IMS then last modified from operator table is the only way to achieve it.Thanks,David

Views

242

Like

1

Replies

0
Re: After Upgrade to 9346 , web app upload file is Broken - Adobe Campaign 09-02-2022
Following Adobe Flash Player EOL, some reporting functionalities are no longer available.Please see here how to create/update your report.

Views

70

Like

1

Replies

0
Re: How to translate small piece of content within email template body - Adobe Campaign 25-10-2021
try this Last day of the month is: <% function daysInMonth(today) { return new Date(today.getFullYear(), today.getMonth(), 0).getDate(); } function month_fr(today){ var monthFr = ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Aout", "Septembre", "Octobre","Novembre","Décembre"]; var thisMonthFr = monthFr[today.getMonth()]; return thisMonthFr.toString(); } var today = new Date(); %> <%= daysInMonth(today) %> <%= month_fr(today) %>, <%= formatDate (today, "%4Y") %>

Views

338

Likes

2

Replies

1
Re: How to translate small piece of content within email template body - Adobe Campaign 18-10-2021
Hi,You will need to import a javascript library such as moment js and call this js in your deliveries. you can find an example here Thanks,David

Views

361

Likes

2

Replies

6