Enterprise Architect. User Guide Series. Testpoints. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Size: px
Start display at page:

Download "Enterprise Architect. User Guide Series. Testpoints. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH"

Transcription

1 Enterprise Architect User Guide Series Testpoints Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH

2 Table of Contents Testpoints 3 Test Domain Diagram 7 Test Cut 9 Test Set 10 Test Suite 11 The Testpoints Window 12 Testpoints Toolbar 14 Testpoint Editor 16 Testpoint Constraints 18

3 Testpoints Testpoints present a scheme by which constraints and rules governing the behavior of objects can be taken from the model and applied to one or more applications. The advantages schemes such as this offer are tolerance to code changes - adding and subtracting lines from a function has no effect on the constraints that govern it. Another advantage is that changes to the behavioral rules do not require a corresponding change to any source code; meaning nothing has to be re-compiled! Also, the ability to verify multiple applications using a single test domain is a simple rather than onerous matter. The Test Domain is a both a logical and relational model; constraints in the Class model can be partitioned with Test Cuts. These can be aggregated simply into Test Sets and Test Suites using connectors. Due to the decoupling of the Test Domain from the codebase, it is a simple choice of buttons to run a program normally, or run it for a specific Test Domain. This system also delivers practical benefits in that no instrumentation is required at all. Test results are displayed in the report window during the run, in real-time, as the program runs. These results can be retained, and reviewed at any time in the Test management window Alt+3 or using EA's documentation features. Features Feature Testpoint Composition Details Testpoint composition is performed using the Testpoint Window. The Testpoint Window is context-sensitive and displays the Test Domain for the selected element in either the Project Browser or diagram. Selecting a single Class will display the Class structure. A 'pencil' icon is displayed against Classes and methods that have existing constraints. When you select a Test Cut, Set or Suite Test, the Testpoint window displays the entire Domain structure including all the Classes that make up the domain. Note: You can navigate the domain hierarchy using the 'Navigation' pane on the right. Testpoints are composed as expressions using the variable names of the Class members. The intelli-sense shortcut Ctrl+Space is available within the editor to help you find these. Expressions that evaluate to True are taken to mean a pass. Returning False is taken to mean a fail. (c) Sparx Systems Page 3 of 21 Created with Enterprise Architect

4 You can add or edit an existing Invariant by double-clicking the Class. You can add or edit an existing pre- or post-condition similarly by double-clicking the method. Double-clicking a Testpoint will automatically display the source code if it is available. Line conditions are best added from within the code editor using its shortcut menus. This image is of a pre-condition in the above Test domain. Testpoint Trace Statements Test Domain Composition Each Testpoint can have its own Trace statement. The Trace statement is a dynamic message that can reference variables in its object or local scope. They are output during the evaluation of a test. They can be configured to be output every time a constraint is evaluated, or more usually when a test has failed. Trace statements can be directed to the 'Testpoints' tab of the System Output Window, or to an external file. You can configure this in any Analyzer Script. The Test Domain diagram is a dynamic medium where Testpoints are assembled to test Use Cases. Use Cases in a Test Domain diagram are provided in three different (c) Sparx Systems Page 4 of 21 Created with Enterprise Architect

5 stereotypes: Test Cut, Test Set and Test Suite. Management of the domain is as easy as modeling on any diagram. The toolbox and shortcut menus provide access to any Test Domain Artifacts. In brief, Testpoints from multiple Classes are aggregated into Test Sets. Test Sets are then linked to form Test Suites. Both Test Cuts and Test Sets are re-usable assets. Linking the same Test Set to the one or more Test Suites is a matter of drawing connectors. «testset» Sell Stock «testcut» Sell Account «testcut» Sell Broker «testcut» Sell Stock Account Broker Stock Test Domain and the Class Model Rarely would a Use Case involve all the methods of a single Class. Most likely it is realized using a variety of methods from collaborating Classes. We call this subset of methods a cut and the Test Cut Artifact is the tool we use to make these cuts. The Testpoint Window will adapt depending on the context, be that a Test Domain or Class element. This image shows the Testpoint window when a Test Cut has been selected. Note the checkboxes. These are only visible for a Test Cut. They denote the methods (Test Cut) which are contributing to a Test Set. In this example the Test domain was generated by the Execution Analyzer, which did the method identification work for us. Testpoint Evaluation The Testpoint window is used to evaluate Test domains. The window has a toolbar for starting or attaching to the target application. The domain to test is always reflected by the element that has context, so if you select a Class the window will show only the Class structure and Testpoints of that Class. If you select a Test Suite, the window will display the entire domain hierarchy and all the Testpoints included in it. Clicking on the Run button will load the Testpoint domain in the Execution Analyzer, which will then evaluate, collect and update the report window as Use Cases pass or fail each test. The exact details of each constraint type and the (c) Sparx Systems Page 5 of 21 Created with Enterprise Architect

6 when and how of that constraint's capture are: A Class Invariant is evaluated by the Analyzer whenever any method called on an object of this Class type is completed; the invariant serves to test that the state of a complying object is both known and permitted Pre-conditions are evaluated immediately before an operation is called Post-conditions are evaluated (at the same time as a Class invariant) when the method is completed Line-conditions are evaluated if and when their specific line of code comes into scope during program execution (c) Sparx Systems Page 6 of 21 Created with Enterprise Architect

7 Test Domain Diagram The Test Domain diagram is the medium where you assemble and group test cases for a particular domain. An example of a Test domain might be 'Customer'. The breadth and depth of the domains you assemble is up to you. You might have separate domains for 'Add Customer' and 'Delete Customer', depending entirely on how you consider best to balance the domain hierarchy. The diagram toolbox and shortcut menu provide a number of Artifacts to help model the domain. Because the medium is dynamic, allowing you to revisit and build on relationships between Test domains, the system is a great model for delivering reusable assets to a organization that are low overhead and integrate with both the UML view of the world, and the Software Engineering nuts and bolts of daily life. Facilities Facility Test Domain Generation Details If you think the process of composing a Test Domain is complex, it can be, but help is at hand! The Execution Analyzer can produce a Test Domain diagram for you. It cannot write the Tests for you, but it can do some of the leg work. It can identify the Classes and pick out only those methods that participated in a Use Case. And this is not guesswork. The Analyzer Test Domain is obtained from a running program. This image shows the Test Domain generated by the Execution Analyzer from recording an Example Model program. «testset» Buy Stock «testcut» Buy Sector «testcut» Buy Broker «testcut» Buy Stock «testcut» Buy Account «testcut» Buy Exchange And this is the recording itself (as a Sequence diagram) from which the Test Domain was generated. Broker: Broker Exchange.Exchange Exchange.Stock: Stock Exchange.Account: Account Exchange.Sector 1.0 Buy(1, 2, 100): bool 1.1 FindAccount(1): Account* 1.2 FindStock(2): Stock* 1.3 GetStockVolume(): UINT 1.4 GetStockCost(): FLOAT 1.7 GetSector(): ESector 1.5 GetBalance(): INT 1.6 Credit(2, 100, - 100) 1.8 UpdateSector(secEquities, 100) 1.9 GetSector(secEquities): Sector* 1.10 Move (100) Sequence diagram generated in Enterprise Architect using recording marker in a Use Case The first task on a Test domain diagram is to create the Use Cases (Test Sets). (c) Sparx Systems Page 7 of 21 Created with Enterprise Architect

8 Test Domain Composition These define this particular domain's responsibility. The Diagram Toolbox and shortcut menu provide Artifacts to help you achieve this. The first of these is the Test Cut and this is used in the next step; identifying those methods (from the class model) that you consider to be participants in the Use Case. The Test Cut Artifact is useful because its allows us to partition a Class, selecting only those methods which are relevant. Test Cuts can be run individually or link to one or more Test Sets. Test Sets in turn can be linked to one or more Test Suites. In any case, any element of the Test domain tree can be run individually or as a whole. «testsuite» Trade Stock «testset» Buy Stock (from Buy) Test Set generated from recording history of Exchange:Buy Use Case «testset» Sell Stock (from Sell) Test Set generated from recording history of the Exchange::Sell Use Case (c) Sparx Systems Page 8 of 21 Created with Enterprise Architect

9 Test Cut Description A Test Cut element is a stereotyped Object element, used internal to Enterprise Architect for defining test sets using the Testpoint code testing facilities. A task, such as 'Print', might involve operations on different Classes. In order to create a 'Print' test, you would want to include only the 'Print' operations of these Classes and exclude any other operations. A Test Cut enables you to capture only the operations that represent the behavior (in this case, 'Print') defined for a single Class. You might then place the Test Cut from each of several Classes into a single task as a Test Set. When you drag a Test Cut element onto a Test Domain diagram, you create a Dependency relationship with the required Class element. As a result, when you select the Test Cut element on the Testpoints Window, the operations of the Class are listed in the window, each with a checkbox. You then select the checkbox against each Class operation to include in the Test Cut. Toolbox icon (c) Sparx Systems Page 9 of 21 Created with Enterprise Architect

10 Test Set Description A Test Set element is a stereotyped Use Case element used to aggregate one or more groups of methods (Test Cuts), which perhaps span multiple Classes, into a single task. Test Sets can also be aggregated into Test Suites. You link the Test Cut elements to the Test Set using Dependency connectors. Toolbox icon (c) Sparx Systems Page 10 of 21 Created with Enterprise Architect

11 Test Suite Description A Test Suite element is a stereotyped Use Case element, used to aggregate one or more groups of tasks (Test Sets). You link the Test Set elements to the Test Suite using Dependency connectors. Toolbox icon (c) Sparx Systems Page 11 of 21 Created with Enterprise Architect

12 The Testpoints Window The Testpoints Window is the hub where Test Domain constraints are composed. It is also the control that lets you verify a particular Test Domain on a program. The program might be already running or it can be launched using the control's Toolbar. Here you will also be able to see the results of your tests, as they happen. This control is context-sensitive, responding to the selection of elements in the Project Browser or on a diagram. Depending on the selection, tests can be carried out on a single class, a Use Case (Test Set) or a collection of Use Cases (A Test Suite). Access Ribbon Execute > Analyze > Testing > Show Testpoints Window Testpoint Window Columns Column Tests Usage Displays the name of the selected Testpoint object and the hierarchy of objects beneath it. The selected object can be a: Class Operation Test Cut Test Set or Test Suite Id For an Operation, this column shows a Testpoint marker icon ( ) when the Analyzer has successfully bound this operation in the target application. If no icon appears in this column during a run, it indicates that the model and code base might not be synchronized; perhaps the signature of the function has changed, or the operation is a new method you are working on, that exists in the source code but not yet in your model. For a Testpoint, this column shows a generated id number. This id number is used in trace output to indicate which constraint is being referenced. Constraints A pencil icon ( ) in this column indicates that one or more constraints are defined for this Class or Operation. Status During a test run, indicates these possible statuses: ( ) Failed - Constraint has evaluated as false one or more times. ( ) Invalid Statement - Constraint failed to parse due to invalid syntax. ( ) Variable not found - A referenced variable name was not found at the location where the constraint was evaluated. No icon is shown if a constraint has Passed. (c) Sparx Systems Page 12 of 21 Created with Enterprise Architect

13 Evals Passes Fails Last Run By Last Run Date Last Run Result Parent Collections Pane During a test run, indicates the number of times the Execution Analyzer has evaluated this constraint. During a test run, indicates the number of times the test passed. During a test run, indicates the number of times the test failed. Displays the username of the last person to run this test. Displays the date and time this test was last evaluated. Displays the result of the last test run. Lists any parent collections that include the selected object as part of their design. Double-click this collection to make it the selected object in the left pane. The Parent Collections pane can be hidden by clicking the Show / Hide Parent Collections pane button on the Testpoints Window Toolbar. (c) Sparx Systems Page 13 of 21 Created with Enterprise Architect

14 Testpoints Toolbar The Testpoints Window Toolbar provides options to execute configured tests on the currently selected Testpoint object, stop a test run currently in progress, filter the displayed items, and save the results of a completed test run. Access Ribbon Execute > Analyze > Testing > Show Testpoints Window Testpoints toolbar options Toolbar Button Action Field showing the name of the currently selected Testpoint object. Execute the test run. Stop the test run currently in progress. Toggle between showing all items and showing only those items that have constraints defined. Toggle between showing all items and showing only operations that have been marked for inclusion in this Test Cut; this button is only enabled when a Test Cut object is selected. When a Test Cut is selected, each of the operations of its associated Class are displayed with a checkbox; you use this checkbox to mark the operations that apply to this Test Cut. Click on the drop arrow next to this icon to display the 'Test Run Options' menu, providing these options: 'Prefix Trace output With Function Call' - Prefix all trace output lines with the executing function name 'Enable Standard Breakpoints during Testing' - When not checked, the test run ignores any breakpoints in the current breakpoint set, and any attempts to set breakpoints during the run are ignored 'View Trace output' - Display the 'Testpoints' tab of the System Output window Click on this icon after completion of a test run to save the results to Test item on the current object. Saved tests can be viewed using the Testing Workspace. A prompt displays to select the Test Class - Unit, Integration, System, Inspection, Acceptance or Scenario. Select the appropriate Test Class and click on the OK button. (c) Sparx Systems Page 14 of 21 Created with Enterprise Architect

15 Display the Testpoint Management Help topic. Show or hide the Parent Collections pane. (c) Sparx Systems Page 15 of 21 Created with Enterprise Architect

16 Testpoint Editor The Testpoint Editor is used to compose constraints for Classes and Operations. The types of constraints permitted are dependent on the selected object. For Classes, the type will always be Invariant. For operations, the type can be either Pre-Condition, Post-Condition or Line-Condition. Invariants are evaluated by the Analyzer when any method called on an object of the selected Class type completes. Pre-conditions are evaluated at the beginning of each call to the specified operation. Post-conditions are evaluated upon completion of each call to the specified operation. Line-conditions are evaluated each time the specified line of code is executed. Access Ribbon Execute > Analyze > Testing > Show Testpoints Window : Double-click on a Class or Operation in the Testpoints window Constraint Group fields Field Type Offset Condition Action on Fail Evaluate When Usage The type of constraint for the selected Class or Operation: Invariant - Evaluated after any method called on the specified Class has completed Pre-Condition - Evaluated at the beginning of each call to a specific Operation Post-Condition - Evaluated after completion of each call to a specific Operation Line-Condition - Evaluated upon execution of a specific line of code within an Operation For Line-Conditions only, the Line number within the specified operation upon which to evaluate the constraint. An offset value is automatically set if the Testpoint was created using the Code Editor context menu. The constraint to be evaluated when this Testpoint is triggered. A status of pass or fail will be recorded depending upon whether this constraint condition evaluates as true or false. Click on the drop-down arrow and select from the three options: 'Continue' - ignore failure of this constraint and continue execution 'Break execution' - halt execution and display the Stack trace 'Disable on fail' - do not execute the constraint again after failing once (Optional) An additional constraint which must be met before the main Testpoint Condition is evaluated, providing greater control over test coverage. (c) Sparx Systems Page 16 of 21 Created with Enterprise Architect

17 Trace Group fields Option Level Action Specifies when the trace statement (if defined) will be output. Available options are: 'Fail Only' - Output trace statement only when this Testpoint condition fails 'Always' - Output trace statement every time this Testpoint is evaluated Statement (Optional) A message to be output when this Testpoint is evaluated. Variables currently in scope can be included in a trace statement output by prefixing the variable name with a $ token for string variables, or token for primitive types such as int or long. Output from a Trace Statement can be directed either to the 'Testpoints' tab of the System Output Window, or to an external file, as configured by the Analyzer Script for the parent Package. (c) Sparx Systems Page 17 of 21 Created with Enterprise Architect

18 Testpoint Constraints A Constraint is typically composed using local and member variables in expressions, separated by operators to define one or more specific criteria that must be met. A constraint must evaluate as true to be considered as Passed. If a constraint evaluates as false, it is considered as Failed. Any variables referenced within the constraint must be in scope at the position where the Testpoint or Breakpoint is evaluated. General/Arithmetic Operators Operator Description + Add Example: a + b > 0 - Subtract Example: a - b > 0 / Divide Example: a / b == 2 * Multiply Example: a * b == c % Modulus Example: a % 2 == 1 () Parentheses - Used to define precedence in complex expressions. Example: ((a / b) * c) <= 100 [ ] Square Brackets - Used for accessing Arrays. Example: Names[0].Surname == "Smith". Dot operator - Used to access member variables of a Class. Example: Station.Name == "Flinders" -> Alternative notation for the Dot operator. Example: Station->Name == "Flinders" Comparison Operators Operator Description = Equal To (c) Sparx Systems Page 18 of 21 Created with Enterprise Architect

19 Example: a = b == Equal To Example: a == b!= Not Equal To Example: a!= b <> Not Equal To Example: a <> b > Greater Than Example: a > b >= Greater Than or Equal To Example: a >= b < Less Than Example: a < b <= Less Than or Equal To Example: a <= b Logical Operators Operator AND OR Description Logical AND Example: (a >= 1) AND (a <= 10) Logical OR Example: (a == 1) OR (b == 1) Bitwise Operators Operator & Description Bitwise AND Example: (1 & 1) = 1 (1 & 0) = 0 Bitwise OR Example: (1 1) = 1 (c) Sparx Systems Page 19 of 21 Created with Enterprise Architect

20 (1 0) = 1 ^ Bitwise XOR (exclusive OR) Example: (1 ^ 1) = 0 (1 ^ 0) = 1 Additional Examples Example ((m_nvalue & 0xFFFF0000) == 0) ((m_nvalue & 0x0000FFFF) == 0) m_value[0][1] = 2 a AND (b OR c) Description Use a Bitwise AND operator (&) with a hexadecimal value as the right operand to test that no bits are set in high order bytes of the variable. Use a Bitwise AND operator (&) with a hexadecimal value as the right operand to test that no bits are set in low order bytes of the variable. Accessing a multi-dimensional array Combining AND and OR operators, using parentheses to ensure precedence. In this example, variable 'a' must be true, and either 'b' or 'c' must be true. Notes String comparisons are case-sensitive (c) Sparx Systems Page 20 of 21 Created with Enterprise Architect

21 (c) Sparx Systems Page 21 of 21 Created with Enterprise Architect

Enterprise Architect. User Guide Series. Maintenance

Enterprise Architect. User Guide Series. Maintenance Enterprise Architect User Guide Series Maintenance In Sparx Systems Enterprise Architect, Maintenance items (such as defects, tasks and events) are managed as element properties. Change and Issue elements

More information

Enterprise Architect. User Guide Series. Maintenance. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Maintenance. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Maintenance Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents Maintenance 3 Working on Maintenance Items 5 Create Maintenance Items

More information

Enterprise Architect. User Guide Series. Recording. Author: Sparx Systems. Date: 6/07/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Recording. Author: Sparx Systems. Date: 6/07/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Recording Author: Sparx Systems Date: 6/07/2018 Version: 1.0 CREATED WITH Table of Contents Recording 3 How it Works 7 The Recording History 9 Diagram Features 11

More information

Enterprise Architect. User Guide Series. Testing. Author: Sparx Systems. Date: 26/07/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Testing. Author: Sparx Systems. Date: 26/07/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Testing Author: Sparx Systems Date: 26/07/2018 Version: 1.0 CREATED WITH Table of Contents Testing 3 Test Management 4 Create Test Records 6 Show Test Script Compartments

More information

Enterprise Architect. User Guide Series. Testing. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Testing. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Testing Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Testing 3 Test Management 4 Create Test Records 6 Working On Test Records

More information

Enterprise Architect. User Guide Series. Testing. Author: Sparx Systems. Date: 10/05/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Testing. Author: Sparx Systems. Date: 10/05/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Testing Author: Sparx Systems Date: 10/05/2018 Version: 1.0 CREATED WITH Table of Contents Testing 3 Test Management 4 Create Test Records 6 Working On Test Records

More information

Enterprise Architect. User Guide Series. Testing

Enterprise Architect. User Guide Series. Testing Enterprise Architect User Guide Series Testing How to manage testing? Use Sparx Systems Enterprise Architect as a complete Test Management bed to create and manage tests and test scripts for model elements,

More information

Enterprise Architect. User Guide Series. Portals. Author: Sparx Systems. Date: 19/03/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Portals. Author: Sparx Systems. Date: 19/03/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Portals Author: Sparx Systems Date: 19/03/2018 Version: 1.0 CREATED WITH Table of Contents Portals 3 Perspective Portal 6 Workspace Portal 7 Window Portal 9 Status

More information

Enterprise Architect. User Guide Series. Portals

Enterprise Architect. User Guide Series. Portals Enterprise Architect User Guide Series Portals What are Portals? In Sparx Systems Enterprise Architect, each Portal is a high-level logical grouping of common tools, custom searches, window layouts and

More information

Enterprise Architect. User Guide Series. Portals

Enterprise Architect. User Guide Series. Portals Enterprise Architect User Guide Series Portals What are Portals? In Sparx Systems Enterprise Architect, each Portal is a high-level logical grouping of common tools, custom searches, window layouts and

More information

Enterprise Architect Tips & Tricks Compilation - 1

Enterprise Architect Tips & Tricks Compilation - 1 Enterprise Architect Tips & Tricks Compilation - 1 Sparx Systems India In this article we have complied all the tips and tricks which we discovered from our day to day usage of Enterprise Architect. In

More information

Enterprise Architect. User Guide Series. Profiling. Author: Sparx Systems. Date: 10/05/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Profiling. Author: Sparx Systems. Date: 10/05/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Profiling Author: Sparx Systems Date: 10/05/2018 Version: 1.0 CREATED WITH Table of Contents Profiling 3 System Requirements 8 Getting Started 9 Call Graph 11 Stack

More information

Enterprise Architect. User Guide Series. Profiling

Enterprise Architect. User Guide Series. Profiling Enterprise Architect User Guide Series Profiling Investigating application performance? The Sparx Systems Enterprise Architect Profiler finds the actions and their functions that are consuming the application,

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents The Specification Manager 3 Specification Manager - Overview

More information

Enterprise Architect. User Guide Series. Ribbons. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Ribbons. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Ribbons Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Ribbons 4 File Management 6 Show Panel 8 Start Ribbon 12 Using the Explore

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager How to define model elements simply? In Sparx Systems Enterprise Architect, use the document-based Specification Manager to create elements

More information

Enterprise Architect. User Guide Series. Ribbons. Author: Sparx Systems Date: 27/05/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Ribbons. Author: Sparx Systems Date: 27/05/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Ribbons Author: Sparx Systems Date: 27/05/2016 Version: 1.0 CREATED WITH Table of Contents Ribbons 4 File Management 6 Show Panel 8 Start Ribbon 12 Using the Explore

More information

Enterprise Architect. User Guide Series. Model Navigation

Enterprise Architect. User Guide Series. Model Navigation Enterprise Architect User Guide Series Model Navigation How to navigate repositories? In Sparx Systems Enterprise Architect the Project Browser shows model structure. Model Searches and browsers locate

More information

Enterprise Architect. User Guide Series. User Interface. Author: Sparx Systems. Date: 19/03/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. User Interface. Author: Sparx Systems. Date: 19/03/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series User Interface Author: Sparx Systems Date: 19/03/2018 Version: 1.0 CREATED WITH Table of Contents User Interface The Start Page How to Remove Links to Recent Projects

More information

Enterprise Architect. User Guide Series. Tutorial. Author: Sparx Systems. Date: 26/07/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Tutorial. Author: Sparx Systems. Date: 26/07/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Tutorial Author: Sparx Systems Date: 26/07/2018 Version: 1.0 CREATED WITH Table of Contents Tutorial 3 Startup 4 Create a Project 5 Add a View to your Model 6 Add

More information

Guide to the Trial Edition

Guide to the Trial Edition Enterprise Architect User Guide Series Guide to the Trial Edition The Trial Edition of Sparx Systems Enterprise Architect provides a free 30-day exploration of the features and facilities of the application,

More information

Best Practices for Model-Based Systems Engineering

Best Practices for Model-Based Systems Engineering Seminar / Workshop Best Practices for Model-Based Systems Engineering Hans-Peter Hoffmann, Ph.D. Chief Systems Methodologist, IBM Rational Software hoffmape@us.ibm.com Overview Successfully delivering

More information

Enterprise Architect. User Guide Series. Tutorial

Enterprise Architect. User Guide Series. Tutorial Enterprise Architect User Guide Series Tutorial How do I build a model in Enterprise Architect? Follow this tutorial to build a simple model in a Firebird Repository, using Enterprise Architect. Author:

More information

Enterprise Architect. User Guide Series. Model Validation. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Model Validation. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Model Validation Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Model Validation 3 Configure Model Validation 5 Run Validation

More information

BasicScript 2.25 User s Guide. May 29, 1996

BasicScript 2.25 User s Guide. May 29, 1996 BasicScript 2.25 User s Guide May 29, 1996 Information in this document is subject to change without notice. No part of this document may be reproduced or transmitted in any form or by any means, electronic

More information

Enterprise Architect. User Guide Series. SysML Models

Enterprise Architect. User Guide Series. SysML Models Enterprise Architect User Guide Series SysML Models How to model Systems Engineering? Sparx Systems Enterprise Architect provides a platform for system engineers, with the Systems Modeling Language (SysML)

More information

Enterprise Architect. User Guide Series. SysML Models. Author: Sparx Systems Date: 26/07/2018 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. SysML Models. Author: Sparx Systems Date: 26/07/2018 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series SysML Models Author: Sparx Systems Date: 26/07/2018 Version: 1.0 CREATED WITH Table of Contents Systems Engineering 5 Parametric Diagram Modeling Assistant 13 Create

More information

Enterprise Architect. User Guide Series. SysML Models. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. SysML Models. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series SysML Models Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents Systems Engineering 3 Systems Modeling Language (SysML) 8 SysML Activity

More information

Enterprise Architect basic usage

Enterprise Architect basic usage 1. Creating a New Project Enterprise Architect basic usage When Enterprise Architect starts, it displays a greeting screen. To create a new project first choose Create a New Project... and then choose

More information

PM4 + Partners Knowledge Articles

PM4 + Partners Knowledge Articles PM4 + Partners Knowledge Articles Customizing your PM4+ user experience r 1 November 30, 2108 PM4+ Partners Workspace - customize your experience Page 2 Contents Customizing Your Workspace... 1 Customizing

More information

Task Management User Guide

Task Management User Guide Task Management User Guide Version 18 April 2018 Contents About This Guide... 5 Tasks Overview... 5 Create a Project for Task Management... 5 Project Templates Overview... 5 Add a Project Template...

More information

Enterprise Architect. User Guide Series. Team Support. Author: Sparx Systems. Date: 26/07/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Team Support. Author: Sparx Systems. Date: 26/07/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Team Support Author: Sparx Systems Date: 26/07/2018 Version: 1.0 CREATED WITH Table of Contents Team Support 4 Project Roles 7 Summary of Typical Tasks 9 Business

More information

Enterprise Architect. User Guide Series. Model Wizard

Enterprise Architect. User Guide Series. Model Wizard Enterprise Architect User Guide Series Model Wizard How to create a model quickly? In Sparx Systems Enterprise Architect, the Model Wizard provides Patterns from a wide range of technologies, to help you

More information

Working with the RTF Generator

Working with the RTF Generator Using EA Working with the RTF Generator by Dermot O Bryan All material Sparx Systems 2008 Sparx Systems 2008 Page 1 Trademarks Microsoft, Microsoft Word are trademarks or registered trademarks of the Microsoft

More information

Enterprise Architect. User Guide Series. Team Support. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Team Support. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Team Support Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents Team Support 4 Project Roles 7 Summary of Typical Tasks 9 Business

More information

IDERA ER/Studio Software Architect Evaluation Guide. Version 16.5/2016+ Published February 2017

IDERA ER/Studio Software Architect Evaluation Guide. Version 16.5/2016+ Published February 2017 IDERA ER/Studio Software Architect Evaluation Guide Version 16.5/2016+ Published February 2017 2017 IDERA, Inc. All rights reserved. IDERA and the IDERA logo are trademarks or registered trademarks of

More information

Enterprise Architect. User Guide Series. Roadmap Diagrams. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Roadmap Diagrams. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Roadmap Diagrams Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents Roadmap Diagrams 3 Roadmap Diagram Options 8 Roadmap Diagrams

More information

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22 Workflow Design Guide Version 17 November 2017 Contents About This Guide... 7 Workflows and Forms Overview... 7 Security Permissions for Workflows and Forms... 8 Search for a Workflow Design, Workflow

More information

Enterprise Architect. User Guide Series. Model Navigation. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Model Navigation. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Model Navigation Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents Model Navigation 4 Navigate: Exploring Your Model 5 The Project

More information

Enterprise Architect. User Guide Series. Team Support

Enterprise Architect. User Guide Series. Team Support Enterprise Architect User Guide Series Team Support How to support modeling in teams? Sparx Systems Enterprise Architect is a team modeling platform, with a free readable Light version, many deployment

More information

Enterprise Architect. User Guide Series. Document Reports

Enterprise Architect. User Guide Series. Document Reports Enterprise Architect User Guide Series Document Reports How to document a model? Use Sparx Systems Enterprise Architect to generate high quality documents directly from the model, with predefined templates

More information

Practical Session 2: Use Cases and a Requirements Model.

Practical Session 2: Use Cases and a Requirements Model. Practical Session 2: The Use Case and Requirements Model T he following report uses a retail banking scenario to illustrate how Enterprise Architect can be used to develop Use Cases and a Requirements

More information

Enterprise Architect. User Guide Series. Model Validation. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Model Validation. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Model Validation Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents Model Validation 3 Configure Model Validation 5 Run Validation

More information

CimConteXtor User Guide

CimConteXtor User Guide CimConteXtor User Guide V3 1/86 CimConteXtor User Guide User Guide V3 CimConteXtor is an Enterprise Architect Add-In. The main purpose of CimConteXtor is to create a UML profile in EA, profile that is

More information

Operators. Java operators are classified into three categories:

Operators. Java operators are classified into three categories: Operators Operators are symbols that perform arithmetic and logical operations on operands and provide a meaningful result. Operands are data values (variables or constants) which are involved in operations.

More information

Contents All rights reserved.

Contents All rights reserved. Contents Essential #1: Expert Advisors Background Knowledge... 2 Essential #2: The Tick... 3 Essential #3: Variables and Data Types... 4 Essential #4: Built-in MQL Variables... 5 Essential #5: Functions...

More information

Title: Assets Virtualization Show install source in hose software and guest software views

Title: Assets Virtualization Show install source in hose software and guest software views Title: Assets Virtualization Show install source in hose software and guest software views Description: To help the auditor distinguish between software discovered by Oracle scripting and standard inventory

More information

Bucknell University Digital Collections. LUNA Insight User Guide February 2006

Bucknell University Digital Collections. LUNA Insight User Guide February 2006 Bucknell University Digital Collections LUNA Insight User Guide February 2006 User Guide - Table of Contents Topic Page Number Installing Insight. 2-4 Connecting to Insight 5 Opening Collections. 6 Main

More information

Integrate Data from External Providers

Integrate Data from External Providers Enterprise Architect User Guide Series Integrate Data from External Providers Sparx Systems' Pro Cloud Server provides the facility to browse an external provider such as Jira, SharePoint or TFS based

More information

Dynamic Model Simulation

Dynamic Model Simulation Enterprise Architect User Guide Series Dynamic Model Simulation How to simulate model behavior? In Sparx Systems Enterprise Architect, you spawn a dynamic process simulating the execution of conceptual

More information

1 Introduction to MARS

1 Introduction to MARS 1 Introduction to MARS 1.1 Objectives After completing this lab, you will: Get familiar with the MARS simulator Learn how to assemble, run, and debug a MIPS program 1.2 The MARS Simulator MARS, the MIPS

More information

Project Management with Enterprise Architect

Project Management with Enterprise Architect Project Management with Enterprise Architect Enterprise Architect is an intuitive, flexible and powerful UML analysis and design tool for building robust and maintainable software. This booklet explains

More information

PCB Filter. Summary. Panel Access. Modified by Admin on Dec 12, PCB Inspector. Parent page: Panels

PCB Filter. Summary. Panel Access. Modified by Admin on Dec 12, PCB Inspector. Parent page: Panels PCB Filter Old Content - visit altium.com/documentation Modified by Admin on Dec 12, 2013 Related panels PCB Inspector Parent page: Panels Quickly locate and highlight objects using logical queries in

More information

Installing and Using the Cisco Unity Express Script Editor

Installing and Using the Cisco Unity Express Script Editor Installing and Using the Cisco Unity Express Script Editor The Cisco Unity Express Script Editor allows you to create and validate scripts for handling calls that reach the auto attendant application.

More information

Enterprise Architect. User Guide Series. Time Aware Models. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Time Aware Models. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Time Aware Models Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents Time Aware Models 3 Clone Structure as New Version 5 Clone Diagram

More information

Eloqua Insight Intro Analyzer User Guide

Eloqua Insight Intro Analyzer User Guide Eloqua Insight Intro Analyzer User Guide Table of Contents About the Course Materials... 4 Introduction to Eloqua Insight for Analyzer Users... 13 Introduction to Eloqua Insight... 13 Eloqua Insight Home

More information

Publish Joomla! Article

Publish Joomla! Article Enterprise Architect User Guide Series Publish Joomla! Article Sparx Systems Enterprise Architect supports publishing an entire model, or part of the model, in a local Joomla! Repository as Articles (HTML

More information

3 TUTORIAL. In This Chapter. Figure 1-0. Table 1-0. Listing 1-0.

3 TUTORIAL. In This Chapter. Figure 1-0. Table 1-0. Listing 1-0. 3 TUTORIAL Figure 1-0. Table 1-0. Listing 1-0. In This Chapter This chapter contains the following topics: Overview on page 3-2 Exercise One: Building and Running a C Program on page 3-4 Exercise Two:

More information

Publish Joomla! Article

Publish Joomla! Article Enterprise Architect User Guide Series Publish Joomla! Article Author: Sparx Systems Date: 10/05/2018 Version: 1.0 CREATED WITH Table of Contents Publish Joomla! Article 3 Install Joomla! Locally 4 Set

More information

Enterprise Architect. User Guide Series. UML Models. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. UML Models. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series UML Models Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents UML Models UML Diagrams UML Structural Models Class Diagram Composite

More information

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

Objective New User Guide

Objective New User Guide Objective New User Guide 2016-2017 1 Guide Index Navigation P.3 Displaying Document Information (Metadata) P.4 Finding Documents P.5 Editing, Releasing and Document States P.6 Saving Documents into Objective

More information

Contents. Properties: Field Area Fields Add a Table to a Form... 23

Contents. Properties: Field Area Fields Add a Table to a Form... 23 Workflow Design Guide Version 18 February 2018 Contents About This Guide... 7 Workflows and Forms Overview... 7 Security Permissions for Workflows and Forms... 8 Search for a Workflow Design, Workflow

More information

What s New in Outlook 2007

What s New in Outlook 2007 What s New in Outlook 2007 This document provides a general overview of the new and improved features in Microsoft Outlook 2007. Opening Assurances 1. Functionality is the same; how we interact with the

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Function. Description

Function. Description Function Check In Get / Checkout Description Checking in a file uploads the file from the user s hard drive into the vault and creates a new file version with any changes to the file that have been saved.

More information

Fundamentals: Expressions and Assignment

Fundamentals: Expressions and Assignment Fundamentals: Expressions and Assignment A typical Python program is made up of one or more statements, which are executed, or run, by a Python console (also known as a shell) for their side effects e.g,

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Dataflow Editor User Guide

Dataflow Editor User Guide - Cisco EFF, Release 1.0.1 Cisco (EFF) 1.0.1 Revised: August 25, 2017 Conventions This document uses the following conventions. Convention bold font italic font string courier font Indication Menu options,

More information

MindManager Server User Guide

MindManager Server User Guide MindManager Server User Guide Table of Contents What is MindManager Server?... 1 Create a map in 7 easy steps... 2 Begin a new map:... 2 Enter your main idea:... 2 Add supporting ideas:... 2 Add other

More information

Enterprise Architect. User Guide Series. Geospatial Models. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Geospatial Models. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Geospatial Models Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Geospatial Modeling 3 Geodatabase Design for ArcGIS 4 ArcGIS

More information

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1 MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

1 Lexical Considerations

1 Lexical Considerations Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.035, Spring 2013 Handout Decaf Language Thursday, Feb 7 The project for the course is to write a compiler

More information

Lectora Audio Editor Information Center

Lectora Audio Editor Information Center Lectora Audio Editor Information Center - 1 - Welcome to the Lectora Audio Editor Information Center The Audio Editor Information Center was designed so that you can quickly find the information you need

More information

Adding Dynamics. Introduction

Adding Dynamics. Introduction M-Graphic s User s Manual 11-1 Chapter 11 Adding Dynamics Introduction This chapter explains how to make single or multiple dynamic connections from display objects to points from OPC data servers. This

More information

Enterprise Architect. User Guide Series. Geospatial Models

Enterprise Architect. User Guide Series. Geospatial Models Enterprise Architect User Guide Series Geospatial Models Sparx Systems Enterprise Architect supports Geography Markup Language (GML) application schemas and ArcGIS geodatabase modeling to define geospatial

More information

Enterprise Architect. User Guide Series. Team Support. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Team Support. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Team Support Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Team Support 4 Project Roles 7 Summary of Typical Tasks 9 Business

More information

Enterprise Architect. User Guide Series. Hybrid Scripting. Author: Sparx Systems. Date: 26/07/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Hybrid Scripting. Author: Sparx Systems. Date: 26/07/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Hybrid Scripting Author: Sparx Systems Date: 26/07/2018 Version: 1.0 CREATED WITH Table of Contents Hybrid Scripting 3 C# Example 5 Java Example 7 Hybrid Scripting

More information

Integrate Data from External Providers

Integrate Data from External Providers Enterprise Architect User Guide Series Integrate Data from External Providers Author: Sparx Systems Date: 26/07/2018 Version: 1.0 CREATED WITH Table of Contents Integrate Data from External Providers 4

More information

Getting Started with Access

Getting Started with Access MS Access Chapter 2 Getting Started with Access Course Guide 2 Getting Started with Access The Ribbon The strip across the top of the program window that contains groups of commands is a component of the

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

erwin Data Modeler Implementation Guide Release 9.8

erwin Data Modeler Implementation Guide Release 9.8 erwin Data Modeler Implementation Guide Release 9.8 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is

More information

Technical Strategy and Solutions BASE PROFESSIONAL. V e r s i o n 1. 0 P a g e 1

Technical Strategy and Solutions BASE PROFESSIONAL. V e r s i o n 1. 0 P a g e 1 BASE PROFESSIONAL V e r s i o n 1. 0 P a g e 1 Contents 1 Overview... 3 1.1 STARTING PROFESSIONAL 3 1.1.1 Professional Window... 4 1.1.2 Menus... 6 1.2 FILE TYPES WITH PROFESSIONAL 6 1.3 PROFESSIONAL TOOLBARS

More information

Enterprise Architect. User Guide Series. Database Models. Author: Sparx Systems. Date: 19/03/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Database Models. Author: Sparx Systems. Date: 19/03/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Database Models Author: Sparx Systems Date: 19/03/2018 Version: 1.0 CREATED WITH Table of Contents Database Models Data Modeling Overview Conceptual Data Model Logical

More information

CodeWarrior Development Studio for Power Architecture Processors FAQ Guide

CodeWarrior Development Studio for Power Architecture Processors FAQ Guide CodeWarrior Development Studio for Power Architecture Processors FAQ Guide Document Number: CWPAFAQUG Rev. 10.x, 06/2015 2 Freescale Semiconductor, Inc. Contents Section number Title Page Chapter 1 Introduction

More information

DS-5 ARM. Using Eclipse. Version Copyright ARM. All rights reserved. ARM DUI 0480L (ID100912)

DS-5 ARM. Using Eclipse. Version Copyright ARM. All rights reserved. ARM DUI 0480L (ID100912) ARM DS-5 Version 5.12 Using Eclipse Copyright 2010-2012 ARM. All rights reserved. ARM DUI 0480L () ARM DS-5 Using Eclipse Copyright 2010-2012 ARM. All rights reserved. Release Information The following

More information

A Tour of the Scripting System. Contents

A Tour of the Scripting System. Contents A Tour of the Scripting System Contents Features of the Scripting System Script Projects and Scripts Scripting Editor Scripting Panels Scripting Debugger Several Scripting Languages Application Programming

More information

CA ERwin Data Modeler

CA ERwin Data Modeler CA ERwin Data Modeler Implementation Guide Service Pack 9.5.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to only and is subject

More information

Software Introduction

Software Introduction Software Introduction B Software Introduction Design Era Universal V11.21 November 2011 Table of Contents Welcome to Stitch/Design Era Universal software.... 1 Basic User Interface... 1 Application button

More information

News in RSA-RTE 10.2 updated for sprint Mattias Mohlin, May 2018

News in RSA-RTE 10.2 updated for sprint Mattias Mohlin, May 2018 News in RSA-RTE 10.2 updated for sprint 2018.18 Mattias Mohlin, May 2018 Overview Now based on Eclipse Oxygen.3 (4.7.3) Contains everything from RSARTE 10.1 and also additional features and bug fixes See

More information

Lexical Considerations

Lexical Considerations Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.035, Fall 2005 Handout 6 Decaf Language Wednesday, September 7 The project for the course is to write a

More information

UML PROFILING AND DSL

UML PROFILING AND DSL UML PROFILING AND DSL version 17.0.1 user guide No Magic, Inc. 2011 All material contained herein is considered proprietary information owned by No Magic, Inc. and is not to be shared, copied, or reproduced

More information

Contents 1. INTRODUCTION OVERVIEW GETTING STARTED... 7

Contents 1. INTRODUCTION OVERVIEW GETTING STARTED... 7 sin 2.9 Contents 1. INTRODUCTION...4 2. OVERVIEW...6 3. GETTING STARTED... 7 3.1 INSTALLING PROFIT... 8 3.2 LOGGING IN TO PROFIT... 9 3.3 FUNDING YOUR PROFIT ACCOUNT... 10 3.4 VIEWING THE PROFIT WORKSPACE

More information

LabVIEW Express VI Development Toolkit User Guide

LabVIEW Express VI Development Toolkit User Guide LabVIEW Express VI Development Toolkit User Guide Version 1.0 Contents The LabVIEW Express VI Development Toolkit allows you to create and edit Express VIs, which you can distribute to users for building

More information

Getting Started with Xpediter/Eclipse

Getting Started with Xpediter/Eclipse Getting Started with Xpediter/Eclipse This guide provides instructions for how to use Xpediter/Eclipse to debug mainframe applications within an Eclipsebased workbench (for example, Topaz Workbench, Eclipse,

More information

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections:

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections: This chapter contains the following sections: Viewing the Task Library, page 1 Creating a Workflow, page 1 Example: Creating a Workflow, page 13 Resolving Workflow Validation Issues, page 16 Changing Flow

More information

Enterprise Architect Training Courses

Enterprise Architect Training Courses On-site training from as little as 135 per delegate per day! Enterprise Architect Training Courses Tassc trainers are expert practitioners in Enterprise Architect with over 10 years experience in object

More information

Teamcenter 11.1 Systems Engineering and Requirements Management

Teamcenter 11.1 Systems Engineering and Requirements Management SIEMENS Teamcenter 11.1 Systems Engineering and Requirements Management Systems Architect/ Requirements Management Project Administrator's Manual REQ00002 U REQ00002 U Project Administrator's Manual 3

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.2 Table of Contents About ServiceNow Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information