1 / 64

Requirements engineering –IDY0201 lecture 5 Business process modeling Enn Õunapuu enn@cc.ttu.ee

Requirements engineering –IDY0201 lecture 5 Business process modeling Enn Õunapuu enn@cc.ttu.ee. Content. Oveall approach BPMN Examples. Model driven software engineering. Processaware information system Business process modeling. Business process modeling perspectives. Metamodel.

tanaya
Download Presentation

Requirements engineering –IDY0201 lecture 5 Business process modeling Enn Õunapuu enn@cc.ttu.ee

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Requirements engineering –IDY0201 lecture 5 Business process modelingEnn Õunapuuenn@cc.ttu.ee

  2. Content • Oveall approach • BPMN • Examples

  3. Model driven software engineering • Processaware information system • Business process modeling

  4. Business process modeling perspectives

  5. Metamodel

  6. Business process context

  7. Business process definition • The word “process” is defined in the dictionary as “a series of actions, changes, or functions bringing about a result”. • Martyn Ould: A process is a coherent set of activities carried out by a collaborating group to achieve a goal.

  8. Agenda for BPMN • BPM reference model • BPMN basic elements • Modelling methodology • BPMN diagramming style • BPMN practical patterns • BPMN-based modelling procedure • Evolution of BPMN • BPMN advanced use How to use BPMN for modelling business processes

  9. Context for BPMN • Ideally, one formal description of business processes • model in design • input for project planning and execution • executable program for coordination of work • documentation for all staff members • Explicit expression of coordination • Express relationships between BPM artefacts • Understandable by all staff members • A tool for communication • A tool for joint work of the business and the IT How to use BPMN for modelling business processes

  10. BPMN standard • An original development by Business Process Management Initiative to align modelling notations since 2000 • The primary goal – understanding by business stakeholders • OMG standard since 2005 • Current version 1.2 since Jan 2009 • Version 2 is under development How to use BPMN for modelling business processes

  11. Standards Timeline - Releases 1994 . . 1998 . 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 WfMC Ref Model XPDL 1.0 XPDL 2.2 WPDL XPDL 2.0 XPDL 2.1 BPMI BPMN 1.0 XML OMG BPMN 2.0 BPMN 1.2 BPMN 1.1 BPMN 1.0

  12. Agenda • BPM reference model • BPMN basic elements • Modelling methodology • BPMN diagramming style • BPMN practical patterns • BPMN-based modelling procedure • Evolution of BPMN • BPMN advanced use How to use BPMN for modelling business processes

  13. BPMN basic set shapes • 3 kinds of flow objects • Activity • Gateway • Event • 3 ways of connecting • Sequence flow • Message flow • Association • Two types of container • Pools • Lanes (swimlanes) How to use BPMN for modelling business processes

  14. Three types of coordination logic (1) • Template-based • static connection of “flow objects” or sequence relationship (predecessor and successor) • similar to a river (upstream and downstream) • process template is an abstract description of a process How to use BPMN for modelling business processes

  15. Three types of coordination logic (2) • Token-based • token marks elements which active at a particular time • dynamic connection of “flow objects” or synchronisation (wait for) / chronologic relationship • similar to a “flock” of ducks (split and join) • several tokens may co-exist How to use BPMN for modelling business processes

  16. Three types of coordination logic (3) • Instance-based • process instance is an enactment of a process template • each instance may have different behaviour of tokens • a process instance is completed when all tokens have been consumed • a process instance may start several instances of another process (although the latter is mentioned only once in the former) How to use BPMN for modelling business processes

  17. Event types • Start event produces a token • End (or finish) event consumes a token • Intermediate token means that something happened within a business process engine How to use BPMN for modelling business processes

  18. Event details • Too many events details • Recommendations to use: • Mainly “message” • Sometimes “empty”, “error” and “timer” Start message Throw message Catch message End message How to use BPMN for modelling business processes

  19. Event Details as Applied to Start, Intermediate, and End Events How to use BPMN for modelling business processes

  20. Simplest useful process • It has at least one activity! How to use BPMN for modelling business processes

  21. Parallel gateway • Activity02, Activity03 and Activity04 will be executed in parallel; the process will only be continued when each of them is completed • Logic of tokens is used How to use BPMN for modelling business processes

  22. Exclusive gateway • A single activity Activity02 or Activity03 or Activity04 will be executed. The choice is based on the logic defined within the gateway G01 • Logic of tokens is used How to use BPMN for modelling business processes

  23. Inclusive gateway • Several activities can be executed in parallel • It covers functionality of parallel and exclusive gateways • Logic of tokens is used How to use BPMN for modelling business processes

  24. Logic of templates vs. logic of tokens • Many tokens can pass the same activity How to use BPMN for modelling business processes

  25. Process fragments • Process fragment is a compound activity • Also called “sub-process” How to use BPMN for modelling business processes

  26. Repeatable process fragments (1) • Repeating conditions may be different in different systems How to use BPMN for modelling business processes

  27. Repeatable process fragments (2) • Be explicit within fragments; the exclusive gateway G01 which is used to specify two branches – one to continue the loop and one to exit it How to use BPMN for modelling business processes

  28. Process fragment as logical grouping • Catching errors and time-outs How to use BPMN for modelling business processes

  29. Handling of messages (1) How to use BPMN for modelling business processes

  30. Pool • A pool is a container for activities carried out by a particular participant in a process • Typically, a participant is • a role for a human activity • a service (or a process) for an automated activity How to use BPMN for modelling business processes

  31. Connectors • Flow connector represents the sequence of activities within the same pool • Message connection represents the communication between activities in separate pools How to use BPMN for modelling business processes

  32. Handling of messages (2) How to use BPMN for modelling business processes

  33. The full set of elements How to use BPMN for modelling business processes

  34. Agenda • BPM reference model • BPMN basic elements • Modelling methodology • BPMN diagramming style • BPMN practical patterns • BPMN-based modelling procedure • Evolution of BPMN • BPMN advanced use How to use BPMN for modelling business processes

  35. Sub- models There are three basic types of sub-models within an end-to-end BPMN model: • Private (internal) business processes • Abstract (public) processes • Collaboration (global) Processes How to use BPMN for modelling business processes

  36. Private Business Process How to use BPMN for modelling business processes

  37. Abstract public process How to use BPMN for modelling business processes

  38. Collaboration Business Process How to use BPMN for modelling business processes

  39. Example of unstructured BPMN How to use BPMN for modelling business processes

  40. Diagramming style in BPMN (1) • Horizontal vs. vertical timeline Timeline How to use BPMN for modelling business processes

  41. Diagramming style in BPMN (2) Participants How to use BPMN for modelling business processes

  42. Agenda • BPM reference model • BPMN basic elements • Modelling methodology • BPMN diagramming style • BPMN practical patterns • BPMN-based modelling procedure • Evolution of BPMN • BPMN advanced use How to use BPMN for modelling business processes

  43. Workflow patterns • Recent research work led by several universities has led to the identification of about 40 workflows patterns; used for comparison of different workflow engines • Visit http://www.workflowpatterns.com/ • Most of them are complex How to use BPMN for modelling business processes

  44. Anti-pattern PRFProcess Realisation Faked How to use BPMN for modelling business processes

  45. Pattern PPProcess Package • With a process instance we “carry” a package with • Business objects (by value and by reference) • Business documents (by value and by reference) • Key Performance Indicators (KPIs) • Audit trails • Comments • Local variables • etc. How to use BPMN for modelling business processes

  46. Agenda • BPM reference model • BPMN basic elements • Modelling methodology • BPMN diagramming style • BPMN practical patterns • BPMN-based modelling procedure • Evolution of BPMN • BPMN advanced use How to use BPMN for modelling business processes

  47. Principles of the modelling procedure • it treats human and automated activities equally • it is primarily for capturing the flow of control, and not for optimisation • it is a tool for both the business and the IT (maybe with coaching by a process architect/engineer) • it provides validation by simulation • it provides validation by quick prototyping – real services can be invoked • it is a visual programming approach How to use BPMN for modelling business processes

More Related