Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

One Page multiple versions

Avatar

Level 6

I want to maintain single page with two or three different versions for corresponding publish instances. Example I want to maintain two different version of single page - for testing and development .I tried version for pages , but it automatically creates new versions for every publishing

1 Accepted Solution

Avatar

Correct answer by
Level 9

You can write a workflow processing step which will activate the page, however you have to set replication filter options to suppress creating versions


                    replicationOptions.setSuppressVersions(true);

View solution in original post

6 Replies

Avatar

Correct answer by
Level 9

You can write a workflow processing step which will activate the page, however you have to set replication filter options to suppress creating versions


                    replicationOptions.setSuppressVersions(true);

Avatar

Level 6

The problem with the versions is that , it creates a new version whenever a page is activated. I want to maintain single version for a particular publishing destination

Avatar

Level 10

According to the docs - the version is always incremented when the page is activated. I am looking to determine if there is a way to activate a page without incrementing the version.