Leiste mit Community-Erfolgen erweitern.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.

GELÖST

List all locked pages

Avatar

Level 2

Hi,

Is there a way to list all the pages locked in AEM? One of the common issues we have is people forgetting to unlock their pages. The idea is if they have a page where they can monitor all the locked pages, whether by the user or everyone, they'll be able to unlock them sooner.

Thanks

Amin

1 Akzeptierte Lösung

Avatar

Korrekte Antwort von
Level 10

When a page is locked - it has this prop:

Lock.png

What you can do is write a QueryBuilder query to fetch all pages in the AEM JCR that are locked - similiar to this: Get list of Activated or Deactivated Pages in CQ

Lösung in ursprünglichem Beitrag anzeigen

4 Antworten

Avatar

Korrekte Antwort von
Level 10

When a page is locked - it has this prop:

Lock.png

What you can do is write a QueryBuilder query to fetch all pages in the AEM JCR that are locked - similiar to this: Get list of Activated or Deactivated Pages in CQ

Avatar

Level 2

Thanks for the reply Donald. So I followed your suggestion and used query builder and was able to see all the locked pages in the site. I wrote it like this:

path=/content/website

property=jcr:content/jcr:lockIsDeep

property.value=true

The right side returns a list of all locked pages. I'm trying to figure out how to get it to display the author who locked the page. I can tell that the property is held in "jcr:lockOwner". Is there a way to display that as part of the query?

Avatar

Level 10

Using the Page API, you can get this information - see: Page (Adobe CQ 5.6.1 Java Documentation 5.6.1 API)

Avatar

Level 2

Ok if I understand, this means I have to write code to get this working. It can't be done using the query builder available in CRX. In that case, I am going to have to find a tutorial somewhere for this, my knowledge is very limited.

Thanks again Donald.