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

CedricRey
CedricRey
Offline

Badges

Badges
27

Accepted Solutions

Accepted Solutions
38

Likes Received

Likes Received
76

Posts

Posts
118

Discussions

Discussions
10

Questions

Questions
108

Ideas

Ideas
7

Blog Posts

Blog Posts
0
Top badges earned by CedricRey
Customize the badges you want to showcase on your profile
Re: Preview of content using jssp - Adobe Campaign 26-05-2021
Hello Jonas,Are you able to preview these content in the console, via the publishing ? Can you try to use the ncm.publishing.TransformFromId method ? In this case, you"ll have to give the ncm:publishing name (ns:name format) but also, the model name from the publishing (the one you gave in the Transformation models part, when you setup the type of tranformation (xsl or jst), the output format and then the XSL or JST to use) and for the third parameter, you have to give the content in a particula...

Views

566

Likes

0

Replies

6
Re: Write quaratine to Message Center Execution instance - Adobe Campaign 25-05-2021
Hello PLundmark, I'm very interested with your question : it could be relevant to do what you intempt ! Specialy with spam trap.And what I see with your code is good to me, you seem to do it right.But I'm affraid that is not possible : I'm not surprised to see that you don't have the right to write datas from mkt instance, for evident security reasons. One thing to know : the quarantine / nms:address are handle by the Message Center instances. So if someone attemps to send real time messages to ...

Views

473

Likes

2

Replies

3
Re: How to handle file import if the content of a column... - Adobe Campaign 25-05-2021
Hello, I'm not an expert, but I remember that Excel has a specific process for this case : it double the double quote : for example 'This IS a " quote' will be 'This IS a "" quote'. ACC doesn't not handle this ?

Views

276

Likes

0

Replies

0
Re: Identifying long running waits/workflows - Adobe Campaign 25-05-2021
Hello Walf, Yes, you are right about the temp tables. The thing is : if you'll need the data/ informations from those tables later, it's normal to keep them. If not, you have to think in the conception of the workflow : ACC will delete all the uneeded temporary table. If you put correct "end" activities in the right place, the temporary table will be deleted, even if the workflow is up and will be awaked later. Also, be sure to unchek the option that keep temporary table : Properties -> General ...

Views

859

Likes

0

Replies

0
Re: More than simple input for responding a question / thread into the Adobe forum - Community Help and Feedback 25-05-2021
Hi Darren,I agree with you and this is the only way (has I often do).But by this way, the notification recieved into the mail box is not complete (and I recevied some "Hi " messages with nothing more, because even if you push Enter, it submits the message :)) ).Thank you for your interest. This is not a primary question, it's not so important.Cedric

Views

214

Likes

0

Replies

0
Re: Enumeration in webapps - Adobe Campaign 21-05-2021
You're welcome. Also, if you need to load more than one enum, the code is incomplete (because each query will have the same element name "enumValue-collection". If needed :myResult1 = new XML( domainsQuery.ExecuteQuery().toXMLString() ); myResult1.setName('myResult1'); //this is the real root element name to give to the "options Xptah" instead of "enumValue-collection" as I did before ctx.myValues1 = myResult1; ... another query... myResult2 = new XML( anotherQuery.ExecuteQuery().toXMLString() )...

Views

892

Likes

0

Replies

0
More than simple input for responding a question / thread into the Adobe forum - Community Help and Feedback 21-05-2021
Description -When we want to respond to an answer (or thread, I don't know how it names), there is only a simple text input, without possibility to format the text (no line break, no paragraph, quote etc.)Why it's important to you :Because I'd like to give more precision without editing the text after submition How :Giving a real text area, with editing options, the same as when we answer a question.I guess someone else gave this idea before.Thank you,Cedric

Views

242

Like

1

Replies

2
Re: Enumeration in webapps - Adobe Campaign 21-05-2021
Here it is :JS Script :var enumId = 123456789 //xtk:enum ID var domainsQuery = NLWS.xtkQueryDef.create({ queryDef : { schema : "xtk:enumValue", operation : "select", select : { node : [ {expr:"@label"}, {expr:"@name"} ] }, where : { condition : [ {expr : "[@enum-id] = " + enumId } ] } } }); ctx.domains = new XML( domainsQuery.ExecuteQuery().toXMLString() );Parameters init context :Init : From context,options XPath : [enumValue-collection/enumValue]label XPath : @labelvalues XPath : @name You can...

Views

907

Likes

0

Replies

0
Re: Enumeration in webapps - Adobe Campaign 21-05-2021
Instead of "toSource()", can you try to use "toXML()" ? But also, I'm not sure of what it loads, I'm affraid that xtk:enumValue are not loaded. I'll check and tell you, but I pretty sure that's possible.

Views

931

Likes

0

Replies

0
Re: Comparison between ACC V6 vs V7 vs V8 - Adobe Campaign 21-05-2021
Hello,As the V8 is not available, it will be difficult to give some feedback.Also, when you say difference between V6 and 7, you have to know that there is much moredifferences between v6.0 and V6.1 than between 6.1 and 7.The higher the version is, longer the support will be. I don't know how many time you'll have support for 6.11 (I suppose that the 6.0 is no more supported).With 6.11 and 7, the security has improved, new functionnalities/connectors etc., some APIs are deprecated (for example y...

Views

719

Likes

2

Replies

0