Displaying items by tag: enterprise architect 13

Thursday, 10 August 2017 12:17

Being Agile in an Agile World: BA LENS Article

Sparx Systems has been identified as an exemplar model regarding the firm's approach to Agile in an article published in the August issue of BA LENS online magazine.

BALens HeaderLogoThe feature highlighted that in order to fully understand Agile, an organisation needs to embed the principles of Agile into it's DNA.

"Sparx Systems has built the agile mindset into the organization’s culture and to the delivery of the recognized products they provide to their global network of users."

In partnership with the International Institute of Business Analysis, Sparx Systems released the Tools & Techniques for BABOK Guide v3, a digital reference for IIBA's Business Analysis Body Of Knowledge. Tools & Techniques for BABOK Guide v3 can be accessed freely via the new Pro Cloud Server, viewed on any mobile device browser.

babok dudeWith the recent inclusion of OSLC RESTful API within Sparx Systems products, and increasing number of web-based integrations will be available to users of Enterprise Architect, Web EA and Pro Cloud Server in the near future. The Beta release of Enterprise Architect 14, slated for late 2017, will prove to be another quality product as a result of Agile methodologies and best practices.

Read the article in full on IIBA's BA LENS website

Published in News

David Rubinstein, Editor in Chief at SD Times, recently interviewed Geoffrey Sparks regarding Enterprise Architecture and how effective collaboration platforms assist in delivery of business value.

industry spotlight article sd times july 2017

 

In this month's SD Times, Sparx Systems is in the industry spotlight, discussing the new Pro-Cloud Server, WebEA and RESTful API for OSLC, as well as the role of dynamic collaboration in digital transformation.

 

In the interview, Geoffrey Sparks, CEO of Sparx Systems, comments "The ability to dynamically create models, collaborate and integrate models over multiple domains and technical platforms is a remarkable and highly agile solution that has the capacity to radically improve the quality, accuracy and effectiveness of model-based project."

 

The article also calls attention to the collaboration between Sparx Systems and the IIBA, resulting in the development of a toolkit for IIBA's Business Analysis Body of Knowledge® (BABOK® Guide v3). On the collaboration Sparx Systems COO, Tom O'Reilly commented " It is the first time business analysis techniques have been actualized in this way and we are excited about the outcome."

 

Read the full article on the Sparx Systems website (PDF, 1.4Mb)

Published in News

YouTube Live Stream Webinar: Enterprise Architect 13 Highlights, Part 2ea13 webinar2 sqr

In our second installment of the Enterprise Architect 13 release series, we delve into some of the new productivity tools introduced in this major milestone release.

In this LIVE webinar session, you will learn how to:

  • Generate Dynamic Documents based on a selected Element
  • Undertake Parametric Simulation using SysML and OpenModelica
  • Publish models directly to Joomla!

We are trialling a new webinar technology based on YouTube Live streaming.

To access the webinar, simply visit and bookmark the webinar link below and return at your scheduled time.

Watch Now: Enterprise Architect 13 Highlights Webinar - Part 2

Published in Events

BBC Las Vegas 2016

 

Sparx Systems is proudly sponsoring the Building Business Capability (BBC) conference, the official event of the International Institute of Business Analysis (#IIBA) at Caesars Palace, Las Vegas, during Oct 31 - Nov 4.

The @BBCapability event provides attendees with insight into Business Analysis & Architecture, Business Rules & Strategy, plus Business Strategy & Transformation, in the pursuit of business excellence. A delegation from Sparx Systems will showcase the powerful Business Transformation features within Enterprise Architect.

Enterprise Architect posseses a powerful suite of features, specifically targetted at the Business Analysis profession - From the initial, yet critical Requirements Engineering stages of any project, through to Business Modeling, Business Process Simulation and onwards to Documentation.

Sparx Systems is also in partnership with the BBC event host IIBA, working closely with chapters and the core leadership team towards the provision of a reference model of the Business Analysis Body Of Knowledge (BABOK).

For more details about the BBC event, and Sparx Systems' involvement at the event, please visit the BBC website.

Published in Events
Thursday, 11 August 2016 02:25

Branch / Merge with EA V13

ae logoAnyone who has done code development in a team will be familiar with the idea of branching and merging. It’s a way to allow programmers to collaborate on a complicated set of code, without falling-over each other. Someone takes a copy (“branch”) of some code, modifies it, and merges it with the original copy when they are finished. Good code management systems help to see where their changes and those of others – who may have changed the same code - have caused problems, which is why branch/merge is how almost all coding teams work.

This is only important to EA modellers because it’s one of the most common requests we see from new EA users: – why can’t I do branch/merge with EA?

Up to now, the answer has been ‘because it’s hard’, and indeed a full branch/merge solution for EA would be way, WAY more complicated than one just for code, and therefore probably un-usable.

But can we get most of the benefits of a code-style branch/merge with EA, without a 100% fool-proof solution?

With EA v13 we may just have a solution: not a 100% solution, but one which has 10% of the function but which may deliver 90% of the benefits.

 

A real-life scenario

In a recent client engagement (details changed to protect the innocent) we had a small team of modellers (30+) working on a large but quite simply-structured model.

Let’s say they were writing Use Cases. What could be simpler?

For readers who don’t write use cases, replace ‘use case’ with your favourite EA element type (Requirement, Business Process, SysML Block – they all have the same issue).

Team #1 created:

 

model1

 

Team #2 then produced this:

model2

 

Let’s think about what Team#2 just created:

  • Team #2 have re-used ‘UseCase3’ from the team 1 model (you can tell from the namespace below it). What they wanted to say was ‘we’re using UseCase3 – the exact one which the other team modelled’ – so this is perfect.
  • But Team 2 also have an actor called Actor1. This doesn’t look to have been re-used from Team 1 – (clue: no namespace below it). It’s just a new Actor which happens to have the same name. So they created a new actor, called it “Actor1”, and started modelling.

Now my client spotted this one a mile away. Carrying on like this is going to cause huge problems down the road. They were predicting 80+ actors (real-life, individual roles) and if every team created their own duplicate with the same name, this would rapidly become chaos. They would lose the ability to say ‘what Use Cases does Actor1 get involved with?’ But which ‘Actor1’ are they talking about?

 

The “Master Elements” solution

So they did the smart thing, and created a master set of Actors, in a locked part of the model. And told teams to re-use those actors.

And replace any of their own duplicate versions of those actors with the master ones:

 

model3

 

The Team #1 model now looked like this:

 

model4

 

That means when we ask which Use Cases Actor1 is involved with (by the EA function ‘insert related elements'), EA tells us:

 

model5

 

…which is the combination of team#1 and #2s models, as they are both using the same Actor instances from the common set.

Much more useful – and the best argument for ‘why EA is 1000% better than Visio’.

So, problem solved? Well not quite.

These diagrams and documents which show ‘related elements’ are useful for understanding what happening in a project, so they started creating more of them, but started to get things like this:

 

model6

 

Now we can say this isn’t great use case practice, but it’s what happened when they enforced the ‘use the common actors’ rule. The master actors get connected to everything

  • completed use cases,
  • partially completed ones,
  • ... and ones which are just some ideas the modeller is playing with.

 

If I want to find out the use cases which really use Actor1, which have a status which means they are suitable for me to think about, then we need something in between the chaos of ‘invent your own’ and ‘always re-use’.

We need an intermediate state of ‘using Actor1’: something like – ‘I’m intending to use Actor1, but I’m not ready to tell the world what I’m doing’.

In the case of this customer – using EA12 – they had to create duplicate Actors with the same name, then, once they were happy, manually merge their ‘temporary’ and ‘reusable’ Actor1s. An alternative would be to give each Use Case a status, but this means we can’t use ‘insert related elements’ quite as simply.

So not a great solution.

 

Then along came v13

EA V13 has introduced the idea of ‘time-aware EA’. Looking past the rather grand title, it does provide a small amount of function which should make this problem a lot simpler.
So now, here is the same story, using EA V13.

  1. The first team creates their model as before, and, as today, adds their new Actors into the ‘shared actors’ - having first checked with the model manager that they haven’t been used before.
  2. The next team wants to use Actor1, but they aren’t ready to use the ‘real’ one: they will only do that once they have passed some future milestone.
    So they drop the shared ‘Actor1’ onto their diagram, then create a clone of it:
    model7
  3. Right-click on the actor, and select ‘Clone element as new version’. Note this is EA v13 function, not available in previous versions.
    Using numeric versions doesn’t seem useful here, as EA doesn’t check for duplicate version numbers, so we suggest using the name of the team, or some other string which lets people identify why this clone is being created:
    model8
  4. This diagram now looks like:
    model9
  5. To see the magic which EA has done in the background, try dropping the original Actor1 back onto the diagram:
    model10
    EA has created a new element, with all the same characteristics as the original, but with two differences:
    - it has a ‘version’ set to ‘Team 2’:
    model11
    And has a <<trace>> connector back to the original Actor.

    The nature of this connection is worth explaining:

     

    • In an EA diagram, it’s a dotted-line (“dependency”) with a stereotype of <<trace>>
    • In the EA traceability view, the connection is called “depends on”
    • In the EA database, and in eaDocX which use the EA API, the connector type is <<trace>> Abstraction

     

  6. With this simple technique, we can now have the best of both worlds:

    a. Team 2 can carry on modelling, adding whatever crazy stuff they need to add to their cloned Actor1, and ‘real’ Actor1 users won’t see it
    UNLESS

    b. Those users choose to follow the <<trace>> connector, and find whatever use cases Team 2 are working on.

    This is (fairly) easy using EITHER the EA traceability view:

    model12

    You just need to know that the <<trace>> connector which EA created when we cloned the Actor appears as a ‘needed by’ relationship in the traceability window. Here, there are two teams which have create clones of Actor1.

    OR

    c. Tools like eaDocX1 are OK to print ‘multi-hop relationships’ like this, in lots of different ways. For example, we can document the ‘master’ element and its related elements, then also its clones, and their related elements.

model table 

 

Note to Sparx Systems: Next Steps?

Now that we have this starting point, I’d like to suggest that we need some improvements to the EA UI which will allow us to go further:

  • Implement a simple ‘merge’ function to move all the connectors from a back-level element to a new one. Saves me having to drop old + new onto the same diagram, with ALL their connected elements, and move the connectors one at a time from old to new.
  • Better diagram filters to show/hide different versions more simply
  • Associating the current ‘version’ text field with something more interesting – another EA element e.g. an Archimate Plateau, or some other project-related ‘thing’, so that we can find out ‘all things associated with version X.Y’ without having to start writing SQL
  • Native EA support for the function that eaDocX lets us do already (as shown above): ‘show the clones for this element’, ‘show me what’s related to those clones’. These are now important functions, and shouldn’t need me to create a document to see them easily.

 

Conclusion

The V13 ‘time aware’ function is limited, but it is a start, and it does show the way to achieving what EA users have wanted for a long time – the ability to have multiple ‘versions’ of the same thing in a model at the same time.

This has many more implications for EA users, as it opens-up new ways of using EA. We can now allow teams to explore new ideas without messing-up the model for other uses, and keep track of those explorations using standard EA techniques.

 

 

 

 

Published in White Papers

In conjunction with the development of Enterprise Architect 13, the team at Sparx Systems have built on the extensive support currently available with the introduction of the new User Guide PDF Library, a completely revamped Learning Center and further refinement of the Enterprise Architect User Guide.

 

Enterprise Architect User Guide:

eaug screenshot

 

The Enterprise Architect User Guide was completely redeveloped in early 2016 to cater for complete online use; adopting a new, streamlined search and menu function enabled for easier access to the information required to facilitate more effecitve knowledge gathering.

Through extensive reseach and testing, the structure of content has also been updated to bring into line new features, reflecting the continual integration ethos central to the Sparx Systems philosophy.

While the majority of EA users have unrestricted access to the Internet to access the User Guide, thus being able to experience of an up-to-the-minute support resource, we have also recognized that some environments require a stand-alone version of the help system. For this purpose, an installable file is available to download and run on local machines.

Visit the Enterprise Architect User Guide: Click Here

Download the installer for a local version: Click Here

 

User Guide PDF Library:

pdf library

 

The User Guide Library is a new approach to providing essential resources to the EA community, each document has been produced from the extensive User Guide and delivered in the popular PDF format.

The library consists of 58 seperate documents, classified into 10 categories covering Fundamentals, Project Management, Simulation, Automation and more.

Visit the Enterprise Architect User Guide PDF Library: Click Here

 

Learning Center:

learning center

 

The Learning Center Library can be downloaded and added to Enterprise Architect for easy access to more than 4,000 pages of resources.

A complete installation guide is also available on the Library page.

Visit the Enterprise Architect Learning Center Library: Click Here

 

Published in News