Expand my Community achievements bar.

Radically easy to access on brand approved content for distribution and omnichannel performant delivery. AEM Assets Content Hub and Dynamic Media with OpenAPI capabilities is now GA.
SOLVED

Workflow error

Avatar

Level 4

Hi Team

After running one workflow i have got the following error. I have also searched for the component "com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep" in OSGI component console but there i am not able to find it.

 

Can anyone help here to resolve this issue.

com.adobe.granite.workflow.WorkflowException: Process implementation not found: com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep
	at com.adobe.granite.workflow.core.job.HandlerBase.executeProcess(HandlerBase.java:204)
	at com.adobe.granite.workflow.core.job.JobHandler.process(JobHandler.java:260)
	at org.apache.sling.event.impl.jobs.JobConsumerManager$JobConsumerWrapper.process(JobConsumerManager.java:502)
	at org.apache.sling.event.impl.jobs.queues.JobQueueImpl.startJob(JobQueueImpl.java:293)
	at org.apache.sling.event.impl.jobs.queues.JobQueueImpl.access$100(JobQueueImpl.java:60)
	at org.apache.sling.event.impl.jobs.queues.JobQueueImpl$1.run(JobQueueImpl.java:229)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
	at java.base/java.lang.Thread.run(Thread.java:834)
1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Following OSGi component: com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep must be part of a specific OSGi bundle , please check that whether bundle is in active state or not.

 

If that bundle is in resolved or installed state then you won't be seeing com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep in /system/console/components

View solution in original post

5 Replies

Avatar

Employee Advisor

Following OSGi component: com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep must be part of a specific OSGi bundle , please check that whether bundle is in active state or not.

 

If that bundle is in activate state , then disable component [com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep , via OSGI component console] -> enable -> trigger workflow

 

Hope this will help.

Avatar

Level 4

I have tried to search this in component console but not able to find. What does it mean? 

Avatar

Correct answer by
Employee Advisor

Following OSGi component: com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep must be part of a specific OSGi bundle , please check that whether bundle is in active state or not.

 

If that bundle is in resolved or installed state then you won't be seeing com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep in /system/console/components

Avatar

Community Advisor

Do not create java package in caps

trying changing from 

com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep

to 

com.demoapp.infra.core.dam.workflow.ValidateAssetMetadataStep



Arun Patidar