The Corticon Rule Modeling Methodology. Applied to. FEMA Disaster Assistance Fraud Detection. A Case Study

Size: px
Start display at page:

Download "The Corticon Rule Modeling Methodology. Applied to. FEMA Disaster Assistance Fraud Detection. A Case Study"

Transcription

1 The Corticon Rule Modeling Methodology Applied to FEMA Disaster Assistance Fraud Detection A Case Study By Mike Parish

2 Contents Table Of Figures... 4 The Business Problem... 6 Identify the Business Decision(s) to be made... 6 Collect and Review Rules needed for each decision... 6 If necessary convert the rules into Corticon Rule Statement form i.e. IF condition THEN action... 6 Identify Business Objects (Entities)... 7 Identify Relationships between Objects (associations and roles, cardinality and direction)... 7 Identify Attributes and data types (integer, Boolean, string, decimal, date)... 8 Identify Possible Values (enumerated values, ranges, references to other attributes)... 8 Create Vocabulary (or import it from UML or database)... 8 Create Sample Data (This helps to make sure the data model makes sense) Generate Database (if desired) or map attributes to existing tables Decide how the rules need to be grouped into Rulesheets Model Rules Determine Scope or context for the rulesheet Define any filters to limit the data going into the rulesheet (or to join related data if there s no explicit association) Define non-conditional actions such as initializations or messages For each rule statement create a rule column that connects the conditions to the actions Analyze The Rules for Logical Errors Ambiguity Check Check for Completeness of the rules Check the Completeness of the Test Data Check for Logical Loops Use the Check for Logical Loops button Test The Rules Test against sample data (using ccj) Deploy Decision Service in a test environment Test the deployed decision service Deploy Decision Service on Production Server... 26

3 Invoke the production rules via the application code (or BPM) SOAP CLIENTS BPM Clients Java Clients Monitor the Production Decision Services... 36

4 Table Of Figures Figure 1 The Business Entities... 7 Figure 2 Specifying Associations Between Entities... 7 Figure 3 Specifying Possible Values for an Attribute... 8 Figure 4 The Vocabulary... 9 Figure 5 Sample Test Data Figure 6 Database Properties Figure 7 Adding Key Attributes for Database Access Figure 8 Creating a Figure 1 Database Automatically from Studio Figure 9 The Database Tables Figure 10 Rows in the SSA Database Figure 11 The Rulesheet Tabs Figure 12 The Rule Statements Figure 13 The Rulesheet Scope Figure 14 The Rulesheet Filter Figure 15 Non Conditional Actions on a Rulesheet Figure 16 Decision Table Entries Figure 17 Rule Statements with Substitution Variables Figure 18 The Logical Analysis Buttons Figure 19 Ambiguity Message Figure 20 Completeness Message Figure 21 Logical Loop Message Figure 22 Test Results Figure 23 Logging on to the Server Console Figure 24 Server Console Options Figure 25 Deployed Decision Services Figure 26 Server Performance - Distribution Chart Figure 27 Decision Service Settings Figure 28 Rule Statements Report Figure 29 Deploying a Decision Service Figure 30 Decision Service Names and Versions Figure 31 Update List of Deployed Decision Services in Studio Figure 32 Deployed Decision Services Message Figure 33 List of Available Decision Services for Testing Figure 34 Testing Using a Remote Decision Service Figure 35 Configuring Monitored Attributes Figure 36 Monitored Attribute List Figure 37 Monitored Attribute Charts Figure 38 Deployment Console in Studio Figure 39 Rule Repository Folders... 26

5 Figure 40 Repository Functions Figure 41 Notification of Rule Models to be Approved Figure 42 Sample Notification Figure 43 Access to the Repository is Controlled Figure 44 Notification of Approval Figure 45 Tracking Approval Workflows Figure 46 Approval Workflow Details Figure 47 Migrating Rule Assets to Production Figure 48 A Typical SOAP Client Figure 49 Corticon SOAP Request Figure 50 Corticon SOAP Response Figure 51 Studio Test Data Figure 52 Studio Export SOAP Menu Figure 53 Decision Service Invoked from a Business Process Figure 54 Java Code to Invoke a Decision Service Figure 55 Server Environment Settings Figure 56 Server Settings Figure 57 Server Throughput Graph Figure 58 Server Response Time Graph Figure 59 Deployed Decision Services Figure 60 Monitored Attributes... 39

6 The Business Problem FEMA is seeking an integrated, scalable, near or real time, cost-efficient solution that provides an adaptive risk assessment and risk mitigation strategy to identify, design, and implement necessary controls for preventing improper payments as a result of fraud, waste, and abuse within Government disaster assistance programs Identify the Business Decision(s) to be made Determine if this application for disaster assistance potentially fraudulent? Collect and Review Rules needed for each decision Some of the rules are: Social Security Number (SSN) is Valid Social Security Number is a Multi-instance Number. Duplicate Social Security Number for One Disaster Social Security Number Belongs to a Minor Duplicate Damaged Dwelling Address for One Disaster Non-verifiable Damaged Dwelling Address Verified Address Does Not Match. Damaged Dwelling Address Zip Code not in Declared Disaster Area Current Address Belongs to an Institution Duplicate Current Mailing Address Current Mailing Address outside Declared Disaster State(s). Duplicate Address Duplicate Electronic Funds Transfer (EFT) Account Different Applications with Same Dependent(s). Valid Dependent(s) in Household Current Mailing Address is in Care of Applicant No Home Insurance If necessary convert the rules into Corticon Rule Statement form i.e. IF condition THEN action The original form was written like this. Social Security Number (SSN) is Valid. The SSN specified in the application for disaster assistance is validated against data from the Social Security Administration using the applicant s first name, last name, damaged dwelling address, damaged dwelling phone number, and date of birth. This is not a rule; it s a procedure and it doesn t actually state the conditions for the ssn to be valid. So we need to convert it into a declarative rule format such as this:

7 If the applicant ssn is NOT in the SSA database then issue a warning If the applicant last name does not match the name in the SSA database then issue a warning If the applicant date of birth does not match the SSA date of birth then issue a warning If the ssn is missing then issue a warning If the format of the ssn is incorrect then issue a warning So you can see the original statement actually corresponds to more than one rule Identify Business Objects (Entities) By referring to the rule statements we can deduce the existence of objects such as these: Person who is submitting an application Property the damaged dwelling for which assistance is being sought Application the request for assistance Social Security Administration Record details of the ssn for the applicant Government Assistance Data details of other submitted, pending or processed applications These will be modeled in the Corticon vocabulary: Figure 1 The Business Entities Identify Relationships between Objects (associations and roles, cardinality and direction) An application will have exactly one requesting person specified An application will have exactly one damage property specified Figure 2 Specifying Associations Between Entities The role played by the person in this association is that of applicant

8 Identify Attributes and data types (integer, Boolean, string, decimal, date) Identify Possible Values (enumerated values, ranges, references to other attributes) Here are some of the properties for the status attribute of the Government Assistance Database Figure 3 Specifying Possible Values for an Attribute Create Vocabulary (or import it from UML or database) The Entire vocabulary now looks like this in Corticon:

9 Figure 4 The Vocabulary Notice how the Person and the Property that are associated with the Application are shown as

10 Create Sample Data (This helps to make sure the data model makes sense) This can be done in the Corticon Test tab Figure 5 Sample Test Data In this test data we are simulating the existence of a database for the SSA data and the GAD data. In later stages of development we will connect the vocabulary to a real database, but for now we can test our rules without all the complications of database access.

11 Generate Database (if desired) or map attributes to existing tables A database can be generated automatically from the vocabulary in Corticon Studio: First the database properties must be entered: Figure 6 Database Properties This is for HSQL (which ships with the Corticon) Next the business objects which are to be stored in the database must be marked as persistent: Figure 7 Adding Key Attributes for Database Access Also the attributes to be used to provide a unique key must be identified This will create the tables in the fema database in HSQL

12 Figure 8 Creating a Figure 1 Database Automatically from Studio Here is the SSADATABASE table Figure 9 The Database Tables The rows currently in the table are Figure 10 Rows in the SSA Database

13 If the database already existed and the table names match the business object names and the column names match the attribute names then Corticon will automatically do the mapping. Otherwise you will need to manually match up the vocabulary to the table Decide how the rules need to be grouped into Rulesheets There are no hard and fast rules about how to divide up the rules into groups, but in the case of validation type problems a good way to start is to group the rules according to the main attribute that they are validating In this example there are actually several sets of rules that apply to the social security number. We could put these all in a single rulesheet but in this case since there are some differences we will create a number of rulesheets to check the ssn. The rule groupings (from the original word doc) are a. Social Security Number (SSN) is Valid b. Social Security Number is a Multi-instance Number. c. Duplicate Social Security Number for One Disaster d. Social Security Number Belongs to a Minor So each group will become a rulesheet with tabs named as follows: Figure 11 The Rulesheet Tabs These are the rule statements that would be on the sheet SSNA Figure 12 The Rule Statements Model Rules Now we are ready to model the rules. Within this phase of rule modeling there are a number of steps

14 Determine Scope or context for the rulesheet The SCOPE section of the rulesheet is a place where we can define the context for the rules on the rulesheet. Essentially we tell Corticon which of the business objects we wish it to use in the rules. This is particularly important when the business objects contain references to other objects (associations) Here s what the scope section might look like: Figure 13 The Rulesheet Scope Line 1 refers to the Application and declares an ALIAS (called theapplication) Line 2 refers to the applicant who is on the application Line 3 refers to the property that is referred to on the application The key here is that now theapplicant and theproperty have a common context Then at line 4 we introduce another business object this represents the Social Security Administration database that we would need to refer to in order to validate the social security number, the name and the date of birth. Define any filters to limit the data going into the rulesheet (or to join related data if there s no explicit association) Since the SSA database may contain millions of records we need to filter that down to just the records that match the ssn on our application. This is done on the PRECONDTIONS/FILTERS section: Figure 14 The Rulesheet Filter This is a lot like the where clause in a SQL query. Define non-conditional actions such as initializations or messages In addition to checking that the ssn itself is valid we will need to compare the name on the application with the name on the SSA database. If the names are identical the making the match is easy, but if the

15 names are slightly different we will need some way to assess how close the names are. For example if the last name on the application is Greem but the last name on the SSA database is Green do we consider this to be a close match given than n and m are adjacent on the keyboard and this could have been a simple typo. This error might have arisen because of the very similar sounds of n and m. We can make use of some special functions to help evaluating these possibilities. First we can calculate something called the SOUNDEX value of the name this generates a code based on the sound of the name rather than its spelling. We can also make an assessment of whether the names might be the result of a simple miss-keying. This is a function called KEYBOARD SIMILARITY. We can perform these calculations in a section called NON-CONDITIONAL RULES Figure 15 Non Conditional Actions on a Rulesheet So as an example the soundex value of Green is G65 and the soundex value of Greem is also G65. So even though the names are spelled differently they have the same soundex value and could be considered to be the same. However if the two names were Green and Treen then the soundexes would be very different. Treen becomes T65. But in this case T is right above G on the keyboard and could represent a miss keying. In which case we might want to accept that the names are the same. Of course if the name was Smith then we d conclude there is no match on the names For each rule statement create a rule column that connects the conditions to the actions Here s what the rules might look like Figure 16 Decision Table Entries

16 Based on these rule statements Figure 17 Rule Statements with Substitution Variables Notice that we have customized the rule statements by adding references to the attributes. When the rules are executed these rule statements, along with the substituted values, will be part of the output from the rules. Analyze The Rules for Logical Errors The next step is to use the built in analysis tools to check if the rule model contains any logical errors. There are three checks that can be performed automatically by Corticon Figure 18 The Logical Analysis Buttons Ambiguity Check In this case the ambiguity check shows that rulesheet SSNA contains no ambiguities: Figure 19 Ambiguity Message If ambiguities were detected then we can resolve them by either Making the conditions more specific Adding additional conditions that resolve the ambiguity Adding overrides Noting that the ambiguity is acceptable it may be appropriate for several rules to execute. E.g. data validation Check for Completeness of the rules The completeness checker confirms that rulesheet SSNA has no missing rules:

17 Figure 20 Completeness Message If there were missing rules then Corticon would automatically add the missing conditions the business analyst would then need to determine the appropriate action to take for each of the added rules: If the added rules are essential cases (i.e. they have a distinct and different rule statement even if the outcome is the same) then add the appropriate actions If the added cases all represent the default case (i.e they all have the same rule statement) then consider adding a single default statement in the non-conditional action section along with a single postinfo for the common rule statement. Check the Completeness of the Test Data If your rules are unambiguous and complete then you will need a test case for every rule (at least) Generate Test Data Hand craft a test case corresponding to each rule column Copy the body of the condition values to a new rulesheet s action section and use that to generate the necessary test cases automatically Create a generic test data generator rule sheet (see rulesworld article on how to generate test data) Import test data in XML format Connect to a database to load test data Check for Logical Loops Use the Check for Logical Loops button Corticon confirms there are no logical loops in rulesheet SSNA Figure 21 Logical Loop Message

18 Test The Rules Test against sample data (using ccj) It s important to get the right answer for the right reason Indicate the expected result in the comments If the result is one or more attribute values then create attributes that contains the expected result and then add a final rulesheet to compare the actuals with the expected If the expected results are more complex structures then create parallel expected results business objects and add a rulesheet at the end to compare actual and expected Here s an example of some test results: Figure 22 Test Results Deploy Decision Service in a test environment Server installed on local machine under Tomcat or IIS On the Corticon Cloud Server Server installed under Websphere or Weblogic (probably not on the local machine) Configure appropriate monitored attributes Deployment console Once the rule model is complete it can be deployed to the Corticon execution engine. Corticon offers two modes of execution: 1. Web Services 2. In-process execution For the Web Services option the Corticon Web Console is used. Only authorized users can login to the console:

19 Figure 23 Logging on to the Server Console Figure 24 Server Console Options The first option allows you to see the currently deployed decision services Figure 25 Deployed Decision Services By clicking on the number of executions you can view the performance statistics for that decision service:

20 Figure 26 Server Performance - Distribution Chart Details of the decision service van be viewed by clicking on the name Figure 27 Decision Service Settings Various reports on the rule model can be generated from here too. This report allows you to list all of the rule statements in the rule model:

21 Figure 28 Rule Statements Report Other reports allows you to display more details of the actual rules The second option is used to deploy a new decision service Figure 29 Deploying a Decision Service Now the new decision service shows up in the list of deployed decision services

22 Figure 30 Decision Service Names and Versions Test the deployed decision service From Studio we can invoke this newly deployed decision service. The first step is to update the list of known deployed decision services: Figure 31 Update List of Deployed Decision Services in Studio In this example, Corticon has located decision services on several platforms

23 Figure 32 Deployed Decision Services Message Four were found on the local machine, five were found on the Corticon Cloud Server and eleven were found on another machine. These decision services will appear in the tester: Figure 33 List of Available Decision Services for Testing Once we have selected the one we want it will appear at the top of the test case: Figure 34 Testing Using a Remote Decision Service Now when we execute the test, the data will be sent to the Corticon server for execution. After executing in once we will see that the server console is updated. If we want to monitor the decisions made by the rules we can open the service configuration section:

24 Figure 35 Configuring Monitored Attributes Currently no attributes are being monitored. If we add some attributes like this Figure 36 Monitored Attribute List and then run more tests we will see something like this:

25 Figure 37 Monitored Attribute Charts These same tests can be executed from any SOAP client such as SoapUI. In order to do this you must first generate the WSDLK for the decision service. This is done from the deployment console which is accessible in Studio: Figure 38 Deployment Console in Studio Once the WSDL is generated it can be imported into SOAP UI and will look something like this: Soap screenshot Test using application code (java or.net, or BPM) Java fragment

26 Deploy Decision Service on Production Server Corticon Collaborator is the tool that provides this functionality. Authorized users check in and checkout their rule models, vocabularies and test cases and a complete history of changes and versions is maintained. Here is an example of what a user might see: Figure 39 Rule Repository Folders Within a folder the user will see: Figure 40 Repository Functions

27 The menu shows some of the functions that can be performed. When a rule model needs to be moved into production, a workflow can be started in Collaborator which moves the assets through a series of approval steps such as notifying approvers by , coordinating their responses and keeping an audit trail of the approvals Here s what a rule reviewer might see in her inbox: Figure 41 Notification of Rule Models to be Approved And here is what might appear in the content of the Figure 42 Sample Notification By following the link the rule approver can gain access to the rule asset: This may require that she logon

28 Figure 43 Access to the Repository is Controlled After Jenny performs her review task, Tom (the rule author) will be notified by Figure 44 Notification of Approval This information is also maintained in the Collaborator audit trails. Tom can monitor the progress of the approval process as follows:

29 Figure 45 Tracking Approval Workflows You can see that there are several overdue tasks. Tom can view the details of any of these tasks: Figure 46 Approval Workflow Details We can see in this example that Jenny (the QA person) approved it, Dick (whose participation was optional) was skipped but Harry (the administrator) is holding things up Corticon supports the deployment of rules and rule sets to various environments (i.e. development, staging, production). Back in Collaborator we saw the folder that the rule author had access to. If we now login as the administrator we see more folders (which the rule author does not have access to). The administrator can see the development folder and also the UAT and production folders

30 Figure 47 Migrating Rule Assets to Production In response to the rule author s workflow, the administrator will migrate the rule assets from Development into UAT. Collaborator will keep a log of this activity. Once in UAT more testing and approval cycles will probably take place until eventually the rules get migrated into production.

31 Invoke the production rules via the application code (or BPM) Once the decision service is deployed on the production server it can be invoked by any SOAP Client or by any BPM software that can make a web services call or from application code such as Java or.net SOAP CLIENTS A generic SOAP client such as SOAP UI can be used to set up and run tests against the deployed decision service: Figure 48 A Typical SOAP Client The SOAP Request would look like this Figure 49 Corticon SOAP Request The results are resulted similarly to what you see in the Corticon tester:

32 Figure 50 Corticon SOAP Response In fact you can export this soap message from the test cases in Studio: Figure 51 Studio Test Data By selecting from the Test menu

33 Figure 52 Studio Export SOAP Menu BPM Clients Corticon also partners with many of the BPM vendors. Here s an example of a business process that invokes a decision service. Most BPMs provide for the import of WSDL and automatically generate the necessary connection to external web services. All that is required to invoke the decision service is to map the process variables to the input variables of the decision service.

34 Figure 53 Decision Service Invoked from a Business Process Java Clients Decision Services may also be invoked from programming languages such as Java. In this case, in addition to the web services interface, you can also make a direct in-process call. To do this the Corticon Server classes are compiled into your java program. Then you can invoke the server class execute method and pass the data either as XML or as native java objects. Here s an example of the core java code you would write to invoke a decision service:

35 Figure 54 Java Code to Invoke a Decision Service The actual code would contain additional statements to populate the FEMAdata object, to catch any errors and to process the results coming back from the rule engine.

36 Monitor the Production Decision Services Execution Monitoring of Rules Once the rules are in production and being used, our administrator may want to monitor how things are going (how many executions per second for example) and our business user may want to know how many executions resulted in High, Medium or Low risk. This can be accomplished by using the Corticon Monitoring System Server environment: Figure 55 Server Environment Settings The Server settings:

37 Figure 56 Server Settings Sever Throughput Graph Figure 57 Server Throughput Graph Harry sees that performance is not as high as expected and recommends increasing the number of transactions that are sent in one call to the rule engine. Immediately he sees the throughput jump from about 300 per second to almost 20,000 per second.

38 Figure 58 Server Response Time Graph

39 Decision Service Statistics By examining the deployed Decision Services Harry can see that most of the transactions are using version 3, over 1 million in fact (the latest version) but a few transactions are still using the older versions. Both Tom and Harry can monitor the number of transactions being processed by the server: Figure 59 Deployed Decision Services Tom can use the server monitor to see the distribution of decisions Figure 60 Monitored Attributes In this example he can see that about 60% of the 1.5 million transactions have been rated as low risk, with high and medium roughly equal at about 20% each.

40

The Corticon Rule Modeling Methodology. A Case Study. Mortgage Approval

The Corticon Rule Modeling Methodology. A Case Study. Mortgage Approval The Corticon Rule Modeling Methodology A Case Study Mortgage Approval By Mike Parish Contents Table Of Figures... 4 The Business Problem... 6 Basic Rule Modeling... 6 Identify the Business Decision(s)

More information

Rule Modeling Case Study Generic Diabetic Monitoring. Mike Parish

Rule Modeling Case Study Generic Diabetic Monitoring. Mike Parish Rule Modeling Case Study Generic Diabetic Monitoring Mike Parish Contents Table of Figures... 3 Rule Modeling Case Study... 4 Step 1 Review and clarify the rule statements... 4 Step 2 Determine the Data

More information

2013 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved.

2013 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. Introduction... 3 What are Business Rules?... 3 What is a Corticon Decision Service?... 4 What is the Corticon Business Rules Server?... 4 What is Progress Rollbase?... 4 Installation and setup... 5 Install

More information

Tutorial: Deploying a Progress Corticon Decision Service as a Web Service for.net. Product Version: Corticon 5.6

Tutorial: Deploying a Progress Corticon Decision Service as a Web Service for.net. Product Version: Corticon 5.6 Tutorial: Deploying a Progress Corticon Decision Service as a Web Service for.net Product Version: Corticon 5.6 Introduction... 3 Setting up the tutorial... 4 Step 1: Installing Corticon Server for.net...

More information

Product Release Notes Alderstone cmt 2.0

Product Release Notes Alderstone cmt 2.0 Alderstone cmt product release notes Product Release Notes Alderstone cmt 2.0 Alderstone Consulting is a technology company headquartered in the UK and established in 2008. A BMC Technology Alliance Premier

More information

Dataworks Development, Inc. P.O. Box 174 Mountlake Terrace, WA (425) fax (425)

Dataworks Development, Inc. P.O. Box 174 Mountlake Terrace, WA (425) fax (425) Dataworks Development, Inc. P.O. Box 174 Mountlake Terrace, WA 98043 (425) 673-1974 fax (425) 673-2506 The Freezerworks Validation Verification Package Dataworks Development, Inc. has over 20 years of

More information

2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows,

2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows, 2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows, Windows Server, and other product names are or may be registered

More information

Corticon Rule Modeling Challenge Jan 2018 Order Promotions

Corticon Rule Modeling Challenge Jan 2018 Order Promotions Corticon Rule Modeling Challenge Jan 2018 Order Promotions Mike Parish The Problem The objective of this challenge is to help merchants to define various promotions for their sales orders and to automatically

More information

Using ILOG JRules in WebSphere Integration Developer

Using ILOG JRules in WebSphere Integration Developer Using ILOG JRules in WebSphere Integration Developer Table of Contents Introduction... 3 Goal... 3 Time to Complete... 3 Prerequisites... 3 System Setup... 3 Resources... 3 Overview... 4 The Application...

More information

Title Page. Working with Task Workflows

Title Page. Working with Task Workflows Title Page Working with Task Workflows April 2013 Copyright & Document ID Copyright 2012-2013 Software AG USA, Inc. All rights reserved. The webmethods logo, Get There Faster, Smart Services and Smart

More information

Corticon Business Rules for OpenEdge

Corticon Business Rules for OpenEdge Corticon Business Rules for OpenEdge Contents Business Rules for OpenEdge... Error! Bookmark not defined. Progress Exchange 2013... Error! Bookmark not defined. Introduction... 3 Exercise 1 Model Corticon

More information

IBM Case Manager Version User's Guide IBM SC

IBM Case Manager Version User's Guide IBM SC IBM Case Manager Version 5.3.3 User's Guide IBM SC19-3274-10 IBM Case Manager Version 5.3.3 User's Guide IBM SC19-3274-10 This edition applies to Version 5 Release 3 Modification 3 of IBM Case Manager

More information

Resolving Actions and Completion Policy Status About Non-Workflow BPs Creating a BP Record... 40

Resolving Actions and Completion Policy Status About Non-Workflow BPs Creating a BP Record... 40 Unifier Project Controls User Guide Version 17 September 2017 Contents Introduction to Project Controls... 17 Downloading and Configuring Project Controls Base Product (On-Premises Deployment)17 Downloading

More information

SAS Model Manager 2.2. Tutorials

SAS Model Manager 2.2. Tutorials SAS Model Manager 2.2 Tutorials The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS Model Manager 2.2: Tutorials. Cary, NC: SAS Institute Inc. SAS Model Manager

More information

Corticon Migration Guide

Corticon Migration Guide Corticon Migration Guide Notices Copyright agreement 2014 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are

More information

Unit Assessment Guide

Unit Assessment Guide Unit Assessment Guide Unit Details Unit code Unit name Unit purpose/application ICTWEB425 Apply structured query language to extract and manipulate data This unit describes the skills and knowledge required

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

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

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

User Manual Section 3 Admin Module Admin Module

User Manual Section 3 Admin Module Admin Module Admin Module 3. Admin Module... 3-1 3.1 Purpose and Function of Admin Module... 3-1 3.2 Accessing the Admin Module... 3-1 3.3 User Admin Functions... 3-2 3.3.1 Edit Grantee Contact Admin (FO)... 3-2 Procedure:

More information

We start by providing you with an overview of the key feature of the IBM BPM Process Portal.

We start by providing you with an overview of the key feature of the IBM BPM Process Portal. Lab 1 Process Portal 1.1 Overview This lab exercise will make you familiar with the key capabilities of the ready-to-use Process Portal included with IBM Business Process Manager (BPM). You will experience

More information

New Jersey Department of the Treasury Division of Purchase and Property

New Jersey Department of the Treasury Division of Purchase and Property New Jersey Department of the Treasury Division of Purchase and Property Quick Reference Guide VENDOR REGISTRATION Rev. 3/12/2018 2:46:00 PM Table of Contents 1. Purpose... 3 2. NJSTART 24/7 Availability...

More information

The Web Service Sample

The Web Service Sample The Web Service Sample Catapulse Pacitic Bank The Rational Unified Process is a roadmap for engineering a piece of software. It is flexible and scalable enough to be applied to projects of varying sizes.

More information

Policy Manager in Compliance 360 Version 2018

Policy Manager in Compliance 360 Version 2018 Policy Manager in Compliance 360 Version 2018 Policy Manager Overview 3 Create a Policy 4 Relate a Policy to Other Policies, Departments, and Incidents 8 Edit a Policy 10 Edit a Policy by Using the Edit

More information

Vendor Inquiry and Reports Munis Version 11.2

Vendor Inquiry and Reports Munis Version 11.2 Objective This document gives you step by step instructions for using the Vendor Inquiry/Reports program to query the vendor master table for information regarding a specific vendor(s) and how to produce

More information

SQL Server Solutions GETTING STARTED WITH. SQL Secure

SQL Server Solutions GETTING STARTED WITH. SQL Secure SQL Server Solutions GETTING STARTED WITH SQL Secure Purpose of this document This document is intended to be a helpful guide to installing, using, and getting the most value from the Idera SQL Secure

More information

EPAF User Guide. Your guide for navigating the EPAF System

EPAF User Guide. Your guide for navigating the EPAF System EPAF User Guide Your guide for navigating the EPAF System This booklet outlines the use of Electronic Personnel Action Forms in the Banner Web for Employees. Office of Human Resources 02/08/2013 Frequently

More information

IBM WebSphere ILOG JRules V7.0, Application Development

IBM WebSphere ILOG JRules V7.0, Application Development 000-529 IBM WebSphere ILOG JRules V7.0, Application Development Version 3.1 QUESTION NO: 1 The Business Analyst has discovered a large number of business rules. The object model and vocabulary is the same

More information

TIBCO Complex Event Processing Evaluation Guide

TIBCO Complex Event Processing Evaluation Guide TIBCO Complex Event Processing Evaluation Guide This document provides a guide to evaluating CEP technologies. http://www.tibco.com Global Headquarters 3303 Hillview Avenue Palo Alto, CA 94304 Tel: +1

More information

Talend Open Studio for Data Quality. User Guide 5.5.2

Talend Open Studio for Data Quality. User Guide 5.5.2 Talend Open Studio for Data Quality User Guide 5.5.2 Talend Open Studio for Data Quality Adapted for v5.5. Supersedes previous releases. Publication date: January 29, 2015 Copyleft This documentation is

More information

Copyright About the Customization Guide Introduction Getting Started...13

Copyright About the Customization Guide Introduction Getting Started...13 Contents 2 Contents Copyright...10 About the Customization Guide...11 Introduction... 12 Getting Started...13 Knowledge Pre-Requisites...14 To Prepare an Environment... 14 To Assign the Customizer Role

More information

Collaxa s BPEL4WS 101 Tutorial

Collaxa s BPEL4WS 101 Tutorial Collaxa s BPEL4WS 101 Tutorial Learn BPEL4WS through the development of a Loan Procurement Business Flow 1 Requirements of the Loan Business Flow 2 3 4 5 Quick Tour/Demo BPEL4WS Code Review Anatomy of

More information

What s New in Ideagen Pentana 4.2

What s New in Ideagen Pentana 4.2 --- What s New in Ideagen Pentana 4.2 Table of Contents 1 Introduction... 2 2 Major New Features... 3 2.1 Key Issues/Strategic Risks... 3 2.2 Definition Sign Offs... 3 2.3 Sampling... 4 2.4 Audit Problems...

More information

GREENSHADES & AVIONTÉ

GREENSHADES & AVIONTÉ GREENSHADES & AVIONTÉ Setup and Filing with Greenshades Created 9/17/2014 1270 Eagan Industrial Road, Suite 150 Eagan, MN 55121 877.428.4668 www.avionte.com Greenshades & Avionté Table of Contents Greenshades

More information

/ / SAP BODS TRAINING

/ / SAP BODS TRAINING SAP BODS TRAINING Data Services Training Content Data services Fundamentals History of BODS and Origin EIM relation to BODS Different Versions of BODS (3.0, 4.0, 4.1, 4.2) & Major differences Architecture

More information

Planets Testbed Prototype Release and Report

Planets Testbed Prototype Release and Report Project Number Project Title Title of Deliverable Deliverable Number Contributing Sub-project and Work-package Deliverable Dissemination Level Deliverable Nature IST-2006-033789 Planets Testbed Prototype

More information

appcompass Developer s Guide For: appcompass Data Integration Studio appcompass Business Rules Studio appcompass Visual Studio Editions

appcompass Developer s Guide For: appcompass Data Integration Studio appcompass Business Rules Studio appcompass Visual Studio Editions appcompass Developer s Guide For: appcompass Data Integration Studio appcompass Business Rules Studio appcompass Visual Studio Editions Version 5.1 July, 2013 Copyright appstrategy Inc. 2013 appcompass

More information

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE)

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Model Builder User Guide Version 1.3 (24 April 2018) Prepared For: US Army Corps of Engineers 2018 Revision History Model

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

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS RESOLV EDI CONTROL User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS Copyright 2011-2016 by Achieve IT Solutions These materials are subject to change without notice. These materials are

More information

Compiere 3.8 GA Quick Info Widgets 07/15/2012

Compiere 3.8 GA Quick Info Widgets 07/15/2012 Compiere 3.8 GA Quick Info Widgets 07/15/2012 Quick Info Widget Quick Info Widget is a customizable side bar that can be attached to any window within Compiere. It appears on the right side of the window

More information

Copyright...9. About the Guide Introduction Acumatica Customization Platform...12

Copyright...9. About the Guide Introduction Acumatica Customization Platform...12 Contents 2 Contents Copyright...9 About the Guide... 10 Introduction... 11 Acumatica Customization Platform...12 Customization Project... 12 Types of Items in a Customization Project... 13 Deployment of

More information

Release Notes for Cisco Service Portal for Release 9.4

Release Notes for Cisco Service Portal for Release 9.4 Release Notes for for Release 9.4 First Published: July 27, 2012 Contents New and Changed Information, page 1 Installation Notes, page 5 Limitations and Restrictions, page 5 Important Notes, page 6 Documentation

More information

Simplify the future. Bpm online marketplace Development Guide

Simplify the future. Bpm online marketplace Development Guide Simplify the future Bpm online marketplace Development Guide Table of Contents How to start the development for marketplace 2-3 Developer workspace 4 Developer profile setup 4-5 Ordering development site

More information

Configure FileNet Image Services to Work with P8 Content Manager

Configure FileNet Image Services to Work with P8 Content Manager IBM Configure FileNet Image Services to Work with P8 Content Manager Steps to configure CFS-IS on P8 Content Manager and federate content from FileNet Image Services By Anita Behera Abstract: The users

More information

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Cloud Service Administrator's Guide 15 R2 March 2016 Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Configuring Settings for Microsoft Internet Explorer...

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 9.30 HP Demand Management User s Guide Document Release Date: September 2014 Software Release Date: September 2014 Legal Notices Warranty The

More information

Centrify Infrastructure Services

Centrify Infrastructure Services Centrify Infrastructure Services Evaluation Guide for Windows November 2017 (release 2017.2) Centrify Corporation Legal notice This document and the software described in this document are furnished under

More information

Service Manager. powered by HEAT. Migration Guide for Ivanti Service Manager

Service Manager. powered by HEAT. Migration Guide for Ivanti Service Manager Service Manager powered by HEAT Migration Guide for Ivanti Service Manager June 16, 2017 Copyright Notice This document contains the confidential information and/or proprietary property of Ivanti, Inc.

More information

APPENDIX 1 EAI TOOLS

APPENDIX 1 EAI TOOLS 87 APPENDIX 1 EAI TOOLS A 1.1 WEBMETHODS COMPONENTS A 1.1.1 Integration Server The Integration Server Administrator is the utility we use to accomplish administrative tasks. It is used to monitor server

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

Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios

Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios Contents Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios... 1 1. Introduction... 1

More information

OnCommand Insight 7.1 Planning Guide

OnCommand Insight 7.1 Planning Guide OnCommand Insight 7.1 Planning Guide NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501 Support telephone: +1 (888) 463-8277 Web: www.netapp.com

More information

ClientTrack s Guide to CSV Import ClientTrack s HUD CSV 4.1 Import is available is ClientTrack versions 15 and later.

ClientTrack s Guide to CSV Import ClientTrack s HUD CSV 4.1 Import is available is ClientTrack versions 15 and later. ClientTrack s Guide to CSV Import ClientTrack s HUD CSV 4.1 Import is available is ClientTrack versions 15 and later. Import Process Overview ClientTrack s HUD CSV 4.1 import is designed to help communities

More information

Migration Best Practices for Oracle Access Manager 10gR3 deployments O R A C L E W H I T E P A P E R M A R C H 2015

Migration Best Practices for Oracle Access Manager 10gR3 deployments O R A C L E W H I T E P A P E R M A R C H 2015 Migration Best Practices for Oracle Access Manager 10gR3 deployments O R A C L E W H I T E P A P E R M A R C H 2015 Disclaimer The following is intended to outline our general product direction. It is

More information

Teamcenter Getting Started with Workflow. Publication Number PLM00194 C

Teamcenter Getting Started with Workflow. Publication Number PLM00194 C Teamcenter 10.1 Getting Started with Workflow Publication Number PLM00194 C Proprietary and restricted rights notice This software and related documentation are proprietary to Siemens Product Lifecycle

More information

2008 WebSphere System z Podcasts Did you say Mainframe?

2008 WebSphere System z Podcasts Did you say Mainframe? TITLE: WebSphere Process Server and WebSphere Business Services Fabric version 6.2 Product Announcements for z/os HOST: Hi, and welcome to the Did you say Mainframe? podcast series. This is where we regularly

More information

What s New in PerfectForms Version Release Date: January 11, 2010

What s New in PerfectForms Version Release Date: January 11, 2010 What s New in PerfectForms Version 1.16 Release Date: January 11, 2010 Contents 1 System... 3 1.1 Better Account Storage Size Management for Users... 3 1.2 Ability to Use Custom E-mail Servers to Send

More information

WEBCON BPS. History of changes for version WEBCON BPS 1

WEBCON BPS. History of changes for version WEBCON BPS 1 WEBCON BPS History of changes for version 2017.1 WEBCON BPS 1 Table of contents 1. Information... 3 2. New features... 5 2.1. Form rules... 5 2.2. Business rules... 6 2.2.1. New operators... 6 2.2.2. Loading

More information

The Seven Steps to Implement DataOps

The Seven Steps to Implement DataOps The Seven Steps to Implement Ops ABSTRACT analytics teams challenged by inflexibility and poor quality have found that Ops can address these and many other obstacles. Ops includes tools and process improvements

More information

Participant User Guide, Version 2.6

Participant User Guide, Version 2.6 Developers Integration Lab (DIL) Participant User Guide, Version 2.6 3/17/2013 REVISION HISTORY Author Date Description of Change 0.1 Laura Edens Mario Hyland 9/19/2011 Initial Release 1.0 Michael Brown

More information

DB2 Stored Procedure and UDF Support in Rational Application Developer V6.01

DB2 Stored Procedure and UDF Support in Rational Application Developer V6.01 Session F08 DB2 Stored Procedure and UDF Support in Rational Application Developer V6.01 Marichu Scanlon marichu@us.ibm.com Wed, May 10, 2006 08:30 a.m. 09:40 a.m. Platform: Cross Platform Audience: -DBAs

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware User's Guide for Oracle Business Process Management 11g Release 1 (11.1.1.4.0) E15175-03 January 2011 Oracle Fusion Middleware User's Guide for Oracle Business Process Management

More information

Getting Started with Web Services

Getting Started with Web Services Getting Started with Web Services Getting Started with Web Services A web service is a set of functions packaged into a single entity that is available to other systems on a network. The network can be

More information

IBM Cloud Orchestrator Version Content Development Guide

IBM Cloud Orchestrator Version Content Development Guide IBM Cloud Orchestrator Version 2.4.0.2 Content Development Guide Note Before using this information and the product it supports, read the information in Notices. Contents Preface.............. vii Who

More information

Project and Portfolio Management Center

Project and Portfolio Management Center Project and Portfolio Management Center Software Version: 9.42 Application Portfolio Management Administrator Guide Go to HELP CENTER ONLINE http://admhelp.microfocus.com/ppm/ Document Release Date: July

More information

Screening Online User Guide

Screening Online User Guide Screening Online User Guide Contents Screening Online... 1 User Guide... 1 1. Introduction... 5 2. Log in... 6 3. Initial Screening Sanctions and Enforcements... 7 4. Match Overview Standard Interface...

More information

arxiv: v1 [cs.se] 17 Aug 2016

arxiv: v1 [cs.se] 17 Aug 2016 Introduction to the Case Management Model and Notation (CMMN) arxiv:1608.05011v1 [cs.se] 17 Aug 2016 Mike A. Marin University of South Africa IBM Analytics Group mmarin@acm.org August 18, 2016 Abstract

More information

v Update Release Notes

v Update Release Notes Release Notes v5.11.1000 Update Updated: 07/14/2011 2011 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders. Release

More information

INTEGRATED WORKFLOW COPYEDITOR

INTEGRATED WORKFLOW COPYEDITOR COPYEDITOR Content Asset or Learning Object Tagging INTEGRATED WORKFLOW CONTENT DEVELOPMENT PHASE In this Content Development workflow phase process, you add or modify Pearson, discipline-specific, and/or

More information

Office Adapters for Quark Publishing Platform

Office Adapters for Quark Publishing Platform Office Adapters for Quark Publishing Platform Contents Getting started... 1 About Quark Publishing Platform...1 System requirements... 3 Installing the Office Adapters for Quark Publishing Platform...

More information

Oracle SOA Suite 10g: Services Orchestration

Oracle SOA Suite 10g: Services Orchestration Oracle University Contact Us: 01 800 214 0697 Oracle SOA Suite 10g: Services Orchestration Duration: 5 Days What you will learn This course deals with the basic concepts of Service Orchestration (SOA)

More information

OLAP Introduction and Overview

OLAP Introduction and Overview 1 CHAPTER 1 OLAP Introduction and Overview What Is OLAP? 1 Data Storage and Access 1 Benefits of OLAP 2 What Is a Cube? 2 Understanding the Cube Structure 3 What Is SAS OLAP Server? 3 About Cube Metadata

More information

Contents. WorkBook release note. WorkBook version: Release date: 06/02/2013. Author: René Præstholm Date: 06/02/2013

Contents. WorkBook release note. WorkBook version: Release date: 06/02/2013. Author: René Præstholm Date: 06/02/2013 WorkBook version: 8.2.80 Release date: 06/02/2013 Author: René Præstholm rp@workbook.net Date: 06/02/2013 General notice: As new views, tab s and reports are not automatically added to each user due to

More information

Red Flag Policy and Identity Theft Prevention Program

Red Flag Policy and Identity Theft Prevention Program Unified Government of Wyandotte County and Kansas City, Kansas Adopted: 5/11/2011 Red Flag Policy and Identity Theft Prevention Program Authority: The Mayor and the Board of Commissioners are responsible

More information

IBM Kenexa BrassRing on Cloud. Rules Automation Manager Guide

IBM Kenexa BrassRing on Cloud. Rules Automation Manager Guide Rules Automation Manager Guide Document Date: May 2018 2 Edition Notice Note: Before using this information and the product it supports, read the information in Notices. This edition applies to IBM Kenexa

More information

IBM InfoSphere Master Data Management Version 11 Release 5. Overview IBM SC

IBM InfoSphere Master Data Management Version 11 Release 5. Overview IBM SC IBM InfoSphere Master Data Management Version 11 Release 5 Overview IBM SC27-6718-01 IBM InfoSphere Master Data Management Version 11 Release 5 Overview IBM SC27-6718-01 Note Before using this information

More information

Intellicus Getting Started

Intellicus Getting Started Intellicus Getting Started Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com Copyright

More information

What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1

What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1 What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1 2010 Active Endpoints Inc. ActiveVOS is a trademark of Active Endpoints, Inc. All other company and product names are the property of their respective

More information

Certkiller.A QA

Certkiller.A QA Certkiller.A00-260.70.QA Number: A00-260 Passing Score: 800 Time Limit: 120 min File Version: 3.3 It is evident that study guide material is a victorious and is on the top in the exam tools market and

More information

Unifier Project Controls User Guide

Unifier Project Controls User Guide Unifier Project Controls User Guide 16 R2 September 2016 Contents Introduction to Project Controls... 17 Components of Project Controls... 19 About the Owner Template... 19 About the Contractor Template...

More information

Introduction. Key Features and Benefits

Introduction. Key Features and Benefits Introduction Stabilix Underwriting Framework is a highly adaptable XML based J2EE com-pliant software platform built on the Stabilix s business process automation (BPA) suite, code named CloudEx. CloudEx

More information

ERM User guide. The Royal Children s Hospital, Melbourne

ERM User guide. The Royal Children s Hospital, Melbourne ERM User guide The Royal Children s Hospital, Melbourne Compiled by Katherine Lieschke Ethics Submissions Officer, Melbourne Children s Trials Centre With thanks to the Mater Research Ethics Review Manager

More information

Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide. Release February 2016 E

Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide. Release February 2016 E Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide Release 8.0.2.0.0 February 2016 E65393-01 Oracle Financial Services Governance, Risk, and Compliance Workflow Manager

More information

The Now Platform Reference Guide

The Now Platform Reference Guide The Now Platform Reference Guide A tour of key features and functionality START Introducing the Now Platform Digitize your business with intelligent apps The Now Platform is an application Platform-as-a-Service

More information

Elders Estates Privacy Notice

Elders Estates Privacy Notice 15A Bath Street, Ilkeston Derbyshire. DE7 8AH 01159 32 55 23 info@eldersestates.co.uk 31 Market Place, Ripley Derbyshire. DE5 3HA 01773 30 44 44 info@eldersestates.co.uk Elders Estates Privacy Notice Introduction

More information

The INSERT INTO Method

The INSERT INTO Method Article: Transferring Data from One Table to Another Date: 20/03/2012 Posted by: HeelpBook Staff Source: Link Permalink: Link SQL SERVER TRANSFERRING DATA FROM ONE TABLE TO ANOTHER Every DBA needs to transfer

More information

Test bank for accounting information systems 1st edition by richardson chang and smith

Test bank for accounting information systems 1st edition by richardson chang and smith Test bank for accounting information systems 1st edition by richardson chang and smith Chapter 04 Relational Databases and Enterprise Systems True / False Questions 1. Three types of data models used today

More information

IBM Atlas Policy Distribution Administrators Guide: IER Connector. for IBM Atlas Suite v6

IBM Atlas Policy Distribution Administrators Guide: IER Connector. for IBM Atlas Suite v6 IBM Atlas Policy Distribution Administrators Guide: IER Connector for IBM Atlas Suite v6 IBM Atlas Policy Distribution: IER Connector This edition applies to version 6.0 of IBM Atlas Suite (product numbers

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

TechDirect User's Guide for ProDeploy Client Suite

TechDirect User's Guide for ProDeploy Client Suite TechDirect User's Guide for ProDeploy Client Suite Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

Testkings.TB questions TB TIBCO ActiveMatrix BPM Solution Designer

Testkings.TB questions TB TIBCO ActiveMatrix BPM Solution Designer Testkings.TB0-121.99 questions Number: TB0-121 Passing Score: 800 Time Limit: 120 min File Version: 6.2 TB0-121 TIBCO ActiveMatrix BPM Solution Designer This is the best VCE I ever made. Try guys and if

More information

OnCommand Insight 7.2

OnCommand Insight 7.2 OnCommand Insight 7.2 Planning Guide for the Java UI March 2016 215-10395_A0 doccomments@netapp.com Table of Contents 3 Contents OnCommand Insight Plan features... 5 OnCommand Insight product portfolio...

More information

User Stories Report. Project. Statistics: Name Start End Weather Forecaster 5/2/ /7/2005

User Stories Report. Project. Statistics: Name Start End Weather Forecaster 5/2/ /7/2005 User Stories Report Project Name Start End Weather Forecaster 5/2/2005 10/7/2005 Statistics: User Stories Count: 4 Tasks Count: 8 Bugs Count: 6 Total Spent Time: 70 1. Heat Measurement Device 1.1. Scope

More information

Portfolios Creating and Editing Portfolios... 38

Portfolios Creating and Editing Portfolios... 38 Portfolio Management User Guide 16 R1 March 2017 Contents Preface: Using Online Help... 25 Primavera Portfolio Management Overview... 27 Portfolio Management Software for Technology Leaders... 27 Solution

More information

SharePoint Portal Server 2003 Advanced Migration Scenarios

SharePoint Portal Server 2003 Advanced Migration Scenarios SharePoint Portal Server 2003 Advanced Migration Scenarios White Paper Published: March 2004 Table of Contents Introduction 1 Related White Papers 1 Background 2 SharePoint Portal Server 2003 Document

More information

Oracle Warehouse Builder 10g Runtime Environment, an Update. An Oracle White Paper February 2004

Oracle Warehouse Builder 10g Runtime Environment, an Update. An Oracle White Paper February 2004 Oracle Warehouse Builder 10g Runtime Environment, an Update An Oracle White Paper February 2004 Runtime Environment, an Update Executive Overview... 3 Introduction... 3 Runtime in warehouse builder 9.0.3...

More information

Getting Started with Web Services

Getting Started with Web Services Getting Started with Web Services Getting Started with Web Services A web service is a set of functions packaged into a single entity that is available to other systems on a network. The network can be

More information

ACM INTERNATIONAL COLLEGIATE PROGRAMMING CONTEST. California State University, Sacramento s. Contestant s Guide

ACM INTERNATIONAL COLLEGIATE PROGRAMMING CONTEST. California State University, Sacramento s. Contestant s Guide ACM INTERNATIONAL COLLEGIATE PROGRAMMING CONTEST California State University, Sacramento s PC 2 Contestant s Guide This guide is intended to familiarize you with the process of submitting programs to Contest

More information

Active Endpoints. ActiveVOS Platform Architecture Active Endpoints

Active Endpoints. ActiveVOS Platform Architecture Active Endpoints Active Endpoints ActiveVOS Platform Architecture ActiveVOS Unique process automation platforms to develop, integrate, and deploy business process applications quickly User Experience Easy to learn, use

More information