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

Amine_Abedour
Amine_Abedour
Online

Badges

Badges
19

Accepted Solutions

Accepted Solutions
15

Likes Received

Likes Received
27

Posts

Posts
34

Discussions

Discussions
1

Questions

Questions
33

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Amine_Abedour
Customize the badges you want to showcase on your profile
Re: Best method to setup UTM parameters - Adobe Campaign 20-06-2022
Hello @dipendu_g,You can do what you want to do by modifiying the ''NmsTracking_ClickFormula'' option.It should look be something like this : Br, Amine

Views

300

Likes

0

Replies

13
Re: How does temp table schema work? - Adobe Campaign 17-06-2022
Hello @ac_developer, I understand what you are trying to do, and i've been looking for a way to accomplish it, but to no vail.The workaround that i've found is to create the fields that you want to add to your temp table in an enrichment with empty data before the JS, then update them via JS. Br,Amine

Views

142

Like

1

Replies

0
Re: Regarding fetching new data - Adobe Campaign 13-06-2022
Hello @Mrityunjay, Use Enrichment activity to add a link to recipient : after that use this link to filter your work table so as to keep only the records with empty or null recipientId. Br, Amine

Views

95

Like

1

Replies

1
Re: Opt out or unsubscription link - Adobe Campaign 06-06-2022
Hello @Manpreet1, You can use ''Service and Subscriptions" for this.Here is the link to documentation : https://experienceleague.adobe.com/docs/campaign-classic/using/sending-messages/subscriptions-and-referrals/about-services-and-subscriptions.html?lang=en step 1 : create a service for your product (something like ''interested in product X'')step 2 : create a webapp that unsubscribe recipient from this servicestep 3 : subscribe all your first target to this service and launch the campaign with ...

Views

97

Like

1

Replies

0
Re: Change MaxRetry for specific type of sendout - Adobe Campaign 31-05-2022
hello @MartinViking, Your sqlExec is weird, to call a variable in sqlExec you have to write "$(variable type)" : https://experienceleague.adobe.com/developer/campaign-api/api/f-sqlExec.html?hl=sqlexec In your case it should be : sqlExec("UPDATE NmsDelivery SET iMaxRetry=$(l) WHERE iDeliveryId=$(l)"... $(l) with the letter "L" not with the number "1" The second thing that does not make sense in you query is that you match the iDeliveryId with record.$maxRetry.It should be the record.$deliveryId. ...

Views

76

Like

1

Replies

1
Re: Workflow Activity Execution Order - Adobe Campaign 24-05-2022
Hello @Zamwize, You can 'trick' Adobe by adding empty Js activities like this to manipulate the order: result: Br,

Views

211

Likes

2

Replies

1
Re: Query add data: Calculating a number that should be a floating point evaulates to 2 zeros as decimals - Adobe Campaign 24-05-2022
Hello @SorenDahk ,it's because SQL performs integer division.you have to ''trick'' sql into thinking that on your division ther is at least one float.Try this : ToDouble(151)/7 or this with your formula : Ceil(ToDouble((WeekDay(GetDate())+1 + DayOfYear(GetDate()))) / 7)results : Br,

Views

82

Like

1

Replies

1
Re: Get Rewarded! Announcing the Top User for February 2022 - Adobe Campaign 15-03-2022
Hello @Sukrity_Wadhwa, Thank you for your encouragement.Br, Amine

Views

209

Like

1

Replies

1
Re: Javascript xtk.session.Write - Data not updating - Adobe Campaign 15-03-2022
Hello @montezh2001, I see two issues in your xtk.session.Write, the "vars.targetSchema" should be " {vars.targetSchema.split(':')[1]} ", and the identifier used to update your rows. As i understand from your request, the identifier of your temporary table is "clientId" and not "id", so your script should look like this :var query = xtk.queryDef.create( //or any identifier of the workflow's temporary table ); var results = query.ExecuteQuery(); for each( var tmp in results){ var res = tmp.@...

Views

621

Likes

0

Replies

12
Re: Remove Leading 0's from Alphanumeric String - Javascript - Adobe Campaign 19-02-2022
@montezh2001, Something like this would work for you :var query = xtk.queryDef.create( //or any identifier of the workflow's temporary table ); var results = query.ExecuteQuery(); for each( var tmp in results){ var res = tmp.@image1.toString(); res = res.replace(/^0+/,''); xtk.session.Write(<{vars.targetSchema.split(':')[1]} _operation="update" _key="@id" xtkschema={vars.targetSchema} id={tmp.@id} image1={res}/>); // update each row of your temp schema with the right res }No need for Enrich...

Views

272

Likes

0

Replies

1