cancel
Showing results for 
Search instead for 
Did you mean: 

my workflow error

adhi27
Champ in-the-making
Champ in-the-making
please help

i have an error in my workflow

2015-07-23 16:55:08,100  WARN  [repo.dictionary.DictionaryDAO] [http-apr-80-exec-9] Type not found: {http://www.alfresco.org/model/workflow/1.0}submitAdhocTask
2015-07-23 16:55:08,116  WARN  [repo.dictionary.DictionaryDAO] [http-apr-80-exec-9] Type not found: {http://www.alfresco.org/model/workflow/1.0}submitGroupReviewTask
2015-07-23 16:55:08,116  WARN  [repo.dictionary.DictionaryDAO] [http-apr-80-exec-9] Type not found: {http://www.alfresco.org/model/workflow/1.0}submitParallelReviewTask
2015-07-23 16:55:08,116  WARN  [repo.dictionary.DictionaryDAO] [http-apr-80-exec-9] Type not found: {http://www.alfresco.org/model/workflow/1.0}submitReviewTask
2015-07-23 16:55:08,116  WARN  [repo.dictionary.DictionaryDAO] [http-apr-80-exec-9] Type not found: {http://www.alfresco.org/model/workflow/1.0}submitGroupReviewTask


sorry bad english
8 REPLIES 8

rahulmackdani
Champ in-the-making
Champ in-the-making
Hi

It looks like your workflow content model has not been deployed properly.
Ref : http://docs.alfresco.com/5.0/topics/wf-deploy-taskmodel.html

Regards

adhi27
Champ in-the-making
Champ in-the-making


thanks for you info

and now my button assignee is missing in my workflow

do you now how to fix this error??

thanks
sorry my english so bad

rahulmackdani
Champ in-the-making
Champ in-the-making
Hi

You need to add "bpm:assignee" in your workflow task model and corresponding entry in share-config.xml.You can use OOTB workflow model files as a reference

Regards

adhi27
Champ in-the-making
Champ in-the-making
I've put bpm: assigneee in task models but still not work
whether you can provide examples To me?

Sorry bad english

Can you show your custom model and workflow files ? Some good examples can be found here: http://ecmarchitect.com/alfresco-developer-series-tutorials/workflow/tutorial/tutorial.html

This is my workflow and custom models

darkredd
Star Contributor
Star Contributor
Hi adhi27,

Your problem is with this code:

<namespaces>
  <namespace uri="http://www.alfresco.org/model/workflow/1.0"
   prefix="wf" />
</namespaces>

The namespace section in a custom model is where you put your own custom uri and prefix. What you have used there is an already OOTB alfresco defined uri. So my thinking is that Alfresco is now confused because of that. You need to define your own custom uri and prefix, e.g.
<namespace uri="custom.model" prefix="cust"/>


That should get your workflow going.

Please mark comment as useful if helpful.

adhi27
Champ in-the-making
Champ in-the-making
thanks you darkRedd
i will try