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: Remove Leading 0's from Alphanumeric String - Javascript - Adobe Campaign 17-02-2022
Hello @montezh2001 the type of your ''res'' variable is xml and the replace function works only on string variables. You have to convert your xml variable to a string one like this :var res = results[0].@image1.toXMLString(); result : Br, Amine

Views

302

Likes

0

Replies

4
Re: Send Email with dynamic table - Adobe Campaign 16-02-2022
Hello @Luca_Lattarini, You can not use querydef in your email. However you can achieve what you are trying to do by using the same method explained here. Br Amine

Views

316

Like

1

Replies

0
Re: Disable Audit Trial for One Schema - Adobe Campaign 15-02-2022
Hello @SushantTrimukheD, if you don't ask explicitly Adobe Campaign to add the audit trail (by adding "" in the schema) it won't do it. Br, Amine

Views

188

Likes

0

Replies

2
Re: Personalising Delivery with Custom Schema Data - Adobe Campaign 09-02-2022
Hello @davidh2892249 , Yes there is a better way, you can use the OOTB Personalization tab in delivery properties to query your schema,get the coresponding line for your delivery and store it in a Javascript object that you can use in your HTML : Br, Amine

Views

251

Likes

0

Replies

1
Re: Creating a custom channel in Adobe Campaign v7 - Adobe Campaign 08-02-2022
Aristide, Exactly. you can find Batch api doc here . Br, Amine

Views

184

Like

1

Replies

0
Re: NMSRECIPIENT.IRECIPIENTID Can we go negative ? - Adobe Campaign 08-02-2022
Hello @Prasanna_Soni, if it does not impact other applications around Adobe Campaign I do not see any inconvenience. Br, Amine

Views

233

Likes

0

Replies

0
Re: NMSRECIPIENT.IRECIPIENTID reset - Adobe Campaign 08-02-2022
Hello @Prasanna_Soni , The OOTB schema nms:recipient is set to use the sequence ''XtkNewId'' from table ''XtkNewId'' (yes the sequence and the table share the same name ). The default StoredProcedure that manage the sequences is set to loop back to negative idSeed if the current Seed is greater than 2 100 000 000 : So, theoretically you do not have to worry about it . P.S : all the above is true for an instance under the build 8984 using Microsoft SQL Server for database. last but not least, i w...

Views

178

Like

1

Replies

0
Re: Creating a custom channel in Adobe Campaign v7 - Adobe Campaign 07-02-2022
Hello @alepeculier, You can do this by creating a Javascript that overload the native "processDeliveryPart" function.Your Javascript should look like this : //------------------------------------------- //Overload Adobe Campaign Delivery Connector //------------------------------------------- function processDeliveryPart(deliveryPart){ for each ( var msg in deliveryPart.message ){ // do what you have to do with your message. i.e call Batch API to send message } }Then you should create a new Exte...

Views

202

Like

1

Replies

2
Re: Exclusion tab in delivery - Adobe Campaign 27-01-2022
hello @Diksha_Goel The "/ignored/humanFilter" node stores the "human-readable text" that will be displayed in the window : The "translatedExpr=" will try to translate this text to the instance language. Br, Amine

Views

138

Like

1

Replies

0
Re: How can I automatically select the workflow executioner as an Alert's assignee? - Adobe Campaign 25-01-2022
Hello @pau_izquierdo You can do this by forcing the "operator_id" to the id of the creator in the initialization script of the alert like this :activity.operator_id = instance.createdBy_idBr, Amine

Views

97

Likes

2

Replies

0