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

pierrec70731455
pierrec70731455
Offline

Badges

Badges
21

Accepted Solutions

Accepted Solutions
14

Likes Received

Likes Received
62

Posts

Posts
59

Discussions

Discussions
20

Questions

Questions
39

Ideas

Ideas
3

Blog Posts

Blog Posts
0
Top badges earned by pierrec70731455
Customize the badges you want to showcase on your profile
Re: Campaign Hirarchey - Adobe Campaign 21-05-2019
Hi,that's correct.Kr,Pierre

Views

1.5K

Likes

3

Replies

0
Re: SCM-120009 Key value is duplicated for elements 'Image (image)' - Adobe Campaign 21-05-2019
Hi,the only workaround I found was to reload some random HTML in the delivery and they load again the original HTML that was intended to be there.Kind regards,Pierre

Views

6.8K

Like

1

Replies

1
Re: Help using Subworkflows - Duplication of child workflow - Adobe Campaign 20-05-2019
Hi,you don't need to stop the first sub-workflow, if you intend on examining later on the temp:table of the failed activity. If you rerun your master workflow it will do so independently from your first failed sub-workflow.Kind regards,Pierre

Views

8.0K

Like

1

Replies

2
Re: Help using Subworkflows - Duplication of child workflow - Adobe Campaign 20-05-2019
Hi,the duplicates of subworkflows are only visible in the folder of the subworkflow template if there is an error in the execution of the subworkflow.Kind regards,Pierre

Views

8.0K

Likes

0

Replies

4
Re: Viewing deliveries by target data used (not delivery name) - Adobe Campaign 17-05-2019
Hi,Store your variable in the delivery variables (tuto) and then you can filter on the Value (text).Kind regards,Pierre

Views

2.4K

Like

1

Replies

0
Re: Split popolation - Adobe Campaign 16-05-2019
Hi Niels,could you give a bit more context?What are you trying to accomplish?Kind regards,Pierre

Views

1.1K

Likes

0

Replies

0
Re: File Update - Adobe Campaign 16-05-2019
Hi,if I understand correctly, you have a text file on your adobe campaign server and want to edit it from a workflow.If so you have a couple of ways to do this :you can use a script activity, check the the process error option and print vars.output in JS activities afterwards.to print long logs I like to use this :var lines = vars.output.split("\n");for each (var line in lines){ logInfo("" + line);}You can also do it all from a JS activity with execCommand (see API doc) : var result = execComman...

Views

1.9K

Like

1

Replies

0
Re: How to get an id of a newly inserted recipient in JavaScript - Adobe Campaign 16-05-2019
Hi,to complete kapscool's response, I don't think you get the rowid but THE (recipient) id with his methodvar recipient= nms.recipient.create( );recipient.save();logInfo(" Id of latest recipient added is "+ recipient["id"]);You can also use the NLWS create method (doc) :var recipient= NLWS.nmsRecipient.create( {recipient: { lastName: "Martinez", firstName: "Peter" }});recipient.save();logInfo(" Id of latest recipient added is " + recipient.id);Kind regards,Pierre

Views

614

Like

1

Replies

0
Re: I was facing a QUOTED COMMAND RETURN ERROR in the file transfer activity in import workflow - Adobe Campaign 16-05-2019
Hi Vishnu,could you check the option "Display the session logs" in the "Advanced parameters" of your File Transfer Activity, run your workflow again and show us the logs?Kind regards,Pierre

Views

731

Like

1

Replies

0
Re: Installing the server - Adobe Campaign 15-05-2019
Hi,I'm not sure I understand. do you want to install the server application or the client application?If it's the former then I would recommend asking your admin to get it for you on https://support.neolane.net/ in the Download Center section. For more details on how to install the application server, here are the official documentation Installing the server and a tutorial https://blog.floriancourgey.com/2019/01/installing-adobe-campaign-locally .If it's the latter, I would again suggest contact...

Views

624

Likes

3

Replies

0