Is it possible, when activating a page via a Workflow, create a version but use a custom Label and Description? By default my understanding is that when you run a page through a Workflow and Activate the page then a version is automatically created but auto increments the version label (#) and doesn't allow adding a custom description for the label.
Solved! Go to Solution.
Views
Replies
Total Likes
As smacdonald2008 had mentioned you can create a custom workflow step instead of using the ActivatePageProcess:
1. Create the custom workflow step as documented here.
2. Call the Replicator service's method Replicator.replicate and set ReplicationOptions.setSuppressVersions(true)
3. Now the activation itself won't create the version, in your custom code before calling Replicator.replicate you can call PageManager.createRevision to instead create a version of the page with your custom label.
Views
Replies
Total Likes
To get more detail into a Replication Workflow - you can look at writing a custom AEM workflow step. Then within the custom step - use the Replicator ("The Adobe AEM Quickstart and Web Application.") API. Notice the parameter based on the ReplicationOptions object. Notice that you can set options using this object.
Views
Replies
Total Likes
As smacdonald2008 had mentioned you can create a custom workflow step instead of using the ActivatePageProcess:
1. Create the custom workflow step as documented here.
2. Call the Replicator service's method Replicator.replicate and set ReplicationOptions.setSuppressVersions(true)
3. Now the activation itself won't create the version, in your custom code before calling Replicator.replicate you can call PageManager.createRevision to instead create a version of the page with your custom label.
Views
Replies
Total Likes
Excellent response!
Views
Replies
Total Likes
Thanks for the information all, much appreciated.
Views
Replies
Total Likes
Views
Likes
Replies