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: Update contents of field of type Cdata with JavaScript Activity - Adobe Campaign 31-05-2022
Hi @Dandrews2 In the JS activity I suppose you update your data with the xtk:session.Write method. Can you check the schema of the data you want to update please ?The "filed" you try to update could be declared as an element and not an attribute.In this case, you have to update it with a sub element and not a simple string / integer / boolean ://E4X way, with XML notation xtk.session.Write( MY NEW DATA ); //JXON way, with JSON notation xtk.session.Write({ mySchema : { xtkschema : "cus:mySchema" ...

Views

81

Like

1

Replies

1
Re: Union All - Adobe Campaign 30-05-2022
Hi @Klaster If you speak about a workflow, you have the UNION activity :But the datas source must be the same type. For example you can't union deliveries and recipients (you'll get an error).If the datas are the same type (if it is not but linked, you can try to use the "Change Axis" activity to get same type) you'll get all the line in the output transition. Cedric

Views

118

Like

1

Replies

2
Problem with emoji in mData (XML memo) of delivery (DB : Oracle, instance on Linux / CentOS) - Adobe Campaign 30-05-2022
Hi all, We have a problem while putting specials characters in deliveries content source. We paste raw Emojis in HTML source (this is not the final goal, we are developping Mobile Push custom channel, but the problem is exactly the same), we are able to save the delivery first. But then, the delivery is unusable : it's impossible to open it, send it etc.This is because the engine have problem with the XML processing :I've made several tests :- Try to put emoji in the label attribute. The label a...

Views

122

Likes

0

Replies

3
Re: Package Import Error: the package version is different from the instance. - Adobe Campaign 30-05-2022
Hi @alexcroker I already had this situation : the version attribute doesn't matter, and even with a 7.0 instance you'll get this "6.7" value, this is normal.The problem is on the buildNumber value. You may have 2 differents instances with 2 differents build, and this must be the cause of the error.If the 2 instances have near version number, the solution (but not very convenient) is to change manually this buildNumber value in the XML package. Put the target build number instead and that should ...

Views

75

Like

1

Replies

0
Re: Can't write rows from external account via http soap request - Adobe Campaign 17-05-2022
Hi @MartinviGustaf , What do you mean by "external account" you created ? If it's "nms:externalAccount" object, this is not for your need. The external accounts are the objects that allow to configure several way to connect Adobe Campaign to external systems (MID sourcing, FTP, HTTP, POP3, extenal Databases etc.). Those are not the account to use for action or SOAP Call to Adobe Campaign ACWhat you need to use Soap Call is an operator (xtk:operator). You'll find this in Administration/Access man...

Views

110

Likes

2

Replies

0
Re: Deployment steps for Adobe Campaign - Adobe Campaign 14-05-2022
Hi,here is the first page of the install doc https://experienceleague.adobe.com/docs/campaign-classic/using/installing-campaign-classic/deployment-types-/about-deployment-types.html?lang=enyou can use the navigation menu you’ll find what you need.Cedric

Views

138

Like

1

Replies

0
Re: Import data that allows numeric negative values - Adobe Campaign 13-05-2022
Hi @cwhite3 Just tried exactly as you describe and it works, got all my negative floating value in the output transition.Can you check if there is no space or exotic negative character in your imported file ? It looks like a problem in the input file.I suggest to try with a blank new file, putting yourself some negative and floating values in a unic column, just like I did. Cedric

Views

113

Likes

0

Replies

0
Re: How to load associated deliveries for any given campaign in a Query activity - Adobe Campaign 13-05-2022
Hi @sirikambampati You can try to use the Change Axis activity. Query all the campaign or operation, the place a "change axis" activity, select the orange (if you have V7 instance) link named "Deliveries" in the targeting Document, and be sure to select the second option "keep all records".This way you shoud get all deliveries of all the campaigns / operations you got. Cedric

Views

159

Like

1

Replies

2
Re: Personalization variable in Delivery - Adobe Campaign 11-05-2022
Hi @J2021 this is not an option, it come as it. But if you don't see it, it can be explained (as it must be opened from the workflow, the context is passed thru the forms and something can be lost).Another thing : to be sure that "targetData.salutation" is available on the delivery, can you force an alias in the query/enrich activity where you got this field ? Just put "@salutation", and check it in the workflow flow by pausing the delivery (right click on the deliv activity, "Activate but don't...

Views

186

Like

1

Replies

0
Re: Unable to load a new .js file of type xtk:javascript..... failed to load the js library error - Adobe Campaign 11-05-2022
Hi @PoonamBhardwaj it seems that you forgot the extension in the name of your library (first screen)The library seems to name 'arc:fulfilment_js' but it should be named 'arc:fulfilment_js.js'. Every Javascript should have this extension in the name.As this name is unique, when you'll try to rename it, it will create a new one. Don't forget to delete the old one Cedric

Views

133

Like

1

Replies

1