Hello,

I have some problems with reports in publisher. I imported some of them from Aris Architect. I was aware of restriction an that couple of them won't work.

But i dont know why  StartNodeList()  always show 0 . (the same script work in Architect and does not in publisher)

I tried BPMN 1.x and BPMN 2.0 

 

for(var i1=0; i1<p_aModel.length; i1++) {
             
                if (p_aModel[i1].BuildGraph(true)==true)
                {
                      
                    
                    for (var j=0; j<startObjects.length ; j++)
                    {
                        
                        if (!alOut.contains(startObjects[j].ObjDef()))
                        {
                           
                            alOut.add(startObjects[j].ObjDef());
                            funcBPMN[funcBPMN.length]=startObjects[j];
                        }
                        succ(p_aModel[i1], startObjects[j]);
                    }
                }
                  
            }

i added to  "file imported'  CommonUtilis.js and convertertools.js

 

 or register to reply.

Notify Moderator