Business Decision Modeling with DMN and OpenRules

Size: px
Start display at page:

Download "Business Decision Modeling with DMN and OpenRules"

Transcription

1 RulesML+RR+DecisionCAMP London, July 12-15, 2017 Business Decision Modeling with DMN and OpenRules Jacob Feldman, PhD Chief Technology Officer 1

2 Outline DMN Hands-on creation and execution DMNbased decision models DecisionHello (by business analysts) DecisionHelloJava (integration with IT) DecisionLoanOrigination Domain-Specific Decision Tables 2

3 Business Rules and Decision Management Systems (BRDMS) BRDMS is at the center of modern enterprise architectures Examples: loan approval, insurance underwriting, customer service tactics, clinical guidelines, risk management, compliance, and many others Still: decision logic has to be defined by humans semantic technology can make a difference 3

4 2011 OpenRules, Inc Decision Management Solutions 4

5 DMN Decision Model and Notation OMG standard since 2014 Specifies key concepts and constructs for business decision modeling Current release 1.1 supports DMN XML interchange format Next Release 1.2 Q Many vendors announced DMN support 5

6 6

7 Integration with Business Processes (BPMN) DMN Modeling Aspects Decision Requirements Diagrams (DRD) Decision Logic (Standardized Decision Tables) 7

8 DMN Notation DRD Output of the Decision-2 is used as an input for the Decision-1 This Decision Table represents Business Knowledge-2 (decision logic) 8

9 Decision Modeling Constructs Core Constructs Diagrams with Logical Connections (information requirements) Decision Tables Basic Expression Language (S-FEEL) Conformance Level 2 Advanced Constructs Boxed Expressions (FEEL functions with parameters, contexts, if-then-else, for..return loops, filters, sorting, recursion, ) Conformance Level 3 9

10 Hands-On Decision Modeling The best way to understand DMN is to build and test real Decision Models We will create and execute several examples: DecisionHello (by business analysts) DecisionHelloJava (integration with IT) DecisionLoanOrigination 10

11 Sample Decision Model Determine Customer Greeting Decide how to greet a particular customer during different times of the day (think IVR) Test: Customer: Robinson is a married woman Time of the day: 14:25 pm Expected decision: "Good Afternoon, Mrs. Robinson!" 11

12 Starting with a Decision "Good Afternoon, Mrs. Robinson!" Greeting Salutation Name 12

13 Decision Requirements Diagram 13

14 DRD as a Tabular Decision It is a well-known fact that any diagram can be presented in a tabular format (see e.g. Shlaer-Mellor method) Our DRD may be presented in OpenRules as 14

15 Decision Table DefineGreeting 15

16 Decision Table DefineSalutation 16

17 Decision Table DefineSalutation (alternative representation) 17

18 Decision Table DefineResult This is an examples of a simple FEEL expression 18

19 Defining Business Glossary 19

20 Defining Test Data (in Excel) 20

21 Executing Decision Model 21

22 Implementation Path 22

23 Integration with IT Let s assume that now our decision model is tested by business analysts How to integrate it with an actual IT application? Business Objects should be mapped to an actual Business Object Model (e.g. Java classes or XML) A decision may be executed directly from an application (using a Java API or a web service) 23

24 Accepting Data From Java 24

25 Executing Decision From Java Create a Decision Create a Customer Execute the Decision 25

26 Mapping Decision Objects Simply define business concept Customer as Java object IT doesn t even have to look at Decision Logic! Glossary is the only integration map between Business and IT 26

27 Decision Modeling: Who Does What What Business Users (SMEs) do: Create decision models Validate decision models Create Test cases Execute decision models SMEs use familiar tools such as Excel or Google Docs (no coding required) What Developers do: Help to integrate already tested decision models into existing IT infrastructures 27

28 Specialized DMN Modelers Trisotech 28

29 DMN XML Interchange Format 29

30 DML XML Interchange 30

31 SOA Architecture with Loosely Coupled Decision Services 2006 OpenRules, Inc. 31

32 Collaraborative Rules Management with Google Docs 32

33 More Decision Tables (Banking Example) 33

34 More Complex Decision Tables 34

35 1040EZ Decision Table Decision Table with Calculations 35

36 DecisionTable (single-hit) vs. DecisionTable1(multi-hit) 36

37 DMN Section 11 Example Loan Origination Business Process 37

38 DRD 38

39 Top-Down DRD Decomposition We will decompose our decision model into 7 loosely coupled decision models 39

40 DRD 40

41 Decision Model Loan Origination Result Decision Logic 41

42 Decision Model Loan Origination Result Test Data 42

43 Decision Model Loan Origination Result Organization Structure Execution Results 43

44 DRD 44

45 Decision Model Bureau Strategy DRD 45

46 Decision Model Bureau Strategy Decision Logic 46

47 DRD 47

48 Decision Model Routing DRD 48

49 Decision Model Routing Decision Logic 49

50 DRD 50

51 Decision Model Affordability A fragment of the big DRD Combined in one Variable variable Affordability Combined in one Variable variable Risk Affordability Category 51

52 Decision Model Affordability - DRD 52

53 Decision Model Affordability Decision Logic 53

54 Decision Model Affordability Calculation Logic with a FEEL formula 54

55 Decision Model Affordability Combining sub-decisions External decision name 55

56 DRD 56

57 Decision Model Pre-Bureau Risk Category Defines the variable Risk Category 57

58 DRD 58

59 Decision Model Post-Bureau Risk Category Defines the variable Risk Category 59

60 DRD 60

61 Decision Model Application Risk Score A typical scorecard 61

62 Linking Loosely Coupled Decision Models Together Our repository now contains 7 tested loosely coupled decision models and their test-cases 62

63 Keeping them together A big glossary serves as a spine that keeps all surrounding decision models together: 63

64 Combined Glossary 64

65 Importing Decision Models 65

66 Defining Integrated Decision Models 66

67 Defining Test Data Applicant 67

68 Defining Test Data RequestedProduct 68

69 Defining Test Data BureauData 69

70 Defining Test Data Application 70

71 Defining Test Data Test Cases with Expected Results 71

72 Execution Results for Test 3 Note that Routing never was executed 72

73 Developing Domain-Specific Decision Tables 73

74 Examples of Domain-Specific Decision Tables Security Domain (specifies document access) Geo-Spacial Domain 74

75 Beyond DMN: Business DSL DMN is a general purpose Decision Modeling Language Defines standard formats for generic decision tables and other decision modeling constructs Domain-Specific Decision Modeling is similar to Domain-Specific Languages (DSLs): Business DSL provides specialized business concepts, relationships, and formats for a particular problem domain Converting DSL APIs to a business DSL using domainspecific decision tables OpenRules, Inc

76 Domain-Specific Decision Modeling Objective Given: a domain-specific language with an API Goal: create a domain-specific decision modeling language oriented to business users DSL (API) Decision Modeling Constructs (Diagrams & Decision Tables) Software Developers Business Analysts OpenRules, Inc

77 How to create a Domain- Specific Decision Table? 1. Start with a domain-specific language (Java API) 2. Design Decision Tables oriented to a subject matter expert in this particular domain 3. Implement new decision templates with conditions and actions that support new domain-specific decision tables OpenRules, Inc

78 OpenRules Decision Tables Look Inside of OpenRules Implementation Business View Decision Tables Instances Technical View Decision Table Templates Both defined in Excel 78

79 Business-oriented Decision Table and its Technical Template 79

80 Example: Geospatial Domain Deals with objects and algorithms for processing linear geometries (points, lines, areas, etc.) on the 2-dimensional Cartesian plane JTS (Java Topology Suite) JTS is a de-facto standard open source Java library with a complete, consistent, and robust Java API However, it is too complex for business users OpenRules, Inc

81 Geospatial Expressions used to define Spatial Significance Score HRR Hospital Referral Region HSA Hospital Service Area How to present such rules in a human way that still can be executed by a computer? 81

82 Business Users Like This Format: New Custom Type of Decision Tables JTS Operators 82

83 More Complex Conditions Natural Language Expressions 83 83

84 Implementation Template 84 84

85 Custom Decision Logic: From Java Apps to Decision Models Programmers General Purpose Language (e.g. Java) Domain-specific APIs Business Analysts BRDMS (DMN) Custom Decision Tables Java Applications Domain-specific Decision Models 85

86 Conclusion OMG DMN is a serious step forward to standardized and interchangeable representations of business decision logic Core DMN concepts allow business people to represent, test, and manage their decision models without programming Custom Decision Models is a natural replacement of DSL APIs 86

87 QnA Jacob Feldman, PhD OpenRules, Inc. Available at Amazon.com 87

How Business Analysts Build Executable Decision Models with DMN Standard without Programming

How Business Analysts Build Executable Decision Models with DMN Standard without Programming B Orlando, Nov 6-10, 2017 How Business Analysts Build Executable Decision Models with DMN Standard without Programming Presenter: Dr. Jacob Feldman OpenRules Inc., CTO jacobfeldman@openrules.com www.openrules.com

More information

OPENRULES. User Manual. Open Source Business Decision Management System. Release 6.2.5

OPENRULES. User Manual. Open Source Business Decision Management System. Release 6.2.5 OPENRULES Open Source Business Decision Management System Release 6.2.5 User Manual www.openrules.com August-2013 Table of Contents Introduction... 6 Brief History...6 OpenRules Components...7 Document

More information

OPENRULES. User Manual. Open Source Business Decision Management System. Release 6.2.1

OPENRULES. User Manual. Open Source Business Decision Management System. Release 6.2.1 OPENRULES Open Source Business Decision Management System Release 6.2.1 User Manual OpenRules, Inc. www.openrules.com June-2012 Table of Contents Introduction... 6 Brief History...6 OpenRules Components...7

More information

OPENRULES. User Manual. Open Source Business Rules and Decision Management System. Release 6.4.3

OPENRULES. User Manual. Open Source Business Rules and Decision Management System. Release 6.4.3 OPENRULES Open Source Business Rules and Decision Management System Release 6.4.3 User Manual OpenRules, Inc. www.openrules.com October-2017 Table of Contents Introduction... 7 Brief History...7 OpenRules

More information

Decision Model and Notation 101

Decision Model and Notation 101 Decision Model and Notation 101 Overview and Demo Edson Tirelli, Red Hat Sr Principal Software Engineer, Drools Project Lead Denis Gagné, Trisotech CTO & CEO May 2 nd, 2017 DECISION MODEL AND NOTATION

More information

OPENRULES. User Manual. Open Source Business Decision Management System. Release 6.3.1

OPENRULES. User Manual. Open Source Business Decision Management System. Release 6.3.1 OPENRULES Open Source Business Decision Management System Release 6.3.1 User Manual www.openrules.com May-2014 Table of Contents Introduction... 6 Brief History...6 OpenRules Components...7 Document Conventions...7

More information

CLINICAL DECISION SUPPORT WITH DECISION MODEL AND NOTATION (DMN)

CLINICAL DECISION SUPPORT WITH DECISION MODEL AND NOTATION (DMN) CLINICAL DECISION SUPPORT WITH DECISION MODEL AND NOTATION (DMN) Presenter: Vipul Kashyap, Matteo Mortari Presenter s title: Director, Clinical Information Systems, Date: May 8 th, 2018 *Special Thanks

More information

Decision Management Community June 2017 Challenge

Decision Management Community June 2017 Challenge Decision Management Community June 2017 Challenge DMN Section 11 Loan Origination Example The DECISION Team www.sapiensdecision.com Contents Challenge Goals Pillars of Sapiens DECISION Methodology The

More information

ActiveVOS Technologies

ActiveVOS Technologies ActiveVOS Technologies ActiveVOS Technologies ActiveVOS provides a revolutionary way to build, run, manage, and maintain your business applications ActiveVOS is a modern SOA stack designed from the top

More information

Rule Compressor. Using Machine Learning for Compression of Large Classification Rulesets. Jacob Feldman, PhD Chief Technology Officer

Rule Compressor. Using Machine Learning for Compression of Large Classification Rulesets. Jacob Feldman, PhD Chief Technology Officer Rule Compressor Using Machine Learning for Compression of Large Classification Rulesets Jacob Feldman, PhD Chief Technology Officer 2003-2017 OpenRules, Inc. 1 BR & ML Business Rules (BR) Business Rules

More information

Reiterating the SOA Vision

Reiterating the SOA Vision Cloud Computing and SOA: Same but Different Ronald Schmelzer Managing Partner ZapThink LLC Copyright 2009, ZapThink, LLC 1 Reiterating the SOA Vision Web Services ESB Service Service Service Process SOA

More information

1 Executive Overview The Benefits and Objectives of BPDM

1 Executive Overview The Benefits and Objectives of BPDM 1 Executive Overview The Benefits and Objectives of BPDM This is an excerpt from the Final Submission BPDM document posted to OMG members on November 13 th 2006. The full version of the specification will

More information

A Mashup-Based Strategy for Migration to Web 2.0

A Mashup-Based Strategy for Migration to Web 2.0 A Mashup-Based Strategy for Migration to Web 2.0 Dr. Semih Çetin A Mashup-Based Strategy for Migration to Web 2.0 1 Content Statement of the problem and motivation Existing technologies and approaches

More information

DEMYSTIFYING THE DECISION MODEL AND NOTATION SPECIFICATION. Edson Tirelli Sr Principal Software Engineer Drools Project Lead

DEMYSTIFYING THE DECISION MODEL AND NOTATION SPECIFICATION. Edson Tirelli Sr Principal Software Engineer Drools Project Lead DEMYSTIFYING THE DECISION MODEL AND NOTATION SPECIFICATION Edson Tirelli Sr Principal Software Engineer Drools Project Lead THE POWER OF A COMMON LANGUAGE The Tower of Babel According to the story, a united

More information

JBPM Course Content. Module-1 JBPM overview, Drools overview

JBPM Course Content. Module-1 JBPM overview, Drools overview JBPM Course Content Module-1 JBPM overview, Drools overview JBPM overview Drools overview Community projects Vs Enterprise projects Eclipse integration JBPM console JBPM components Getting started Downloads

More information

Next-Generation Architecture for Virtual Prototyping

Next-Generation Architecture for Virtual Prototyping Next-Generation Architecture for Virtual Prototyping Dr. Bipin Chadha John Welsh Principal Member Manager Lockheed Martin ATL Lockheed Martin ATL (609) 338-3865 (609) 338-3865 bchadha@atl.lmco.com jwelsh@atl.lmco.com

More information

BPEL Research. Tuomas Piispanen Comarch

BPEL Research. Tuomas Piispanen Comarch BPEL Research Tuomas Piispanen 8.8.2006 Comarch Presentation Outline SOA and Web Services Web Services Composition BPEL as WS Composition Language Best BPEL products and demo What is a service? A unit

More information

Oracle Application Development Framework Overview

Oracle Application Development Framework Overview An Oracle White Paper July 2009 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services

More information

Chapter 8 Web Services Objectives

Chapter 8 Web Services Objectives Chapter 8 Web Services Objectives Describe the Web services approach to the Service- Oriented Architecture concept Describe the WSDL specification and how it is used to define Web services Describe the

More information

Identify and cluster touchpoints in several ways Identify risks and initiatives associated to touchpoints

Identify and cluster touchpoints in several ways Identify risks and initiatives associated to touchpoints ARIS ARIS 9.8 SR4 OVERVIEW ARIS Architect / ARIS Designer Use CXM specific queries and spreadsheets to retrieve information and receive a graphical overview of the journey or its related objects. CXM queries

More information

Whole Platform Foundation. The Long Way Toward Language Oriented Programming

Whole Platform Foundation. The Long Way Toward Language Oriented Programming Whole Platform Foundation The Long Way Toward Language Oriented Programming 2008 by Riccardo Solmi made available under the Creative Commons License last updated 22 October 2008 Outline Aim: Engineering

More information

RULE SOLVER USER MANUAL. Constraint Programming with OpenRules OpenRules, Inc.

RULE SOLVER USER MANUAL. Constraint Programming with OpenRules OpenRules, Inc. RULE SOLVER Constraint Programming with OpenRules 6.2.3 USER MANUAL OpenRules, Inc. www.openrules.com January-2013 Table of Contents Introduction 4 Document Conventions 5 Rule Solver as Inferential Rule

More information

Xyleme Studio Data Sheet

Xyleme Studio Data Sheet XYLEME STUDIO DATA SHEET Xyleme Studio Data Sheet Rapid Single-Source Content Development Xyleme allows you to streamline and scale your content strategy while dramatically reducing the time to market

More information

SOA Distilled. Udi Dahan The Software Simplist..NET Development Expert & SOA Specialist Microsoft Solutions Architect MVP

SOA Distilled. Udi Dahan The Software Simplist..NET Development Expert & SOA Specialist Microsoft Solutions Architect MVP SOA Distilled Udi Dahan The Software Simplist.NET Development Expert & SOA Specialist Microsoft Solutions Architect MVP Udi Dahan - The Software Simplist Consulting, Mentoring & Training Helping you Keep

More information

METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE

METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE UDC:681.324 Review paper METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE Alma Butkovi Tomac Nagravision Kudelski group, Cheseaux / Lausanne alma.butkovictomac@nagra.com Dražen Tomac Cambridge Technology

More information

Loan Origination Rule Modeling Challenge (June 2017) Corticon Solution

Loan Origination Rule Modeling Challenge (June 2017) Corticon Solution Loan Origination Rule Modeling Challenge (June 2017) Corticon Solution Mike Parish Introduction The Loan Origination problem is described in Section 11 of the DMN specification The example is quite simple.

More information

DMN Modeling and Simulation

DMN Modeling and Simulation Enterprise Architect User Guide Series DMN Modeling and Simulation How do I model decisions? Use Sparx Systems Enterprise Architect to apply the Decision Model and Notation (DMN) standard constructs to

More information

DMN Modeling and Simulation

DMN Modeling and Simulation Enterprise Architect User Guide Series DMN Modeling and Simulation How do I model decisions? Use Sparx Systems Enterprise Architect to apply the Decision Model and Notation (DMN) standard constructs to

More information

Web Services. Lecture I. Valdas Rapševičius. Vilnius University Faculty of Mathematics and Informatics

Web Services. Lecture I. Valdas Rapševičius. Vilnius University Faculty of Mathematics and Informatics Web Services Lecture I Valdas Rapševičius Vilnius University Faculty of Mathematics and Informatics 2014.02.28 2014.02.28 Valdas Rapševičius. Java Technologies 1 Outline Introduction to SOA SOA Concepts:

More information

Advanced Solutions of Microsoft SharePoint Server 2013 Course Contact Hours

Advanced Solutions of Microsoft SharePoint Server 2013 Course Contact Hours Advanced Solutions of Microsoft SharePoint Server 2013 Course 20332 36 Contact Hours Course Overview This course examines how to plan, configure, and manage a Microsoft SharePoint Server 2013 environment.

More information

DMN DECISIONS EXECUTION SCENARIOS

DMN DECISIONS EXECUTION SCENARIOS DMN DECISIONS EXECUTION SCENARIOS Author: Simon Ringuette Publication Date: March 28th, 2018 3100 Côte-Vertu, #420 Montréal (Québec) H4R 2J8 514 990-6639 Trisotech.com Introduction The Trisotech DMN Modeler

More information

Papyrus: Advent of an Open Source IME at Eclipse (Redux)

Papyrus: Advent of an Open Source IME at Eclipse (Redux) Papyrus: Advent of an Open Source IME at Eclipse (Redux) Kenn Hussey Eclipse Modeling Day, Toronto November 18, 2009 A Perfect Storm for Tools Core technologies like MOF and UML are evolving Microsoft

More information

Service Oriented Architectures Visions Concepts Reality

Service Oriented Architectures Visions Concepts Reality Service Oriented Architectures Visions Concepts Reality CSC March 2006 Alexander Schatten Vienna University of Technology Vervest und Heck, 2005 A Service Oriented Architecture enhanced by semantics, would

More information

A Model-Driven Framework for Domain Specific Process Design and Governance

A Model-Driven Framework for Domain Specific Process Design and Governance A Model-Driven Framework for Domain Specific Process Design and Governance Adrian Mos 1, Mario Cortes-Cornax 1, José Miguel Pérez-Álvarez1,2, María Teresa Gómez-López 2 1 Xerox Research Center, 6 Chemin

More information

Model Driven Architecture and Rhapsody

Model Driven Architecture and Rhapsody Model Driven Architecture and Rhapsody Dr. Bruce Powel Douglass Chief Evangelist Telelogic Model Driven Architecture and Rhapsody Abstract MDA, short for Model Driven Architecture, is a unification by

More information

Java Constraint Programming with JSR-331

Java Constraint Programming with JSR-331 1 EPICENTER 2010 DUBLIN 2 Java Constraint Programming with JSR-331 Jacob Feldman, PhD OpenRules Inc., CTO jacobfeldman@openrules.com www.openrules.com www.4c.ucc.ie Outline Introduction to Constraint Programming

More information

Reconciling UML and BPMN Models in UPDM

Reconciling UML and BPMN Models in UPDM Reconciling UML and BPMN Models in UPDM Fatma Dandashi Mitre Corp. Market Need Architects have a need to model business processes using BPMN BPMN provides richer semantics vs. UML Activity models UPDM

More information

DITA for Enterprise Business Documents Sub-committee Proposal Background Why an Enterprise Business Documents Sub committee

DITA for Enterprise Business Documents Sub-committee Proposal Background Why an Enterprise Business Documents Sub committee DITA for Enterprise Business Documents Sub-committee Proposal Background Why an Enterprise Business Documents Sub committee Documents initiate and record business change. It is easy to map some business

More information

Introducing SAS Model Manager 15.1 for SAS Viya

Introducing SAS Model Manager 15.1 for SAS Viya ABSTRACT Paper SAS2284-2018 Introducing SAS Model Manager 15.1 for SAS Viya Glenn Clingroth, Robert Chu, Steve Sparano, David Duling SAS Institute Inc. SAS Model Manager has been a popular product since

More information

End to End BPM: From process modeling to execution with Signavio and Red Hat. Red Hat Summit Wednesday May 3.

End to End BPM: From process modeling to execution with Signavio and Red Hat. Red Hat Summit Wednesday May 3. End to End BPM: From process modeling to execution with Signavio and Red Hat Red Hat Summit 2017 Wednesday May 3 www.signavio.com www.redhat.com SeanPavonePhoto/Bigstock.com Agenda Solution Introduction

More information

Advanced Solutions of Microsoft SharePoint Server 2013

Advanced Solutions of Microsoft SharePoint Server 2013 Course Duration: 4 Days + 1 day Self Study Course Pre-requisites: Before attending this course, students must have: Completed Course 20331: Core Solutions of Microsoft SharePoint Server 2013, successful

More information

What s a BA to do with Data? Discover and define standard data elements in business terms

What s a BA to do with Data? Discover and define standard data elements in business terms What s a BA to do with Data? Discover and define standard data elements in business terms Susan Block, Lead Business Systems Analyst The Vanguard Group Discussion Points Discovering Business Data The Data

More information

Decision Management Community

Decision Management Community Decision Management Community Challenge Jan-2016 INTRO I was happy to see a large number of submissions to the challenge. Just to make things clear, I did not start the challenge and I did not pick the

More information

<Insert Picture Here> The Oracle Fusion Development Platform: Oracle JDeveloper and Oracle ADF Overview

<Insert Picture Here> The Oracle Fusion Development Platform: Oracle JDeveloper and Oracle ADF Overview 1 1 The Oracle Fusion Development Platform: Oracle JDeveloper and Oracle ADF Overview Dana Singleterry Principal Product Manager Oracle JDeveloper and Oracle ADF http://blogs.oracle.com/dana

More information

APIs Economy for Mainframe Customers: A new approach for modernizing and reusing mainframe assets

APIs Economy for Mainframe Customers: A new approach for modernizing and reusing mainframe assets Contact us: ZIO@hcl.com APIs Economy for Mainframe Customers: A new approach for modernizing and reusing mainframe assets www.zio-community.com Meet Our Experts and Learn the Latest News Copyright 2018

More information

C ibm.

C ibm. C9550-412 ibm Number: C9550-412 Passing Score: 800 Time Limit: 120 min www.examsforall.com Exam A QUESTION 1 A company has a healthcare enrollments business process that is to be implemented worldwide

More information

RethinkDB. Niharika Vithala, Deepan Sekar, Aidan Pace, and Chang Xu

RethinkDB. Niharika Vithala, Deepan Sekar, Aidan Pace, and Chang Xu RethinkDB Niharika Vithala, Deepan Sekar, Aidan Pace, and Chang Xu Content Introduction System Features Data Model ReQL Applications Introduction Niharika Vithala What is a NoSQL Database Databases that

More information

IOWA STATE UNIVERSITY OF SCIENCE AND TECHNOLOGY

IOWA STATE UNIVERSITY OF SCIENCE AND TECHNOLOGY IOWA STATE UNIVERSITY OF SCIENCE AND TECHNOLOGY Procurement Services Department 1340 Administrative Services Building 2221 Wanda Daley Drive Ames, Iowa 50011-3616 515 294-4860 FAX 515 294-9606 Date: August

More information

challenges in domain-specific modeling raphaël mannadiar august 27, 2009

challenges in domain-specific modeling raphaël mannadiar august 27, 2009 challenges in domain-specific modeling raphaël mannadiar august 27, 2009 raphaël mannadiar challenges in domain-specific modeling 1/59 outline 1 introduction 2 approaches 3 debugging and simulation 4 differencing

More information

Evaluation Guide for ASP.NET Web CMS and Experience Platforms

Evaluation Guide for ASP.NET Web CMS and Experience Platforms Evaluation Guide for ASP.NET Web CMS and Experience Platforms CONTENTS Introduction....................... 1 4 Key Differences...2 Architecture:...2 Development Model...3 Content:...4 Database:...4 Bonus:

More information

Migrating traditional Java EE applications to mobile

Migrating traditional Java EE applications to mobile Migrating traditional Java EE applications to mobile Serge Pagop Sr. Channel MW Solution Architect, Red Hat spagop@redhat.com Burr Sutter Product Management Director, Red Hat bsutter@redhat.com 2014-04-16

More information

Leveraging OGC Services in ArcGIS Server. Satish Sankaran, Esri Yingqi Tang, Esri

Leveraging OGC Services in ArcGIS Server. Satish Sankaran, Esri Yingqi Tang, Esri Leveraging OGC Services in ArcGIS Server Satish Sankaran, Esri Yingqi Tang, Esri GIS Creating and Managing Geo Information Products - Proprietary - Open Specifications - Standards Dissemination of Geo

More information

idiscover RELATIONSHIPS Next find any documented relationships (database level). Ex., foreign keys

idiscover RELATIONSHIPS Next find any documented relationships (database level). Ex., foreign keys idiscover Discover Accurately In every implementation without exception, MENTIS has found unprotected data in tens to hundreds, and in some cases, thousands of undocumented locations. If you aren t finding

More information

C exam IBM C IBM Business Process Management Express or Standard Edition, V 8.5.5, BPM Application Development

C exam IBM C IBM Business Process Management Express or Standard Edition, V 8.5.5, BPM Application Development C9550-412.exam Number: C9550-412 Passing Score: 800 Time Limit: 120 min IBM C9550-412 IBM Business Process Management Express or Standard Edition, V 8.5.5, BPM Application Development Exam A QUESTION 1

More information

Raising the Level of Development: Models, Architectures, Programs

Raising the Level of Development: Models, Architectures, Programs IBM Software Group Raising the Level of Development: Models, Architectures, Programs Dr. James Rumbaugh IBM Distinguished Engineer Why Is Software Difficult? Business domain and computer have different

More information

Domain Specific Development

Domain Specific Development Domain Specific Development Stuart Kent, Senior Program Manager, Visual Studio Team System, Microsoft Copyright Microsoft 2006 Domain Specific Development Pattern Model Abstraction of the variable part,

More information

Advanced Solutions of Microsoft SharePoint 2013

Advanced Solutions of Microsoft SharePoint 2013 Course 20332A :Advanced Solutions of Microsoft SharePoint 2013 Page 1 of 9 Advanced Solutions of Microsoft SharePoint 2013 Course 20332A: 4 days; Instructor-Led About the Course This four-day course examines

More information

Beginning To Define ebxml Initial Draft

Beginning To Define ebxml Initial Draft Beginning To Define ebxml Initial Draft File Name Version BeginningToDefineebXML 1 Abstract This document provides a visual representation of how the ebxml Architecture could work. As ebxml evolves, this

More information

archiving with the IBM CommonStore solution

archiving with the IBM CommonStore solution IBM Software Group E-mail archiving with the IBM CommonStore solution Comprehensive flexible reliable Borut Obran Genis d.o.o. 2006 IBM Corporation Agenda Overview Mailbox management Discovery Compliance

More information

FP Sizing of SOA applications made easy!

FP Sizing of SOA applications made easy! FP Sizing of SOA applications made easy! Shalini Thulasi (CFPS) Email:Shalini.Thulasi@accenture.com Copyright 2010 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are

More information

UCSD Extension. Fundamentals of Web Services. Instructor: John Pantone. 2007, Objectech Corporation. All rights reserved

UCSD Extension. Fundamentals of Web Services. Instructor: John Pantone. 2007, Objectech Corporation. All rights reserved UCSD Extension Fundamentals of Web Services Instructor: John Pantone 1 Web Services Are: self-contained modular distributed dynamic Can be described published located invoked Over a network 2 Web Services

More information

Distribution and web services

Distribution and web services Chair of Software Engineering Carlo A. Furia, Bertrand Meyer Distribution and web services From concurrent to distributed systems Node configuration Multiprocessor Multicomputer Distributed system CPU

More information

The support of Decision Modeling features and concepts in tooling

The support of Decision Modeling features and concepts in tooling Leuven Institute for Research on Information Systems (LIRIS) Department of Decision Sciences and Information Management The support of Decision Modeling features and concepts in tooling Jan Vanthienen

More information

UNIT I. 3. Write a short notes on process view of 4+1 architecture. 4. Why is object-oriented approach superior to procedural approach?

UNIT I. 3. Write a short notes on process view of 4+1 architecture. 4. Why is object-oriented approach superior to procedural approach? Department: Information Technology Questions Bank Class: B.E. (I.T) Prof. Bhujbal Dnyaneshwar K. Subject: Object Oriented Modeling & Design dnyanesh.bhujbal11@gmail.com ------------------------------------------------------------------------------------------------------------

More information

A Unified Business Interface for Modeling and Solving Constraint Satisfaction Problems

A Unified Business Interface for Modeling and Solving Constraint Satisfaction Problems OMG TECHNICAL MEETING Santa Clara, CA Dec 8, 2008 1 A Unified Business Interface for Modeling and Solving Constraint Satisfaction Problems Jacob Feldman, PhD Cork Constraint Computation Centre, Sr. Researcher

More information

NoMagic Product Comparison Brief

NoMagic Product Comparison Brief 1 NoMagic Product Comparison Brief Presented to: SET, AMSEWG Last Updated : September 15 th, 2017 Presented by: David Fields Overview NoMagic offers a variety of UML and SysML tools each with multiple

More information

1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials

1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials 1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials Number: 1Z0-560 Passing Score: 650 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ 1Z0-560: Oracle Unified Business

More information

Enterprise Architect. User Guide Series. Domain Models

Enterprise Architect. User Guide Series. Domain Models Enterprise Architect User Guide Series Domain Models What support for modeling domains? Sparx Systems Enterprise Architect supports a range of modeling languages, technologies and methods that can be used

More information

Legacy Modernization to SOA using Compass/VB

Legacy Modernization to SOA using Compass/VB Legacy Modernization to SOA using Compass/VB Case Study Name Avi Yaeli, Netta Aizenbud, Jonathan Bnayahu, Nurit Dor, Alex Akilov, Sara Porat IBM Research Labs in Haifa Jenny Choy, IGS Oct. 27, 2005 IBM

More information

Eclipse SOA Tools Platform Project

Eclipse SOA Tools Platform Project Eclipse SOA Tools Platform Project Oisín Hurley IONA Technologies http://www.iona.com 2007 by «Author»; made available under the EPL v1.0 Date Other Information, if necessary A Brief Introduction to SOA

More information

MDA. SOA = Model Driven SOA

MDA. SOA = Model Driven SOA Introducing Model Driven SOA MDA + SOA = Model Driven SOA SoaML an Emerging Standard for SOA Modeling Dr. Darius Silingas Principal Trainer/Consultant darius.silingas@nomagic.com Introduction Who Am I?

More information

DATA STRUCTURES USING C

DATA STRUCTURES USING C DATA STRUCTURES USING C Lecture-7 Data Structures Lecture Objectives After studying this chapter, the student should be able to: Define a data structure. Define an array as a data structure and how it

More information

Technology for Cadastral Applications. John R. Hacker, Jr. Marketing Manager Geospatial Applications

Technology for Cadastral Applications. John R. Hacker, Jr. Marketing Manager Geospatial Applications Technology for Cadastral Applications John R. Hacker, Jr. Marketing Manager Geospatial Applications Agenda Cadastral Mapping Issues Precision and Accuracy Data Creation Data Management Data Publishing

More information

Enterprise Geographic Information Servers. Dr David Maguire Director of Products Kevin Daugherty ESRI

Enterprise Geographic Information Servers. Dr David Maguire Director of Products Kevin Daugherty ESRI Enterprise Geographic Information Servers Dr David Maguire Director of Products Kevin Daugherty ESRI Outline Introduction Enterprise GIS vs. Spatially-enabled IS Architectures for building Enterprise GIS

More information

Professional (CBAP) version 3

Professional (CBAP) version 3 Certified Business Analysis Professional (CBAP) version 3 Amman Jordan July 29 th August 5 th, 2017 Instructor Mr. Tareq Al Nashawati Certified CBAP, PMP Table of Content 1 PROGRAM VALUE... 3 2 TARGET

More information

Java in the world of Software AG JCP EC May 2018

Java in the world of Software AG JCP EC May 2018 Java in the world of Software AG JCP EC May 2018 Georgi Stanev Architect Software AG 2017 Software AG. All rights reserved. History of the Software AG 1969 The concept for an adaptable and extremely versatile

More information

DMN Section 11 Loan Origination Example. By Maarten P.D. Schadd Senior Product Consultant at Blueriq B.V.

DMN Section 11 Loan Origination Example. By Maarten P.D. Schadd Senior Product Consultant at Blueriq B.V. DMN Section 11 Loan Origination Example By Maarten P.D. Schadd Senior Product Consultant at Blueriq B.V. Contents 1 Introduction......................................... 3 2 Problem definition.....................................

More information

Software Architectures. Lecture 6 (part 1)

Software Architectures. Lecture 6 (part 1) Software Architectures Lecture 6 (part 1) 2 Roadmap of the course What is software architecture? Designing Software Architecture Requirements: quality attributes or qualities How to achieve requirements

More information

Techno Expert Solutions An institute for specialized studies! Introduction to Advance QTP course Content

Techno Expert Solutions An institute for specialized studies! Introduction to Advance QTP course Content Introduction to Advance QTP course Content NTRODUCTION TO AUTOMATION Automation Testing Benefits of Automation Testing Automation Testing Vs Manual Testing Automation Test Tools Tool selection criteria

More information

Component-based Architecture Buy, don t build Fred Broks

Component-based Architecture Buy, don t build Fred Broks Component-based Architecture Buy, don t build Fred Broks 1. Why use components?... 2 2. What are software components?... 3 3. Component-based Systems: A Reality!! [SEI reference]... 4 4. Major elements

More information

Enterprise Data Architect

Enterprise Data Architect Enterprise Data Architect Position Summary Farmer Mac maintains a considerable repository of financial data that spans over two decades. Farmer Mac is looking for a hands-on technologist and data architect

More information

SOFTWARE ENGINEERING. To discuss several different ways to implement software reuse. To describe the development of software product lines.

SOFTWARE ENGINEERING. To discuss several different ways to implement software reuse. To describe the development of software product lines. SOFTWARE ENGINEERING DESIGN WITH COMPONENTS Design with reuse designs and develops a system from reusable software. Reusing software allows achieving better products at low cost and time. LEARNING OBJECTIVES

More information

Experiences with. data for use in apps

Experiences with. data for use in apps Experiences with publishing INSPIRE data for use in apps Presentation to: Author: Date: INSPIRE Conference 2014 Clemens Portele 2014 06 18 From INSPIRE Conference 2013: "How to use INSPIRE data?" INSPIRE

More information

Ride the wave of automation to survive the digital transformation storm. December, 2017

Ride the wave of automation to survive the digital transformation storm. December, 2017 Ride the wave of automation to survive the digital transformation storm December, 2017 Today s speakers Sheli Ashkenazi Product Management Experitest Ruth Zamir Director of Marketing Experitest 2 01 The

More information

Web Client Architecture Guide

Web Client Architecture Guide Web Client Architecture Guide Intended Audience This document was created to review the basic architecture. The author(s) assume that the reader is an experienced software developer or architect who has

More information

Big data privacy in Australia

Big data privacy in Australia Five-article series Big data privacy in Australia Three actions you can take towards compliance Article 5 Big data and privacy Three actions you can take towards compliance There are three actions that

More information

OG0-091 Q&As TOGAF 9 Part 1

OG0-091 Q&As TOGAF 9 Part 1 CertBus.com OG0-091 Q&As TOGAF 9 Part 1 Pass The Open Group OG0-091 Exam with 100% Guarantee Free Download Real Questions & Answers PDF and VCE file from: 100% Passing Guarantee 100% Money Back Assurance

More information

Hyperion Interactive Reporting Reports & Dashboards Essentials

Hyperion Interactive Reporting Reports & Dashboards Essentials Oracle University Contact Us: +27 (0)11 319-4111 Hyperion Interactive Reporting 11.1.1 Reports & Dashboards Essentials Duration: 5 Days What you will learn The first part of this course focuses on two

More information

SERES: ASEMANTICREGISTRY FOR ENTERPRISE SERVICES. Geir Jevne 9.juni 2011

SERES: ASEMANTICREGISTRY FOR ENTERPRISE SERVICES. Geir Jevne 9.juni 2011 SERES: ASEMANTICREGISTRY FOR ENTERPRISE SERVICES Geir Jevne 9.juni 2011 Brønnøysundregistrene the register authority and source of information An agency under the Norwegian Ministry of Trade and Industry

More information

C Exam Questions Demo IBM. Exam Questions C IBM FileNet Business Process Manager v5.

C Exam Questions Demo   IBM. Exam Questions C IBM FileNet Business Process Manager v5. IBM Exam Questions C2070-582 IBM FileNet Business Process Manager v5.1 Version:Demo 1.You are installing a Process Engine server that will be a part of an IBM Case Manager installation. What is a requirement

More information

Abstraction in Business Architecture

Abstraction in Business Architecture October 07, 2014 Mike Rosen Abstraction in One of the key characteristics of architecture is looking at the big picture, but a major challenge is that we can t present the big picture on one great big

More information

Accessibility of Web

Accessibility of Web Web Accessibility Policy and Procedure Accessibility of Web Last Updated: August 2018 Content: Outlined in Section 504 of the Rehabilitation Act of 1973 (Section 504), 29 U.S.C. 794, and its implementing

More information

LOG8430: Architecture logicielle et conception avancée

LOG8430: Architecture logicielle et conception avancée LOG8430: Architecture logicielle et conception avancée Modeling, OO Concepts, and Design Patterns Winter 2018 Fabio Petrillo Chargé de Cours This work is licensed under a Creative 1 Commons Attribution-NonCommercialShareAlike

More information

-CONTINUE ON NEXT PAGE-

-CONTINUE ON NEXT PAGE- Page 1 How to Send an Email STEP 1- Login to your Participant Center STEP 2- On your Participant Center home page and click Email tab to access the Email functionality. Page 2 STEP 3-Select an email message

More information

Introducing RecoverX 2.5

Introducing RecoverX 2.5 Backup & Recovery for Modern Applications Introducing RecoverX 2.5 Shalabh Goyal, Director, Product Management Kedar Hiremath, Product Marketing Manager November 16 th, 2017 What We Will Cover Today What

More information

DEV427 MODEL-DRIVEN DEVELOPMENT USING PowerDesigner. Xiao-Yun WANG PowerDesigner Chief Architect

DEV427 MODEL-DRIVEN DEVELOPMENT USING PowerDesigner. Xiao-Yun WANG PowerDesigner Chief Architect DEV427 MODEL-DRIVEN DEVELOPMENT USING PowerDesigner Xiao-Yun WANG PowerDesigner Chief Architect xwang@sybase.com OBJECTIVES 1. Understand what s Model-Driven Development 2. Understand why Model-Driven

More information

Advance Mobile& Web Application development using Angular and Native Script

Advance Mobile& Web Application development using Angular and Native Script Advance Mobile& Web Application development using Angular and Native Script Objective:- As the popularity of Node.js continues to grow each day, it is highly likely that you will use it when you are building

More information

Augmenting BPMN with DMN:

Augmenting BPMN with DMN: Augmenting BPMN with DMN: Documenting Process Decision Logic Sponsored by: Mark A. Monteleone Independent Consultant and Author AUGMENTING BPMN WITH DMN: DOCUMENTING PROCESS DECISION LOGIC 2 ABSTRACT Via

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : OG0-091 Title : TOGAF 9 Part 1 Vendors : The Open Group Version : DEMO Get

More information

Three Key Challenges Facing ISPs and Their Enterprise Clients

Three Key Challenges Facing ISPs and Their Enterprise Clients Three Key Challenges Facing ISPs and Their Enterprise Clients GRC, enterprise services, and ever-evolving hybrid infrastructures are all dynamic and significant challenges to the ISP s enterprise clients.

More information