Hi,
I have custom workflow that is launched on asset creation. Though the workflow is completed i could still see it in instances.
When i open the history i could see that the workflow is completed.
Can you please let me know why is the workflow instance still in running status? Do i need to manually terminate them or do i need to include termination related code in custom workflow?
Arun Patidar / smacdonald2008 Can you please help me out on this ? I'm using AEM 6.4 version.
Solved! Go to Solution.
Views
Replies
Total Likes
Did you include the Workflow completed step as the last step?
Hi @jbrar,
Do i need to add this step as the last step in my custom workflow ?
If so i have added it and it makes no difference.
Can you please let me know how to add completion step to custom workflow?
Views
Replies
Total Likes
Hi Experts,
Can someone please guide me on this issue?
Views
Replies
Total Likes
Hi,
could you please share your workflow model?
Did you try to add DAM Update asset workflow completed step
you can get the step reference from http://localhost:4502/cf#/etc/workflow/models/dam/update_asset.html
Views
Replies
Total Likes
hi Arun,
In custom workflow , in the process step there is a check box named advance handler. i have checked it and now the workflow is not available in instances after completion.
Views
Replies
Total Likes
Hi Arun Patidar,
I'm now facing a different issue.
I have a metadata field name status, based on some conditions im changing the status value in the custom workflow code.
The workflow is not able to update the value of the field if rule set on field is disable edit.
I dont want user to manually edit this value, so i'm disabling it . Only workflow should be able to update the value.
What am i missing here? If the field is in editable state the workflow is able to edit the value.
Can you please let me know what am i missing here?
Views
Replies
Total Likes
check below ECMA reference code:
var workflowData = workItem.getWorkflowData();
if (workflowData.getPayloadType() == "JCR_PATH") {
var path = workflowData.getPayload().toString();
var jcrsession = workflowSession.getSession();
var node = jcrsession.getNode(path);
if (node.hasProperty("status")){
node.setProperty("status", "new Status");
node.save();
}
}
Views
Replies
Total Likes
Thank you for ur input Arun Patidar
I have already written the code to update the value. My question is
Since Status field value gets changed only by the workflow and shouldnot edited manually by the user i have added "disable edit" rule on the field. But now the workflow is not able to update the value. How do i make this field readonly in the UI but editable byt the workflow?
Views
Replies
Total Likes
Hi,
Javascript would help.
Example -
$('input.status').attr('readonly', 'readonly');
Views
Replies
Total Likes
Views
Likes
Replies