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: How could I create new output columns for Recipients... - Adobe Campaign 17-05-2021
Hello Andre Gonzalez, I'm not sure to understand exacly what you need, but to add some extra info to the recipient schema, you need to extend the builtin nms:recipient schema : https://experienceleague.adobe.com/docs/campaign-classic/using/configuring-campaign-classic/editing-schemas/extending-a-schema.html?lang=en#configuring-campaign-classicWhen done, if you want to give access to the new attribute (or column), you'll have to edit the associate form (nms:recipient), but be carrefull, this form...

Views

280

Like

1

Replies

0
Re: PDF Link Attachment Issue - Resources - Online - Publ... - Adobe Campaign 17-05-2021
Hello,I'm not 100% sure but I think that deleting a file ressource from the public ressources view (xtk:fileRes) doesn't really delete the file from the server.If you have an access to the publishing server, you can try to delete the file into the folder (the one with a md5 name, you can see it in the url link). If not, you have to ask to the support to do it for you.The next time, if you need to delete a file (but it is not recommeded to delete a ressource you share to your recipient in a mail ...

Views

454

Likes

2

Replies

0
Re: Jump activity , Explicit is taking to another page bu... - Adobe Campaign 17-05-2021
Hello Prasanna Soni,Can you provide more infos about the error you see ?Have you verified that the targeted webapp has been published ? I'm not sure but I think this could be the problem : if a webapp is not published, you cannot reach it from another one ? Thank,Cedric

Views

280

Likes

0

Replies

0
Re: Identifying long running waits/workflows - Adobe Campaign 17-05-2021
Hello Walf, Just keep in mind that if a workflow is in "stand by" (wait activity), even if it is marked as "running", it doesn't mean that a server process (runwf) is running ! A waiting workflow with a scheduler or wait activity is just awake when necessary.You can verify this with one particular attribute of the xkt:workflow schema : the @processId. This is the identifier of "runwf" process on the machine (the one you could use to kill a proces, with "kill -9 processid" command for example). I...

Views

912

Like

1

Replies

3
Re: Remove a recipient from a list from a list from workflow - Adobe Campaign 12-05-2021
Hello SorenDahk, You can try to use the "Unregister" method of nmsGroup object with a JS.As it is not a static function, you have to load your list and then remove your element with a query (this is not well documented in the JSAPI, I had to do some test) :var listId = listId; //You have to know your list ID var recipientId = recipientId //You have to know your recipient (or what you want to delete from list) ID var myList = NLWS.nmsGroup.load(listId); //Load the list myList.Unregister( );//Rem...

Views

481

Like

1

Replies

2
Re: Custom Named Right for Workflow xml Edit. - Adobe Campaign 12-05-2021
Hello Deb007, you can also put a custom form for a particular activity : the @form attribute of an activity define the form to use when editing. You can build your own form and specify this one for your activities, with the "HasNamedRight" xtk expression to help ?

Views

704

Likes

0

Replies

0
Re: How to track workflow from being edit? - Adobe Campaign 11-05-2021
Hi XyNaiz, I'm not expert on this but you can try to get a look at the nms:operation form maybe ? I know this one is the view of your operation, an the container with name="sc_workflow" seems to be the workflow view you're looking for (but I can be totaly wrong). Remember, you can use the leave tag on input, subform etc.

Views

317

Likes

0

Replies

0
Re: Delivery weight arbitration in prepared deliveries - Adobe Campaign 06-05-2021
Hi Stefan, Maybe you can try to use workflows with schedulers or waits : you can prepare the delivery as you did before, then wait with a scheduler or wait activity. When pressure rules have been applied on the 3 deliveries, you can add another delivery activity, but this time, you have to choose the delivery with "Specified in the transition" to confirm the delivery automaticly. Could it be a solution ?

Views

472

Likes

0

Replies

0
Re: Delivery weight arbitration in prepared deliveries - Adobe Campaign 05-05-2021
Hello Stefan, my bad I didn't see what action you performed on the devliery activity.The way you are doing things now is for developpement and test purpose, but if you want to be sure that the delivery is sent in "production mode" (i.e automatically), you must select "Prepare and send" action in the delivery activity form. Otherwise, the delivery will stand in "preparation" mode and you will have to validate it manually each time.If you need to delay the send, you can also change the [scheduling...

Views

503

Likes

0

Replies

0
Re: Delivery weight arbitration in prepared deliveries - Adobe Campaign 05-05-2021
Hello Stefan, You can look at the properties pannel of the delivery, the second tab "Analyse", you should find a "Validation" part. In this part, a field "Validation mode" is available, and this one must be set to "Automatic" (or somtehing like that) but not "manual".If it was in manual mode, it could be the reason why the delivery didn't send. Cedric

Views

520

Like

1

Replies

4