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

Size: px
Start display at page:

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

Transcription

1 The Corticon Rule Modeling Methodology A Case Study Mortgage Approval By Mike Parish

2 Contents Table Of Figures... 4 The Business Problem... 6 Basic Rule Modeling... 6 Identify the Business Decision(s) to be made... 6 Collect and Review Rules needed for each decision... 6 Identify Business Objects (Entities)... 6 Create a Corticon Vocabulary... 7 Create Sample Data... 7 Decide how the rules need to be grouped into Rule sheets... 8 Model Rules #1 and # For each rule statement create a rule column that connects the conditions to the actions... 8 Write Natural Language Statements if Desired... 9 Run Test Cases Check for Rule Ambiguity Check for Rule Completeness Rule Changes The Ruleflow Effective Dating of Decision Services Advanced Rule Modeling Vocabulary for Complex Data Structures Sample Complex Hierarchical Data Identifying the Context of a Rulesheet using Scope Operators for Collections Deploy Decision Services The Deployment Console The Web Console Viewing Deployed Decision Services Decision Service Details Web Interface for Viewing the Rules... 24

3 Editing the Rules in the Web Interface The web editor includes the analysis tools Monitoring Key Decision Service Attributes Running Tests from the Web Interface Invoking Deployed Decision Services from Corticon Studio Managing Rules Invoke the production rules via the application code (or BPM) Using Other SOAP Clients BPM Clients Savvion Integration Savvion Web Application PCT Dashboard Java Clients In-Process Java with Java Objects Java with XML Payload Visual Basic Invocation In-process call with XML Web Services Call from Java How to Generate Test Data Performance... 50

4 Table Of Figures Figure 1 Client Business Object... 7 Figure 3 Sample Test Data... 7 Figure 4 Rule Statements... 8 Figure 6 Rules Modeled As Specified... 9 Figure 7 Natural Language... 9 Figure 8 Analysis Buttons Figure 9 A Test Case Figure 10 Conflicting Rules Found Figure 11 Ambiguity Detected Automatically By Corticon Figure 12 Resolving the Ambiguity Figure 13. Test Case Now Gets the Correct Answers Figure 14 Completeness Checker Figure 15 Rule for LTV 80% or more Figure 32 Vocabulary for Complex Data Structure Figure 33 Sample Data for Complex Structure Figure 34 Client, Account, Transaction Hierarchy Figure 37 Summing Amounts Figure 42 Test Data for Complex Data Structure Figure 44 Collection Operators Figure 45 Deployment Console Figure 46 Logging on to the Server Console Figure 47 Server Console Options Figure 48 Deployed Decision Services Figure 49 Decision Service Settings Figure 51 Natural Language View of the Deployed Rules Figure 52 Creating a New Version in the Web Console Figure 53 Web Based Rule Editor Figure 54 Analysis Tools in the Web Console Figure 56 Setting Up Monitored Attributes Figure 57 Exporting a Test Case as XML Figure 58 Setting Up a Test in the Web Console Figure 59 Test Results from Web Console Figure 60 Using Studio to Execute Deployed Decision Services Figure 61 Execution Count Figure 62 Monitored Attributes Figure 77 Rule Repository Folders Figure 78 Repository Functions Figure 79 Notification of Rule Models to be Approved Figure 80 Sample Notification... 33

5 Figure 81 Access to the Repository is Controlled Figure 82 Notification of Approval Figure 83 Tracking Approval Workflows Figure 84 Approval Workflow Details Figure 85 Migrating Rule Assets to Production Figure 86 Deployment Console in Studio Figure 87 A Typical SOAP Client Figure 88 Corticon SOAP Request Figure 89 Corticon SOAP Response Figure 90 Studio Test Data Figure 91 Studio Export SOAP Menu Figure 92 Decision Service Invoked from a Business Process (Savvion) Figure 93 Mapping Corticon Inputs Figure 94 Mapping Corticon Outputs Figure 95 Starting the Business Process Figure 96 Web Data Entry Form Figure 97 User's Task List Figure 98 Suspension Status Determined Figure 99 Monitoring the Decision Results Figure 100 Performance Dashboard Figure 101 In-Process Execution with Java Payload Figure 102 In-Process Execution with XML Payload Figure 103 Invocation from Visual Basic Figure 104 Invocation with XML Payload Figure 105 Web Services Call from Java Figure 106 Specifying the Test Values Figure 107 Creating Instances of the Client... 47

6 The Business Problem This rule modeling case study examines how the Corticon Business Rules Management System provides a way to automate this yet still provide the flexibility for the business experts to create and manage the rules. Basic Rule Modeling Identify the Business Decision(s) to be made Should this loan application be approved, rejected or referred for further consideration? Collect and Review Rules needed for each decision To make this decision we will need some rules. Here are two of the sample rules provided by CIMB (there are more which we will introduce during the modeling exercise) 1. We do not currently do non owner occupied loans 2. Loans under 80% LTV may be automatically approved We will walk through the entire process of modeling these rules, including the discovery of errors, ambiguities and incompleteness using Corticon Studio. We ll find that even these two apparently simple rules contain problems which Corticon will help us discover and resolve Identify Business Objects (Entities) By referring to the rule statements we can deduce the existence of objects such as these:

7 Loan the entity that is being considered for approval We can also deduce that a loan will have some attributes such as amount appraisal value loan to value ratio owneroccupied (true or false) status Status is what the rules are being asked to determine Create a Corticon Vocabulary This will be modeled in the Corticon vocabulary: Figure 1 Client Business Object Create Sample Data This helps to make sure the data model makes sense This can be done in the Corticon Testing tool which is built into Corticon. We can also set up some expected results to verify that our rules are producing the answers we expect. We ll see during the demo how Corticon will automatically compare the actual and expected results and flag any variations once the rules have filled in the output column Figure 2 Sample Test Data

8 Decide how the rules need to be grouped into Rule sheets There are no hard and fast rules about how to divide up the rules into groups, but a good way to start is to group the rules according to the main attribute that they are determining. The book The Decision Model has some good guidelines on how to organize rules. In this example we only have one sheet These are the rule statements that would be on the rule sheet. The rule statements are always the starting point for rule modeling. Figure 3 Rule Statements Model Rules #1 and #2 Now we are ready to model the rules. Within this phase of rule modeling there are a number of steps For each rule statement create a rule column that connects the conditions to the actions Here s what the rules might look like

9 Figure 4 Rules Modeled As Specified Write Natural Language Statements if Desired Note that it s also possible to toggle this view to a natural language view: Figure 5 Natural Language At this point it appears that we are done. Our rules seem to correspond to what was in the original specification. But are they correct? If we were developing these rules in a programming language or even a different rule engine we d probably need to run some tests to see if the rules are correct. In the Corticon world we don t believe that s the most effective way of finding errors and so Corticon has built into Studio some tools for checking the rule model

10 Figure 6 Analysis Buttons However, for the purposes of this case study, let s do things that way other rule engines would have to do it with test data. Run Test Cases We already have some test data and expected results so we can run our rules: This is what we will get: Figure 7 A Test Case Note the second test case is highlighted in red because the actual result did not match the expected result. But why is that? If we select loan[2] in the middle column, you will see that two rule statements are highlighted below these are the ones that apply to loan[2].

11 Figure 8 Conflicting Rules Found Notice that the first did get the correct answer. However a second rule also fired and overwrote the correct answer with an incorrect answer. This is what we call a rule conflict or ambiguity. Now we discovered this with test data and for this simple example there aren t very many possible test cases. But in the real world there may be thousands or millions of possible test cases. The chances of finding problems that way are very slim and often don t happen until the rules are in production and an angry customer complains. Check for Rule Ambiguity Corticon has a much better way. Let s return to the rule sheet and see how Corticon can find this problem without the need for test data. If we run the conflict checker we ll see this

12 Figure 9 Ambiguity Detected Automatically By Corticon Corticon has determined that the conditions are not sufficient to distinguish these two rules and since they have different actions it considers them a potential ambiguity. So, how do we resolve it? Well you might say just put them in the other order and everything will be fine. Yes, in this simple case that s true but when there are dozens of rules it may not be obvious what the correct order is. And in any case it s the rule engine s job to figure out the order. In order to resolve this we need to clarify the intent of the rules. As specified it appears that rule 2 was intended to deal owner occupied loans This can be modeled as follows: Figure 10 Resolving the Ambiguity And now WITHOUT HAVING TO RUN ANY TEST CASES Corticon can confirm that this is ambiguity free. If we choose to rerun the test case we will find that we now get the expected answer for loan 2

13 Figure 11. Test Case Now Gets the Correct Answers Check for Rule Completeness But notice that we still have a discrepancy. Loan 3 did not get a status assigned. That means somehow our rules are incomplete. We can run the completeness checker and Corticon will identify any missing rules: Figure 12 Completeness Checker

14 Figure 13 Rule for LTV 80% or more Rule Changes Rules rarely stay the same for very long. So we might imagine that this first rulesheet represents our default approval rules that apply to everyone. Suppose one of our clients (say client XYZ) want to use slightly different rules for all of their loan approval. We have a number of ways we can implement this: 1. We can provide an alternative rulesheet that applies just to client XYZ 2. We can allow client XYZ s rules to override our default rules 3. We can constrain client XYZs rules to fit within our default rules The first step is to create a fresh rulesheet for client XYZ. This is done by copy/pasting the existing rulesheet. Then we need to do two things 1. Indicate that this new sheet applies only to client XYZ 2. Make the changes that are specific to XYZ Here s what that might look like:

15 Of course we should check this for completeness and consistency: And Corticon will discover that we are missing some rules: The Ruleflow Now that we have two rulesheets (one generic and one for XYZ) we can configure them using the ruleflow:

16 or In the first ruleflow, the global rules go first and the XYZ rules can override them. In the second case the XYZ rules go first but can be constrained or overridden by the global rules. Only XYZ users would be able to change the ZXY rules whereas LenderLive users would be able to change the Global rules (and the XYZ rules if needed) Effective Dating of Decision Services We can specify effective dates for a rule flow: This dialog specifies that the rule flow will become effective on 8/14/2012 and expire on 8/31/2012. If a rule flow with a higher version number is deployed with an overlapping effective date then that new one will supersede this one Advanced Rule Modeling Most rule engines can model the simple rules that we ve looked at so far. But they may not be able to handle the analysis and testing quite so well. What happens when it gets more complex? It can get more complex in two ways:

17 1. More attributes, more conditions and more combinations of conditions 2. More complex data structures and relationships between them In this section we ll look at how Corticon s unique features make it easy for a business person to model rules that have to deal with complex data structures. In many other rule engines this is a task that may have to be done by a programmer. Loans are usually associated with customers and loans will typically have one or more payments Vocabulary for Complex Data Structures This leads to the following vocabulary: Figure 14 Vocabulary for Complex Data Structure

18 Sample Complex Hierarchical Data Here s a sample of some data that conforms to this structure Figure 15 Sample Data for Complex Structure Suppose we want to sum the principal payments to determine the outstanding balance Identifying the Context of a Rulesheet using Scope The key to this is Corticon s concept of SCOPE. When we do the summing of amounts we want to make sure that it s the sum of the transactions that belong to the accounts that belong to the client. To indicate this hierarchy we drag the entities into the scope section Figure 16 Client, Account, Transaction Hierarchy We can also create aliases to the business objects. This will allow us to write more concise rules: To compute the amount total we can now do something very similar to what you would do in Excel we use the SUM operator:

19 Figure 17 Summing Amounts Here s a small test case Figure 18 Test Data for Complex Data Structure Operators for Collections Here are some of the other operators that are available for dealing with collections

20 Figure 19 Collection Operators

21 Deploy Decision Services 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. The Deployment Console You can deploy a decision service using the Deployment Console Figure 20 Deployment Console This will will show up in the server console The Web Console Figure 21 Logging on to the Server Console

22 Figure 22 Server Console Options Viewing Deployed Decision Services The first option allows you to see the currently deployed decision services. Figure 23 Deployed Decision Services

23 Decision Service Details We can see the details of the decision service Figure 24 Decision Service Settings

24 Web Interface for Viewing the Rules We can view the rules as they are in the server using a web interface: This shows the natural language view of the rules in the web browser Figure 25 Natural Language View of the Deployed Rules

25 Editing the Rules in the Web Interface We can even edit the rules using this web interface First we create a new version from the existing version Figure 26 Creating a New Version in the Web Console Now we can edit the rules or the rule statements (access to this is configurable) Now the rule values become editable Figure 27 Web Based Rule Editor This view allows a business user to change the values tested in the rules but not to add new rules The web editor includes the analysis tools Figure 28 Analysis Tools in the Web Console

26 Monitoring Key Decision Service Attributes We can set up monitoring of key attributes in the decision service Figure 29 Setting Up Monitored Attributes

27 Running Tests from the Web Interface You can also run test cases in the web interface First export the test case from Studio as an XML file (or create it some other way) Figure 30 Exporting a Test Case as XML Specify the location of the test data Figure 31 Setting Up a Test in the Web Console The results will come back as XML

28 Figure 32 Test Results from Web Console

29 Invoking Deployed Decision Services from Corticon Studio We can now set up a test in Studio that invoke the deployed decision service Figure 33 Using Studio to Execute Deployed Decision Services By clicking on the number of executions you can view the performance statistics for that decision service: Figure 34 Execution Count Details of the monitored attributes can be viewed:

30 Figure 35 Monitored Attributes

31 Managing Rules 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 36 Rule Repository Folders Within a folder the user will see:

32 Figure 37 Repository Functions 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 38 Notification of Rule Models to be Approved And here is what might appear in the content of the

33 Figure 39 Sample Notification By following the link the rule approver can gain access to the rule asset: This may require that she logon Figure 40 Access to the Repository is Controlled

34 After Jenny performs her review task, Tom (the rule author) will be notified by Figure 41 Notification of Approval This information is also maintained in the Collaborator audit trails. Tom can monitor the progress of the approval process as follows: Figure 42 Tracking Approval Workflows You can see that there are several overdue tasks. Tom can view the details of any of these tasks:

35 Figure 43 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 Figure 44 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.

36 Invoke the production rules via the application code (or BPM) (note: from this point on a slightly different rule model is used in the example, but the principles are the same) 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 Using Other SOAP Clients These same tests can be executed from any SOAP client such as SoapUI. In order to do this you must first generate the WSDL for the decision service. This is done from the deployment console which is accessible in Studio: Figure 45 Deployment Console in Studio A generic SOAP client such as SOAP UI can be used to set up and run tests against the deployed decision service:

37 Figure 46 A Typical SOAP Client The SOAP Request would look like this Figure 47 Corticon SOAP Request The results are resulted similarly to what you see in the Corticon tester:

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

39 Figure 50 Studio Export SOAP Menu

40 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. Savvion Integration Figure 51 Decision Service Invoked from a Business Process (Savvion) Process attributes are mapped as inputs to Corticon Figure 52 Mapping Corticon Inputs Corticon results (status) is mapped to process attributes: Figure 53 Mapping Corticon Outputs Processes are started in the BPM Portal

41 Figure 54 Starting the Business Process Inputs are entered on the web form Figure 55 Web Data Entry Form These are then passed to the Corticon rule engine The user s task list can be viewed:

42 Figure 56 User's Task List The results are then displayed Figure 57 Suspension Status Determined Savvion Web Application Statistics Recorded in the Corticon Web Console

43 Figure 58 Monitoring the Decision Results PCT Dashboard Figure 59 Performance Dashboard

44 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: In-Process Java with Java Objects Figure 60 In-Process Execution with Java Payload 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. Java with XML Payload Here s generally how our programmer will make an in-process call to the rules using an XML payload:

45 Figure 61 In-Process Execution with XML Payload Visual Basic Invocation Figure 62 Invocation from Visual Basic

46 In-process call with XML Figure 63 Invocation with XML Payload Web Services Call from Java Figure 64 Web Services Call from Java

47 How to Generate Test Data These two sheets take care of generating all possible test cases: Figure 65 Specifying the Test Values Figure 66 Creating Instances of the Client That really is all it takes! You could get more sophisticated by writing actual rules to decide what base values to create but listing them seems the simplest way.

48 They could also be read in from a database. But having them in a sheet makes it easy to switch on or off various values for testing. Just add this rule flow and you can run the test date against the suspension rules:

49 to get

50 60 test cases generated. Performance

51 Why is Corticon so much faster than Traditional Rule Engines?

52 In a traditional (RETE) rule engine a significant portion of the execution time is allocated to figuring out which rule to execute in which sequence and if you process 1 million transactions the engine has to do this figuring out a million times. Corticon does the figuring out ONCE at design time and so execution performance is considerably better than RETE based engines for most business rule applications. Additionally Corticon scales linearly as the number of rules and the amount of data increases. RETE engines eventually reach a point where performance drops off dramatically as the data payload increases. RETE does scale well with increasing number of rules however.

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

The Corticon Rule Modeling Methodology. Applied to. FEMA Disaster Assistance Fraud Detection. A Case Study The Corticon Rule Modeling Methodology Applied to FEMA Disaster Assistance Fraud Detection A Case Study By Mike Parish Contents Table Of Figures... 4 The Business Problem... 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

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

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

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

9 th CA 2E/CA Plex Worldwide Developer Conference 1

9 th CA 2E/CA Plex Worldwide Developer Conference 1 1 Introduction/Welcome Message Organizations that are making major changes to or replatforming an application need to dedicate considerable resources ot the QA effort. In this session we will show best

More information

Title: The impact of configuration on Alma workflows Abstract: When initially setting up Alma, many decisions bear reexamining once you ve worked

Title: The impact of configuration on Alma workflows Abstract: When initially setting up Alma, many decisions bear reexamining once you ve worked Title: The impact of configuration on Alma workflows Abstract: When initially setting up Alma, many decisions bear reexamining once you ve worked with the system. Join us for a review of highlights of

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

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

1. I NEED TO HAVE MULTIPLE VERSIONS OF VISUAL STUDIO INSTALLED IF I M MAINTAINING APPLICATIONS THAT RUN ON MORE THAN ONE VERSION OF THE.

1. I NEED TO HAVE MULTIPLE VERSIONS OF VISUAL STUDIO INSTALLED IF I M MAINTAINING APPLICATIONS THAT RUN ON MORE THAN ONE VERSION OF THE. CUSTOMER PAIN POINTS 1. I NEED TO HAVE MULTIPLE VERSIONS OF VISUAL STUDIO INSTALLED IF I M MAINTAINING APPLICATIONS THAT RUN ON MORE THAN ONE VERSION OF THE.NET FRAMEORK. THAT S TAKING UP SPACE ON MY HARDDRIVE

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

What s New in Laserfiche 10

What s New in Laserfiche 10 What s New in Laserfiche 10 Webinar Date 5 November 2015, 29 December 2015 and 10 February 2016 Presenters Justin Pava, Technical Product Manager Brandon Buccowich, Technical Marketing Engineer For copies

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

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

10 Minute Demonstration Script

10 Minute Demonstration Script 10 Minute Demonstration Script Table of Contents The Demo... 3 The Interface... 3 Demo Flow... 3 Capture and Indexing... 4 Searches... 6 Integration and Workflow... 8 2 P a g e The Demo Most demonstrations

More information

Technical Overview. Access control lists define the users, groups, and roles that can access content as well as the operations that can be performed.

Technical Overview. Access control lists define the users, groups, and roles that can access content as well as the operations that can be performed. Technical Overview Technical Overview Standards based Architecture Scalable Secure Entirely Web Based Browser Independent Document Format independent LDAP integration Distributed Architecture Multiple

More information

Alfresco Guide. By IT Services

Alfresco Guide. By IT Services Alfresco Guide By IT Services Table of Contents LOGGING-IN... 3 THE DASHBOARD... 3 MY FILES... 4 SHARED FILES... 4 REPOSITORY... 5 ACCESS PERMISSIONS... 6 ADDING CONTENT... 7 SHARING CONTENT: USING PERMISSIONS...

More information

BPEL FOR WORKFLOW DEVELOPERS Jerry Ireland, Rightsizing Inc

BPEL FOR WORKFLOW DEVELOPERS Jerry Ireland, Rightsizing Inc BPEL FOR WORKFLOW DEVELOPERS Jerry Ireland, Rightsizing Inc As a key enabler for SOA development, it will be essential to understand how to build Business Processes using BPEL (Business Process Language).

More information

Lightning Knowledge Guide

Lightning Knowledge Guide Lightning Knowledge Guide Salesforce, Spring 18 @salesforcedocs Last updated: April 13, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

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

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

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office Paper SAS1864-2018 Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office ABSTRACT Tim Beese, SAS Institute Inc., Cary, NC Millions of people spend their weekdays in an office. Occasionally

More information

Learning Portal AE: Customization and Configuration in Microsoft Dynamics CRM 2016 Hands-On-Lab

Learning Portal AE: Customization and Configuration in Microsoft Dynamics CRM 2016 Hands-On-Lab 2 Learning Portal 80729AE: Customization and Configuration in Microsoft Dynamics Hands-On-Lab 80729AE: Customization and Configuration in Microsoft Dynamics Table of Contents 80729AE: Customization and

More information

IBM Tivoli Identity Manager V5.1 Fundamentals

IBM Tivoli Identity Manager V5.1 Fundamentals IBM Tivoli Identity Manager V5.1 Fundamentals Number: 000-038 Passing Score: 600 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ IBM 000-038 IBM Tivoli Identity Manager V5.1 Fundamentals

More information

WhatsConfigured for WhatsUp Gold 2016 User Guide

WhatsConfigured for WhatsUp Gold 2016 User Guide WhatsConfigured for WhatsUp Gold 2016 User Guide Contents Welcome to WhatsConfigured 1 What is WhatsConfigured? 1 Finding more information and updates 1 Sending feedback 2 Deploying WhatsConfigured 3 STEP

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

Other Issues. Context

Other Issues. Context 25 Other Issues This sentence contradicts itself or rather well, no, actually it doesn t! Douglas Hofstadter We re done with acceptance testing. No, not really. Here are a few more issues that didn t seem

More information

COPYRIGHTED MATERIAL. A Framework for Enterprise Applications. Problem

COPYRIGHTED MATERIAL. A Framework for Enterprise Applications. Problem A Framework for Enterprise Applications The solution you will develop throughout this book is for a fictitious company whose human resources department needs to approve, deny, and report on vacation or

More information

ATMS ACTION TRACKING MANAGEMENT SYSTEM. Quick Start Guide. The ATMS dev team

ATMS ACTION TRACKING MANAGEMENT SYSTEM. Quick Start Guide. The ATMS dev team ATMS ACTION TRACKING MANAGEMENT SYSTEM Quick Start Guide The ATMS dev team Contents What is ATMS?... 2 How does ATMS work?... 2 I get it, now where can I find more info?... 2 What s next?... 2 Welcome

More information

IBM Software Configuration Library Manager Advanced Edition for z/os, Version 1.2

IBM Software Configuration Library Manager Advanced Edition for z/os, Version 1.2 Streamlining z/os application development processes and package approvals IBM Software Configuration Library Manager Advanced Edition for z/os, Version 1.2 Highlights Provides a cost-effective and fully

More information

CA IdentityMinder. Glossary

CA IdentityMinder. Glossary CA IdentityMinder Glossary 12.6.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

APPLICATION ADMINISTRATOR GUIDE

APPLICATION ADMINISTRATOR GUIDE APPLICATION ADMINISTRATOR GUIDE BrightSign Network Enterprise Edition Version 4.2 BrightSign, LLC. 16780 Lark Ave., Suite B Los Gatos, CA 95032 408-852-9263 www.brightsign.biz TABLE OF CONTENTS Introduction

More information

Performing Administrative Tasks

Performing Administrative Tasks CHAPTER 6 This section provides information about administrative tasks. It includes these topics: Stopping and Restarting the Cisco License Manager Server, page 6-1 How to Manage Users, page 6-2 Working

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

Rule Modeling Challenge Collections Mike Parish

Rule Modeling Challenge Collections Mike Parish Rule Modeling Challenge Collections Mike Parish Given an arbitrary number of collections of cars: find the make and model that is common to all collections Identify makes and models that are in only one

More information

One of the fundamental kinds of websites that SharePoint 2010 allows

One of the fundamental kinds of websites that SharePoint 2010 allows Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental

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

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

Understanding Advanced Workflow

Understanding Advanced Workflow IBM Content Manager for iseries Understanding Advanced Workflow Version 5 Release 1 SC27-1138-00 IBM Content Manager for iseries Understanding Advanced Workflow Version 5 Release 1 SC27-1138-00 Note Before

More information

Web-enable a 5250 application with the IBM WebFacing Tool

Web-enable a 5250 application with the IBM WebFacing Tool Web-enable a 5250 application with the IBM WebFacing Tool ii Web-enable a 5250 application with the IBM WebFacing Tool Contents Web-enable a 5250 application using the IBM WebFacing Tool......... 1 Introduction..............1

More information

SM L04 Veritas Operations Manager Advanced 4.0 RU1: Optimize Your Heterogeneous Storage Environment Hands-On Lab Description

SM L04 Veritas Operations Manager Advanced 4.0 RU1: Optimize Your Heterogeneous Storage Environment Hands-On Lab Description SM L04 Veritas Operations Manager Advanced 4.0 RU1: Optimize Your Heterogeneous Storage Environment Hands-On Lab Description Veritas Operations Manager Advanced (VOM Advanced) is a comprehensive discovery

More information

CALLING AN OPENEDGE WEB SERVICE

CALLING AN OPENEDGE WEB SERVICE CALLING AN OPENEDGE WEB SERVICE Fellow and OpenEdge Evangelist Document Version 1.0 August 2011 August, 2011 Page 1 of 16 DISCLAIMER Certain portions of this document contain information about Progress

More information

Business Glossary Best Practices

Business Glossary Best Practices Business Glossary Best Practices 1993-2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without

More information

Migration With Duda.

Migration With Duda. Migration With Duda A Comprehensive Guide to the Opportunities and Considerations that Come with Website Migration for DIY and DIFM Solutions Providers. www.dudamobile.com Table of Contents Introduction

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

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

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

TABLE OF CONTENTS DOCUMENT HISTORY

TABLE OF CONTENTS DOCUMENT HISTORY TABLE OF CONTENTS DOCUMENT HISTORY 6 MAY 2018 UPDATE 6 Revision History 6 Oracle Financial Consolidation and Close Cloud, May Update 6 Monthly Update Schedule 6 Please Join Oracle Cloud Customer Connect

More information

APPLICATION ADMINISTRATOR GUIDE

APPLICATION ADMINISTRATOR GUIDE APPLICATION ADMINISTRATOR GUIDE BrightSign Network Enterprise Edition Version 3.5 BrightSign, LLC. 16795 Lark Ave., Suite 200 Los Gatos, CA 95032 408-852-9263 www.brightsign.biz TABLE OF CONTENTS Introduction

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

UCT Application Development Lifecycle. UCT Business Applications

UCT Application Development Lifecycle. UCT Business Applications UCT Business Applications Page i Table of Contents Planning Phase... 1 Analysis Phase... 2 Design Phase... 3 Implementation Phase... 4 Software Development... 4 Product Testing... 5 Product Implementation...

More information

(Introduction Title slide) (Forward engineering) [Start demo]

(Introduction Title slide) (Forward engineering) [Start demo] (Introduction Title slide) Welcome to this demonstration of IBM InfoSphere Data Architect. InfoSphere Data Architect is a collaborative data design solution to discover, model, relate, and standardize

More information

Custom SharePoint Workflows

Custom SharePoint Workflows Custom SharePoint Workflows Using SharePoint Designer 2013 SharePoint Workflows Microsoft SharePoint, as a collaboration platform, contains a huge amount of business data - documents, contacts, meetings,

More information

NETWRIX PASSWORD EXPIRATION NOTIFIER

NETWRIX PASSWORD EXPIRATION NOTIFIER NETWRIX PASSWORD EXPIRATION NOTIFIER QUICK-START GUIDE Product Version: 3.3.247 March 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Corticon Server: Web Console Guide

Corticon Server: Web Console Guide Corticon Server: Web Console Guide Notices Copyright agreement 2015 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Microsoft Dynamics GP is a robust accounting package that can meet

Microsoft Dynamics GP is a robust accounting package that can meet In This Chapter Chapter 1 What Microsoft Dynamics GP Does Best Familiarizing yourself with the Microsoft Dynamics GP window Understanding Dynamics GP terms Knowing how Dynamics GP keeps your CPA happy

More information

Visual Studio Subscriptions Administration Guide

Visual Studio Subscriptions Administration Guide Visual Studio Subscriptions Administration Guide 2 Contents INTRODUCTION... 4 ROLES AND RESPONSIBILITIES OF A VISUAL STUDIO SUBSCRIPTIONS ADMINISTRATOR... 4 BENEFITS AND LIMITATIONS OF VISUAL STUDIO SUBSCRIPTIONS...

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

Destiny: Resolving barcode conflicts in the Update Patrons job summary

Destiny: Resolving barcode conflicts in the Update Patrons job summary Destiny: Resolving barcode conflicts in the Update Patrons job summary Follett Technical Support Knowledgebase Informational Article Applies to: Destiny All versions Summary: This article contains a review

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

Oracle API Platform Cloud Service

Oracle API Platform Cloud Service Oracle API Platform Cloud Service Oracle API Platform Cloud Service provides a foundation for Digital Transformation through the first API Management offering that comprises the Full API Lifecycle. Encompassing

More information

Managing Load Plans in OTBI Enterprise for HCM Cloud Service

Managing Load Plans in OTBI Enterprise for HCM Cloud Service Managing Load Plans in OTBI Enterprise for HCM Cloud Service Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Objective After completing this lesson, you should be able to use Configuration

More information

EXERCISE 3: PUBLISHING AN ODM DATABASE WITH WATERONEFLOW

EXERCISE 3: PUBLISHING AN ODM DATABASE WITH WATERONEFLOW EXERCISE 3: PUBLISHING AN ODM DATABASE WITH WATERONEFLOW As far as your local setup goes, you are now ready for action with your ODM database. But what if you want to share the data with others online?

More information

SAS Business Rules Manager 1.2

SAS Business Rules Manager 1.2 SAS Business Rules Manager 1.2 User s Guide Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS Business Rules Manager 1.2. Cary,

More information

Metastorm BPM Release 7.6

Metastorm BPM Release 7.6 Metastorm BPM Release 7.6 Administration Guide May 2008 Metastorm Inc. email: inquiries@metastorm.com http://www.metastorm.com Metastorm BPM Release 7.6 Copyrights and Trademarks 1996-2008 Metastorm Inc.

More information

Managing Group Policy application and infrastructure

Managing Group Policy application and infrastructure CHAPTER 5 Managing Group Policy application and infrastructure There is far more to managing Group Policy than knowing the location of specific policy items. After your environment has more than a couple

More information

NetIQ Identity Manager Jobs Guide. February 2017

NetIQ Identity Manager Jobs Guide. February 2017 NetIQ Identity Manager Jobs Guide February 2017 Legal Notice For information about NetIQ legal notices, disclaimers, warranties, export and other use restrictions, U.S. Government restricted rights, patent

More information

HarePoint Analytics. For SharePoint. User Manual

HarePoint Analytics. For SharePoint. User Manual HarePoint Analytics For SharePoint User Manual HarePoint Analytics for SharePoint 2013 product version: 15.5 HarePoint Analytics for SharePoint 2016 product version: 16.0 04/27/2017 2 Introduction HarePoint.Com

More information

HOPE Project AAL Smart Home for Elderly People

HOPE Project AAL Smart Home for Elderly People 1.1.1.1.1 HOPE Project AAL-2008-1-099 Smart Home for Elderly People D10 User Interface Mockup Report Version: 1 1.0 Report Preparation Date: 28.02.2010 Classification: Partner Responsible: Restricted I2S

More information

EQUELLA. Searching User Guide. Version 6.2

EQUELLA. Searching User Guide. Version 6.2 EQUELLA Searching User Guide Version 6.2 Document History Document No. Reviewed Finalised Published 1 5/12/2013 6/12/2013 6/12/2013 December 2013 edition. Information in this document may change without

More information

IBM Security Identity Manager Version Planning Topics IBM

IBM Security Identity Manager Version Planning Topics IBM IBM Security Identity Manager Version 7.0.1 Planning Topics IBM IBM Security Identity Manager Version 7.0.1 Planning Topics IBM ii IBM Security Identity Manager Version 7.0.1: Planning Topics Table of

More information

ALM120 Application Lifecycle Management 12.0 Essentials Gold Package

ALM120 Application Lifecycle Management 12.0 Essentials Gold Package Course Data Sheet ALM120 Application Lifecycle Management 12.0 Essentials Gold Package Course No: ALM120-120 For software version(s): Software version used in the labs: 12.0 Delivery formats: Instructor

More information

for SharePoint 2013 Introductory Guide Project Management Success, Made Easy

for SharePoint 2013 Introductory Guide Project Management Success, Made Easy for SharePoint 2013 Introductory Guide Project Management Success, Made Easy 1 Introduction... 3 1.1 Learn About BrightWork... 3 1.2 System Requirements... 3 1.3 BrightWork Support... 3 2 Start Quick...

More information

Corticon Server: Web Console Guide

Corticon Server: Web Console Guide Corticon Server: Web Console Guide Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are

More information

Corticon Server: Web Console Guide

Corticon Server: Web Console Guide Corticon Server: Web Console Guide Notices Copyright agreement 2016 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

User Guide. Version R95. English

User Guide. Version R95. English Software Management User Guide Version R95 English September 22, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

Adobe Campaign Business Practitioner Adobe Certified Expert Exam Guide. Exam number: 9A0-395

Adobe Campaign Business Practitioner Adobe Certified Expert Exam Guide. Exam number: 9A0-395 Adobe Campaign Business Practitioner Adobe Certified Expert Exam Guide Exam number: 9A0-395 Revised 08 September 2016 About Adobe Certified Expert Exams To be an Adobe Certified Expert is to demonstrate

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

USER AND ADMINISTRATOR MANUAL FOR PROJECTWEB

USER AND ADMINISTRATOR MANUAL FOR PROJECTWEB Intended for Administrators and users of ProjectWEB Date 22-07-2016 Version 03 USER AND ADMINISTRATOR MANUAL FOR PROJECTWEB Table of contents GUIDELINES FOR USERS 6 1. LOGIN 6 1.1. How do I get access

More information

What is orbac? ability to group several authorizations in to profiles to easily add/remove a set of authorizations to an employee

What is orbac? ability to group several authorizations in to profiles to easily add/remove a set of authorizations to an employee What is orbac? orbac orbac (opns Role Based Access Control) is a IT security solution that enables a structured, centralized, hierarchical and delegated management of IT privileges. orbac is based on the

More information

Data Grids in Business Rules, Decisions, Batch Scoring, and Real-Time Scoring

Data Grids in Business Rules, Decisions, Batch Scoring, and Real-Time Scoring Paper SAS605-2017 Data Grids in Business Rules, Decisions, Batch Scoring, and Real-Time Scoring Carl Sommer, Chris Upton, and Ernest Jessee, SAS Institute Inc. ABSTRACT Users want more power. SAS delivers.

More information

Federal Vendor Portal & e-invoicing User Guide. January 2018

Federal Vendor Portal & e-invoicing User Guide. January 2018 Federal Vendor Portal & e-invoicing User Guide January 2018 Federal Vendor Portal IMPORTANT NOTICE TO: Deloitte s Federal Practice Suppliers As part of our due diligence to pre-qualify suppliers for potential

More information

MainBoss Advanced 4.0 Installation and Administration

MainBoss Advanced 4.0 Installation and Administration MainBoss Advanced 4.0 Installation and Administration Copyright 2016, Thinkage Ltd. Permission granted to reproduce all or part of this document provided that Thinkage s copyright notice is included in

More information

Configuring SharePoint 2007

Configuring SharePoint 2007 26636.book Page 77 Thursday, February 14, 2008 4:38 PM Chapter 3 Configuring SharePoint 2007 MICROSOFT EXAM OBJECTIVES COVERED IN THIS CHAPTER: Manage Administration Manage Central Admin UI Manage the

More information

Interstage Business Process Manager Analytics V12.1 Studio Guide

Interstage Business Process Manager Analytics V12.1 Studio Guide Interstage Business Process Manager Analytics V12.1 Studio Guide Solaris April 2013 Studio Guide Trademarks Trademarks of other companies are used in this documentation only to identify particular products

More information

OCSAA Accreditation Dashboard

OCSAA Accreditation Dashboard P a g e 1 OCSAA Accreditation Dashboard Getting Started Guide Welcome to the OCSAA Website and the Accreditation Dashboard. The Website has been designed for intuitive navigation and data collection, making

More information

1. Functional Specification for SailFin Administration Author(s): Contributors: Irfan A, Vijay G Version:0.5 1.

1. Functional Specification for SailFin Administration Author(s): Contributors: Irfan A, Vijay G Version:0.5 1. Functional Specification for Container Integration Author(s): Peter.Danielsson@ericsson.com, Eltjo.Boersma@ericsson.com Version: prel A4 1 Introduction

More information

Github/Git Primer. Tyler Hague

Github/Git Primer. Tyler Hague Github/Git Primer Tyler Hague Why Use Github? Github keeps all of our code up to date in one place Github tracks changes so we can see what is being worked on Github has issue tracking for keeping up with

More information

EQUELLA. Searching User Guide. Version 6.4

EQUELLA. Searching User Guide. Version 6.4 EQUELLA Searching User Guide Version 6.4 Document History Document No. Reviewed Finalised Published 1 19/05/2015 20/05/2015 20/05/2015 May 2015 edition. Information in this document may change without

More information

DreamTeam Suite User Guide

DreamTeam Suite User Guide DreamTeam Suite User Guide Product Usage and Best Practices Guide By Adam Buxbaum August 22, 2011 Table of Contents Introduction... 4 Project Manager... 6 Creating Projects... 9 Managing Resources: Addition

More information

Salesforce ID of the Feature record is stored in the Product Option record to maintain the relationship.

Salesforce ID of the Feature record is stored in the Product Option record to maintain the relationship. 01 INTRODUCTION Welcome to the first edition of Manual Migration Training. In this video we ll take a high-level look at the steps necessary to perform a successful migration of SteelBrick content. In

More information

BPEL Orchestration. 4.1 Introduction. Page 1 of 31

BPEL Orchestration. 4.1 Introduction. Page 1 of 31 BPEL Orchestration 4.1Introduction... 1 4.2Designing the flow... 2 4.3Invoking the CreditCardStatus service... 2 4.4Designing the BPEL approval process... 8 4.5Modifying the Mediator component... 18 4.6Deploying

More information

OnBase Guide - Exporting and Importing Configurations

OnBase Guide - Exporting and Importing Configurations OnBase Guide - Exporting and Importing Configurations Goal: This guide will provide the steps needed to use the import/export framework for migration in OnBase. Complexity Level: Departmental Administrative

More information

Entropy Software General Administration & Configuration

Entropy Software General Administration & Configuration Entropy Software General Administration & Configuration V1.02 1 of 34 Contents 1. Customising your Entropy system... 4 1.1 Entering or editing your Organisation s name into Entropy... 4 1.2 Adding a Watermark...

More information

Unit 1: Working With Tables

Unit 1: Working With Tables Unit 1: Working With Tables Unit Overview This unit covers the basics of working with Tables and the Table wizard. It does not include working with fields, which is covered in Units 3 and 4. It is divided

More information

ECM Extensions xcp 2.2 xcelerator Abstract

ECM Extensions xcp 2.2 xcelerator Abstract ECM Extensions xcp 2.2 xcelerator Abstract These release notes outline how to install and use the ECM Extensions xcelerator. October 2015 Version 1.0 Copyright 2015 EMC Corporation. All Rights Reserved.

More information

Set Up and Maintain Sales Tools

Set Up and Maintain Sales Tools Set Up and Maintain Sales Tools Salesforce, Spring 16 @salesforcedocs Last updated: February 18, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

OneStop Reporting OSR Budgeting 4.5 User Guide

OneStop Reporting OSR Budgeting 4.5 User Guide OneStop Reporting OSR Budgeting 4.5 User Guide Doc. Version 1.3 Updated: 19-Dec-14 Copyright OneStop Reporting AS Contents Introduction... 1 Two Different Setup Strategies and Use of OSR Budgeting...

More information

IBM Best Practices Working With Multiple CCM Applications Draft

IBM Best Practices Working With Multiple CCM Applications Draft Best Practices Working With Multiple CCM Applications. This document collects best practices to work with Multiple CCM applications in large size enterprise deployment topologies. Please see Best Practices

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