Reputation: 11
I'm an intern and I use bpmn with swim lanes to model a solution. How can I represent a database update when a user completes a task.
Upvotes: 1
Views: 428
Reputation: 73587
It depends on what you're modeling:
maintain the vendor account
, the user may interact with a system that will at some moment update the database; but these implementation details are not useful to your model. They would only make the diagram more complex to read and distract the business users.Here how the BPMN standard defines them:
A DataStore provides a mechanism for Activities to retrieve or update stored information that will persist beyond the scope of the Process. The same DataStore can be visualized, through a Data Store Reference, in one or more places in the Process.
Upvotes: 0