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: How to proof test a continuous delivery ? - Adobe Campaign 15-05-2019
Hi Anushka,eventhough your final delivery will be a reccuring one, as Jon said you can use a regular delivery for your tests and proofs. For the classic deliveries that you will link to your templates, you can use the custom additional/target data of your seed addresses.Could you share a printscreen of your workflow, because I'm not sure I understand how you use just 1 recurring delivery for all 50 delivery templates at ones in a single workflow?!?If you are that determined to test all 50 delive...

Views

12.1K

Like

1

Replies

0
Re: I was facing a QUOTED COMMAND RETURN ERROR in the file transfer activity in import workflow - Adobe Campaign 14-05-2019
Hi,could you provide maybe a bit more context? maybe a printscreen of the settings of your file transfer activity and also from its logs?Kind regards,Pierre

Views

536

Like

1

Replies

0
Re: How to proof test a continuous delivery ? - Adobe Campaign 14-05-2019
Hi,when you say you have 50 delivery templates to test, do you mean 1 delivery template to test with 50 variations of personnalization?or 50 different delivery templates that should each be testing with some personnalization?If it's the former you don't have a choice and need to configure 50 deliveries for your proof testing.One handy trick you could use to gain some time, is to create a bunch of seed address templates.You can also for each of them encode the additionnal data and target data.Aft...

Views

12.1K

Like

1

Replies

0
Re: DayOfYear Query returns two days - Adobe Campaign 14-05-2019
Hi Bruno,my bad I got confused with the sql name tsBirthdate The reason why your method doesn't work is because of leap years.there are as many days from 01/01/1948 to 13/05/1948 as from 01/01/1942 to 14/05/1942 because of the 29th of February.I recommand extracting the day in the month and the month and comparing it to the current day and month.Kind regards,Pierre

Views

592

Likes

2

Replies

0
Re: DayOfYear Query returns two days - Adobe Campaign 14-05-2019
Hi Bruno,the birthdate being a datetime, did you try casting the birthdate to a date with ToDate(@birthday)?Kind regards,Pierre

Views

528

Likes

0

Replies

0
Re: How to dynamically set an "Asignee" in the Alert activity - Adobe Campaign 13-05-2019
Hi,in the Advanded tab you can use the activity object to set the assignee :activity.assigneeType=0;activity.assignee_id=108275955;assigneeType = 0 means Group and assigneeType = 1 is an Operator.Kind regards,Pierre

Views

803

Like

1

Replies

2
Re: Tooltips in ACC - Adobe Campaign 13-05-2019
Hi,there is a backcolor="tooltip" attribute for containers and textAlign="toolTip" for inputs of type="flatSubFormButton".I personnaly use a static field of type="help" next to the input field that needs the tip :Kind regards,Pierre

Views

1.2K

Likes

2

Replies

0
Re: QueryDef inside componment after a split - Adobe Campaign 06-05-2019
Hi,if I understand correctly, you want to dynamicaly get the temp schema of the previous activity/activities. If so, here is how I would implement it :var schemaName = vars.targetSchema.substr(vars.targetSchema.indexOf(":")+1);logInfo(schemaName);var xml = ;var query = xtk.queryDef.create(xml).ExecuteQuery()[schemaName];vars.results = query.toXMLString();logInfo("vars.results : " + vars.results);Kind regards,Pierre

Views

5.7K

Likes

0

Replies

0
Re: How to set conditions for a delivery(nurture campaign) which is not sent yet? - Adobe Campaign 03-05-2019
Hi,it seems like you arer trying to do some sort of A/B testing Kind regards,Pierre

Views

5.0K

Likes

2

Replies

1
Re: Update columns having a composite primary key - Adobe Campaign 02-05-2019
Hi,in the doc (Elements and attributes : element) it explicitly says :"A key is known as composite if it includes several fields (i.e. several children). Do not use a composite key to define a primary key."I would recommand using the autopk="true" and a creating a unique index constraint for the fields you wanted as a composite primary key : Kind regards,Pierre

Views

4.2K

Likes

2

Replies

2