how to activate page with out create version in author instance | Community
Skip to main content
Level 2
September 13, 2017
Solved

how to activate page with out create version in author instance

  • September 13, 2017
  • 14 replies
  • 6086 views

when we do modifications in page activate page it will be creating version.

Is it possible disable version when we activate page.

To configure the Version Manager PID com.day.cq.wcm.core.impl.VersionManagerImpl

versionmanager.createVersionOnActivation (Boolean, default: false)

if we click uncheckbox, when activate page i am able to disable versions. but above one will be affect all projects.

Any other way do disable versions for specific Project?

below thing also creating versions

by programatically

replicator.replicate(session, ReplicationActionType.ACTIVATE,pagepath);

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by joerghoh

As eduby mentioned, use an instance of the class ReplicationOptions[1] as parameter to Replicator.replicate(...), and call

setSuppressVersions(true).

Jörg

[1] ReplicationOptions ("The Adobe AEM Quickstart and Web Application.")

14 replies

smacdonald2008
Level 10
September 13, 2017

See if this Support KB helps you -- Disable versioning

Level 2
September 13, 2017

Thank for reply Scoot,

     I don't want create versions when page activate through Siteadmin or Activation page Workflow.

I am  Using Out-of-the-Box (OOB)  create version workflow i need to create versions.

/jcr:system/jcr:versionStorage/d1/11/0d/d1110d19-3387-47bb-a9ca-86a58978239c/1.0

smacdonald2008
Level 10
September 13, 2017

So you want to write code that is invoked from a custom WF step that actives a page without creating a version on that page?

Level 2
September 13, 2017

replicator.replicate(session, ReplicationActionType.ACTIVATE,pagepath);

i  write this in my workflow Processs step ,but version generated.

how i need to activate only page?

smacdonald2008
Level 10
September 13, 2017

We do not have a HELPX article on this. It would make a good article however.

Looking at community articles on this subject -- like this

How to programmatically activate CQ Page - Sothea Nim

and the Javadocs - like here Replicator (Adobe CQ 5.6.1 Java Documentation 5.6.1 API)

I am not seeing an option to turn off version when you replicate a page via code.

If other community members have - please post here.

Level 2
September 13, 2017

thanks scoot

if any update please let me know

smacdonald2008
Level 10
September 13, 2017

This thread has brought to my attention that we need a HELPX article on How To replicate AEM pages via code. Thanks!

edubey
Level 10
September 13, 2017

Hi,

You can configure versioning from Day CQ WCM Version Manager
I haven't used it but this is what i found, give it a try

By looking at API docs, you see setSuppressVersions(boolean suppressVersions) , try to set it with true

Create a new ReplicationOptions and set this in replicate(Session session, ReplicationActionType type, String path, ReplicationOptions options) .

Thanks

joerghoh
Adobe Employee
joerghohAdobe EmployeeAccepted solution
Adobe Employee
September 13, 2017

As eduby mentioned, use an instance of the class ReplicationOptions[1] as parameter to Replicator.replicate(...), and call

setSuppressVersions(true).

Jörg

[1] ReplicationOptions ("The Adobe AEM Quickstart and Web Application.")

September 21, 2017

You have to create your Own replication options. Then you can use the Replicator for replication .

Sample code.

Step 1 -  Prepare the Replication option to send without version

ReplicationOptions opts = new ReplicationOptions();

AgentIdFilter filter = new AgentIdFilter(PROMOTE_AGENT);

opts.setFilter(filter);

opts.setSuppressVersions(true);

Step 2 -  Use the replicate method for replication

replicate(Session session, ReplicationActionType type, String path, ReplicationOptions options)