Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Not allow Workflow creation while page is blocked

Avatar

Level 2

Hi there,

I'm doing a custom implementation of a workflow. The request is when a user has blocked the page where he/she is working the creation of a workflow should not be able.

Our workflow process needs to block that page, but it could not be blocked while is already blocked by other user.

Do you guys know any approach on how we can handle this?

Regards.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi,

There is no OOTB functionality but you can implement your own.

You can ask user to lock page if they are working.

and check whether page is locked by same user or other user user while creating workflow by making Ajax call to your servlet which will return true or false based on state of page and display popup message.

For hint you can check Restricting a page to be subjected to workflow only once at a time in AEM 6.3



Arun Patidar

View solution in original post

5 Replies

Avatar

Level 10

Are you using Touch UI or Classic UI to invoke the workflow?

Avatar

Level 10

With Touch UI - you are correct - you can run a workflow on a page - even if its a payload on another workflow. To block a workflow on a page that is already subject to a workflow - you would need to write a custom service using this API -- WorkItem ("The Adobe AEM Quickstart and Web Application.")

Avatar

Level 2

I got it, but isnt there an out of the box option if the page is blocked by an user? Not another workflow process?

Avatar

Correct answer by
Community Advisor

Hi,

There is no OOTB functionality but you can implement your own.

You can ask user to lock page if they are working.

and check whether page is locked by same user or other user user while creating workflow by making Ajax call to your servlet which will return true or false based on state of page and display popup message.

For hint you can check Restricting a page to be subjected to workflow only once at a time in AEM 6.3



Arun Patidar