SimonRinguette / bpswg

Automatically exported from code.google.com/p/bpswg
0 stars 0 forks source link

implementer's guide 1.0.2 examples - a couple of errors #150

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Sirs, 

recently I have been working with the examples contained into Implementer's 
Guide 1.0.2, and I think I found two errors.

- File LoanProcess v 1.0.bpmn, starting from line 499:

                    <bpsim:ElementParameters elementRef="_BAE2D4BB-902F-4C3C-AF76-A0CABBA9A7AE">
                        <bpsim:TimeParameters>
                            <bpsim:ProcessingTime>
                                <bpsim:TriangularDistribution max="6" min="4" mode="5"/>
                            </bpsim:ProcessingTime>
                        </bpsim:TimeParameters>
                        <bpsim:ControlParameters>
                            <bpsim:InterTriggerTimer>
                                <bpsim:TriangularDistribution max="6" min="4" mode="5"/>
                            </bpsim:InterTriggerTimer>
                        </bpsim:ControlParameters>
                    </bpsim:ElementParameters>

The referred element is an Event, so it cannot have a processing time.

- File Technical Support Process v 1.0.1.bpmn, starting from line 902:

                    <bpsim:ElementParameters elementRef="resource_Front_Office">
                        <bpsim:TimeParameters>
                            <bpsim:WaitTime>
                                <bpsim:ResultRequest>sum</bpsim:ResultRequest>
                            </bpsim:WaitTime>
                            <bpsim:ProcessingTime>
                                <bpsim:ResultRequest>sum</bpsim:ResultRequest>
                            </bpsim:ProcessingTime>
                        </bpsim:TimeParameters>
                        <bpsim:ControlParameters>
                            <bpsim:TriggerCount>
                                <bpsim:ResultRequest>count</bpsim:ResultRequest>
                            </bpsim:TriggerCount>
                        </bpsim:ControlParameters>

The referred element is a Resource, so it cannot have a TriggerCount 
ResultRequest.

Original issue reported on code.google.com by shinob...@tiscali.it on 28 Oct 2014 at 3:42