Not allow Workflow creation while page is blocked | Community
Skip to main content
November 26, 2018
Solved

Not allow Workflow creation while page is blocked

  • November 26, 2018
  • 5 replies
  • 3344 views

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.

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 arunpatidar

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

5 replies

smacdonald2008
November 26, 2018

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

naxtyn_Author
November 26, 2018

I'm using Touch UI

smacdonald2008
November 26, 2018

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.")

naxtyn_Author
November 26, 2018

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

arunpatidar
Community Advisor
arunpatidarCommunity AdvisorAccepted solution
Community Advisor
November 26, 2018

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