Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database. White Paper

Size: px
Start display at page:

Download "Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database. White Paper"

Transcription

1 Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database White Paper

2 Copyright 2013 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential and proprietary information of Infor. By gaining access to the attached, you acknowledge and agree that the material (including any modification, translation or adaptation of the material) and all copyright, trade secrets and all other right, title and interest therein, are the sole property of Infor and that you shall not gain right, title or interest in the material (including any modification, translation or adaptation of the material) by virtue of your review thereof other than the non-exclusive right to use the material solely in connection with and the furtherance of your license and use of software made available to your company from Infor pursuant to a separate agreement, the terms of which separate agreement shall govern your use of this material and all supplemental related materials ("Purpose"). In addition, by accessing the enclosed material, you acknowledge and agree that you are required to maintain such material in strict confidence and that your use of such material is limited to the Purpose described above. Although Infor has taken due care to ensure that the material included in this publication is accurate and complete, Infor cannot warrant that the information contained in this publication is complete, does not contain typographical or other errors, or will meet your specific requirements. As such, Infor does not assume and hereby disclaims all liability, consequential or otherwise, for any loss or damage to any person or entity which is caused by or relates to errors or omissions in this publication (including any supplementary information), whether such errors or omissions result from negligence, accident or any other cause. Without limitation, U.S. export control laws and other applicable export and import laws govern your use of this material and you will neither export or re-export, directly or indirectly, this material nor any related materials or supplemental information in violation of such laws, or use such materials for any purpose prohibited by such laws. Trademark Acknowledgements The word and design marks set forth herein are trademarks and/or registered trademarks of Infor and/or related affiliates and subsidiaries. All rights reserved. All other company, product, trade or service names referenced may be registered trademarks or trademarks of their respective owners. Publication Information Release: SyteLine 9.00 Publication date: October 24, 2013

3 Contents About this document... 5 Overview... 5 Shared SyteLine tables... 7 Mongoose tables that are not shared... 7 Details... 8 Schema changes... 8 Coding changes... 9 Data changes SyteLine Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database 3

4 Contents 4 SyteLine Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database

5 About this document This document outlines the SyteLine 9.00 coding, schema, and data changes that were made to allow multiple sites in a single application database. It is intended for administrators who upgrade from previous versions and whose systems have been customized through table or coding changes. This document can help you determine the updates you need to make to your customizations when you upgrade to SyteLine 9.00 or above. It is not intended to be a living document and will not be maintained for future releases. Overview To support multiple sites per database, we added a new site reference (site_ref) column to many of our existing tables. This column is used as a site differentiator for the data. To limit coding changes, tables where the new site_ref column was added were renamed, and a view was created which points to the new table, using the old table name. The example below shows how the item table was renamed to item_mst, which now contains a site_ref column. Then a view called item was created which points to the item_mst table: Any associated _all tables are renamed so that the _all suffix remains at the end. For example, item_all was renamed item_mst_all. An item_all view was then created that points to the item_mst_all table. If multiple sites reside in one database, the item_mst table looks like this example: site_ref Item description OH 908 Gear, 8 tooth IN 908 Gear, 8 tooth MI 908 Gear, 8 tooth SyteLine Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database 5

6 Overview MI 910 Gear, 10 tooth IN 910 Gear, 10 tooth OH 910 Gear, 10 tooth OH 912 Gear, 12 Tooth IN 912 Gear, 12 Tooth MI 912 Gear, 12 Tooth MI AD Additive, UV Rays Prevention IN AD Additive, UV Rays Prevention OH AD Additive, UV Rays Prevention OH AL Steel,Chromium IN AL Steel,Chromium MI AL Steel,Chromium Connections to SQL use the SQL session constant context_info to store the site information. The generated views have a where clause that filters the data based on the context_info. Thus a query like select * from item now executes against a view that uses context_info() to filter the data for a specific site. This example shows the result of that query, assuming that context_info is set to OH: site_ref Item description OH 908 Gear, 8 tooth OH 910 Gear, 10 tooth OH 912 Gear, 12 Tooth OH AD Additive, UV Rays Prevention OH AL Steel,Chromium OH AL Steel,Chromium Alloy Sessions must set context-info in order for the views to work. (Alternatively, you can reference the actual multi-site table names (*_mst) and filter for the appropriate site.) Use this statement to set the context_info when you use SSMS: InfobarType; EXEC [dbo].[setsitesp] OUTPUT Only some tables have a site differentiating column added. In cases where no site_ref column was added, the tables were not renamed. Those tables are considered shared because they store data that is common to all sites within the database. 6 SyteLine Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database

7 Overview Shared SyteLine tables These tables, in addition to persistent staging tables that is, tables which store data temporarily for a process and/or report are shared across all sites within a single database, and thus were not renamed: Workflow Event Handler Activation tables: app_workflow app_workflow_parm app_workflow_trigger_attr Dimension tables dim_attribute dim_attribute_override dim_base_unit dim_function dim_object_attribute dim_object_table_join dim_subscriber dim_unit dim_unit_prefix dimension dimension_object dynamic_table used to support some dynamic processing for some persistent staging tables fs_schedule Service Scheduling appointments inco_del_term Intercompany Delivery Terms static list iso_country ISO Countries static list iso_currency ISO Currencies static list iso_u_m ISO Unit of Measurements static list item_glbl Global Item data Mongoose tables that are not shared In most cases, Mongoose (framework) tables are shared across all sites in a single database, so the tables were not renamed. These tables are the exceptions, which were renamed: parms_mst parms_mst _all AccountAuthorizations_mst ActiveBGTasks_mst BGTaskHistory_mst EventGlobalConstant_mst SyteLine Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database 7

8 Details EventQueue_mst EventTrigger_mst EventTriggerParameter_mst NextKeys_mst QueuedEvent_mst ReplicatedRows3_mst ReplicatedRowsErrors_mst ReportOptions_mst ShadowValuesErrors_mst UserGroupMap_mst The AccountAuthorizations_mst and UserGroupMap_mst tables can still be set up as shared across all sites within a single database. The SyteLine user_local table can be set up as shared across all sites within a single database. Details Schema changes To support multiple sites in a single database, these schema changes were made: For tables that are not _all tables, we made these changes: Renamed the tables to add the _mst suffix. Added a new column (SiteRef or site_ref) to distinguish site ownership of data. Specified this default value for the site_ref or SiteRef column : CONSTRAINT [DF_<table_name>_site_ref] DEFAULT (rtrim(convert([nvarchar](8),context_info(),0))) Added the new column at the end of all primary and unique key constraints and all indexes. Renamed default, check, primary, unique, foreign key, and index names based on the new table name. Adjusted SyteLine-distributed foreign keys that reference multi-site tables to conform to changes in (primary and unique) constraints. Dropped all non-syteline-distributed foreign keys that reference multi-site tables. These were not re-created. Removed full text indexes. For _all tables, we made these changes: Incorporated _mst into the name. The standard naming convention was retained (that is, base_table_name_all) so, for example, item_all was renamed item_mst_all. Removed default and check constraints on _all tables. 8 SyteLine Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database

9 Details Renamed primary, unique, foreign key, and index names based on the new table name. There are no foreign key constraints on _all tables, so foreign keys should be removed. Removed site_ref from the RowPointer constraint. RowPointer will be unique to a database. A view is generated for each table based on the original table name without the _mst suffix. The view name is defined in the Application Table Metadata form. (For more information on this, see below.) A new View Management form was created to facilitate creating the views. Every time a table is changed, the view must be regenerated. Views are automatically regenerated when UET Impact Schema is performed. Coding changes To support multiple sites in a single database, we made these programming/code changes. You must make similar changes in your custom code: We renamed triggers for new table names. This change was not required, but it was done to maintain consistency. All references to the trigger name (for example, in Enable Trigger statements, etc.) must be kept in sync. We made these changes to triggers: Updated references within a trigger to other trigger names that have changed (Insert, UpdatePenultimate, and other Iups). Generated triggers are based on the table name, so the Insert and UpdatePenultimate trigger names, when generated, will contain the _mst reference. Changed table name references in the CREATE statement. Instead Of triggers do not allow recursion. In cases of recursion, we performed these steps: Moved any appropriate logic that is included in a generated Instead of Insert trigger into an Iup trigger. Updated the AppTable row to ignore the insert so that the generated trigger is not created. An example of when an insert would be ignored is this: coitem_mst programatically adds a row to the coitem_mst in another site, which could now be the same database and table as the current site. We also included logic to not insert into an _all table when all sites are in a single database. These commands are not allowed on views, so the code had to be updated to refer to the new table name: Changed Truncate statements to call TruncateTableSp. Changed Update Statistics statements to perform the action on the new table name. Updated Set Identity_Insert table references for tables that were renamed. Index hints: Rewrote any use of index hints to refer to the new table name and included an appropriate Where clause on the site_ref column. Sometimes table names are passed as parameters. Review each case to see if a change is required. In some cases, no change should be made because the name, which now matches the view name, is appropriate. In these cases, changing to the table name could have adverse effects. Here are some examples of SyteLine code that was changed: Calls to AnticipateSessionIdentitySp and ReceiveSessionIdentitySp need to be updated if they deal with a table that is renamed. SyteLine Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database 9

10 Details Calls to CreateDynamicTableSp Use of IsObjectReplicatedSp As noted above, all connections to the database must now set context_info with the proper site value. WinStudio does this automatically, using the value from the configuration. External applications making their own connection must handle this manually. Background Tasks also must set context_info. These are areas that we changed: Modify.rdl files that call a stored procedure to pass in BG_SITEID as a parameter to the Sp. If the.rdl does not already have BG_SITEID, it should be added to the rdl. Modify report stored procedures that are called from an rdl to accept a parameter (@psite SiteType = NULL). Then pass this parameter to dbo.initsessioncontextsp or dbo.initsessioncontextwithusersp, whichever is being used. Modify executable (.exe) files to accept the site as an input parameter and to set the context_info in the appropriate standard way, for example, through InitSessionSp, InitSessionContextSp or InitSessionContextWithUserSp. Taskman was enhanced to map BG~SITEID~ to the site based on the configuration it is using. This value is now passed into the task that is executed. Perform a code sweep on all references to InitSessionSp, InitSessionContextSp and InitSessionContextWithUserSp to ensure that the Site parameter is included. Because SP and IDOMTH background tasks go through the IDO layer, those tasks do not need any extra code. Caution: Certain features of Microsoft SQL Server Management Studio, such as right-clicking a multi-site table and selecting Edit Top 200 Rows, and then performing an insert, update, or delete to that table, should not be used. In those features, site CONTEXT_INFO is not set, and downstream processing that performs some action on a multi-site table through the view over the multi-site table will not work properly. For example, if you delete a SyteLine job_mst row in this way, the triggers will not delete any associated jobroute_mst rows because the delete uses the jobroute view and requires that Site CONTEXT_INFO be set. For features that rely on a license, for example, the Chinese Localization and Printing Industry Pack modules: If you have base objects that access licensed features, the objects must call IsAddonAvailable before allowing site-specific functionality. If you have base forms that access licensed functionality, you must add a startup method that sets a global variable for each module. Each form then checks new global variable. Add-on specific forms are controlled through permissions. Convert references from LanguageIds_all to LanguageIds. The LanguageIds_all table was eliminated. Review and address any concerns over gaps in identity columns. The SQL Identity data type provides a unique sequential number for each added row. For a single site database, this results in a consecutive sequence. For a database that stores multiple sites, this results in the sequence being spread across multiple sites, which creates the appearance of gaps in the system that might be visible to the user. 10 SyteLine Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database

11 Details Data changes We made these data changes to support the schema changes: Existing AppTable data must be updated to correct the table name and to include two new columns: AppViewName, which stores the name of the view that points to the multi-site table. Typically the view name is the original table name prior to adding the _mst suffix. SiteColumnName, which is the name of the column that distinguishes the site to which the data belongs. Typically this column is named site_ref; in some instances it is named SiteRef. However, it can be any column name. Any associated AppColumn row must be updated for the new table name. An AppTable row must be added for every multi-site table (if the row does not already exist) so the view can be created. Set the AppViewName and SiteColumnName values as described above. The TenantID and ReportOutputDirectory process defaults were moved to the site table. TenantID also exists in the intranet table, so that value is used if TenantID is null in the site table. Data in these tables includes table names that have been updated: app_table_ext IntranetSharedTable IntranetSharedUserTable IntranetSharedUserTableDefault rep_object_category SearchItem For multi-site tables that are converted from existing tables, set the object_name and to_object_name column values for rep_object_category table rows where object_type = 1 to the new multi-site table name. In rep_object_category rows for non-_all, multi-site tables that do not have RowPointer as the Primary Key, set rep_object_category.retain_site to 0. In rep_object_category rows for non-_all, multi-site tables that do have RowPointer,site_ref as the Primary Key, you must change the Primary Key. For _all, multi-site tables where RowPointer is the Primary Key, retain_site must be set to 1. For non-multi-site tables where RowPointer is the Primary Key, retain_site must be set to 1. The RowPointer must be unique across a database, including across databases that contain multiple sites. The Init Data scripts for multi-site tables cannot include a hard-coded row pointer. Perform appropriate existence checking for non- multi-site tables. For coding that relies on the existence of a license, add a row in the optional_module_mst table. This allows the system administrator to enable the code for a specific site through the Optional Modules form. Ensure that constraint messages are updated to match any changes to constraint names. SyteLine Coding and Schema Changes Made in SyteLine 9.00 for Multiple Sites per Database 11

Infor Factory Track Shop Floor User Guide

Infor Factory Track Shop Floor User Guide Infor Factory Track Shop Floor User Guide Copyright 2015 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

Infor Worktop 2.5. Installation Guide for ERP Enterprise (LN)

Infor Worktop 2.5. Installation Guide for ERP Enterprise (LN) Infor Worktop 2.5 Installation Guide for ERP Enterprise (LN) Copyright 2011 Infor All rights reserved. The word and design marks set forth herein are trademarks and/or registered trademarks of Infor and/or

More information

Infor Enterprise Modeler User Guide

Infor Enterprise Modeler User Guide Infor Enterprise Modeler User Guide Copyright 2018 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential and

More information

!SSA Enterprise Content Management. SSA ECM 8.0 SP4 Release Notes

!SSA Enterprise Content Management. SSA ECM 8.0 SP4 Release Notes !SSA Enterprise Content Management SSA ECM 8.0 SP4 Release Notes Copyright 2006 by SSA Global Technologies, Inc. and its Subsidiaries and Affiliates All rights reserved. No part of this publication may

More information

Infor LN Studio Application Development Guide

Infor LN Studio Application Development Guide Infor LN Studio Application Development Guide Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

Infor LN Service User Guide for Configuration Management

Infor LN Service User Guide for Configuration Management Infor LN Service User Guide for Configuration Management Copyright 2018 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains

More information

Infor LN HTML5 Workbench Administration Guide

Infor LN HTML5 Workbench Administration Guide Infor LN HTML5 Workbench Administration Guide Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

Infor LN HTML5 Workbench Administration Guide

Infor LN HTML5 Workbench Administration Guide Infor LN HTML5 Workbench Administration Guide Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

Definition of BEMIS FML001 Import and Export File for Business Document Load Information to Carrier

Definition of BEMIS FML001 Import and Export File for Business Document Load Information to Carrier Definition of BEMIS FML001 Import and Export File for Business Document Load Information to arrier opyright 2014 Infor Important Notices The material contained in this publication (including any supplementary

More information

Infor LN Studio Administration Guide

Infor LN Studio Administration Guide Infor LN Studio Administration Guide Copyright 2015 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential and

More information

Infor ERP LN 6.1 Data Converter

Infor ERP LN 6.1 Data Converter Infor ERP LN 6.1 Infor ERP LN 6.1 Data Converter User's Guide Copyright 2008 Infor All rights reserved. The word and design marks set forth herein are trademarks and/or registered trademarks of Infor and/or

More information

Infor Enterprise Server Plug-in for Microsoft SQL Server Reporting Services Development Guide

Infor Enterprise Server Plug-in for Microsoft SQL Server Reporting Services Development Guide Infor Enterprise Server Plug-in for Microsoft SQL Server Reporting Services Development Guide Copyright 2017 Infor Important Notices The material contained in this publication (including any supplementary

More information

SSA Baan R & D. User's Guide for PowerDOCS and CyberDOCS

SSA Baan R & D. User's Guide for PowerDOCS and CyberDOCS SSA Baan R & D User's Guide for PowerDOCS and CyberDOCS Copyright 2004 by Baan International B.V., a subsidiary of SSA Global Technologies, Inc. All rights reserved. No part of this publication may be

More information

SSA Baan IVc4. Deployment Guide for Unix and Windows

SSA Baan IVc4. Deployment Guide for Unix and Windows SSA Baan IVc4 Deployment Guide for Unix and Windows Copyright 2004 by Baan International B.V., a subsidiary of SSA Global Technologies, Inc. All rights reserved. No part of this publication may be reproduced,

More information

Infor LN Workbench Installation Guide 2.0

Infor LN Workbench Installation Guide 2.0 Infor LN Workbench Installation Guide 2.0 Copyright 2014 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

Infor Ming.le-LN Plug-in User Guide (LN UI)

Infor Ming.le-LN Plug-in User Guide (LN UI) Infor Mingle-LN Plug-in User Guide (LN UI) Copyright 2015 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

ERP LN 6.1 Electronic Commerce. Definition of BEMIS INV100 Import and Export File for Business Document Trading Invoice (Tax on Line)

ERP LN 6.1 Electronic Commerce. Definition of BEMIS INV100 Import and Export File for Business Document Trading Invoice (Tax on Line) 6.1 Electronic Commerce Definition of BEMIS INV100 Import and Export File for Business Document Trading Invoice (Tax on Line) Copyright 2008 Infor All rights reserved. The word and design marks set forth

More information

HA150. SAP HANA 2.0 SPS03 - SQL and SQLScript for SAP HANA COURSE OUTLINE. Course Version: 15 Course Duration:

HA150. SAP HANA 2.0 SPS03 - SQL and SQLScript for SAP HANA COURSE OUTLINE. Course Version: 15 Course Duration: HA150 SAP HANA 2.0 SPS03 - SQL and SQLScript for SAP HANA. COURSE OUTLINE Course Version: 15 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved.

More information

HA150 SQL Basics for SAP HANA

HA150 SQL Basics for SAP HANA HA150 SQL Basics for SAP HANA. COURSE OUTLINE Course Version: 13 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

HA150. SAP HANA 2.0 SPS02 - SQL and SQLScript for SAP HANA COURSE OUTLINE. Course Version: 14 Course Duration: 3 Day(s)

HA150. SAP HANA 2.0 SPS02 - SQL and SQLScript for SAP HANA COURSE OUTLINE. Course Version: 14 Course Duration: 3 Day(s) HA150 SAP HANA 2.0 SPS02 - SQL and SQLScript for SAP HANA. COURSE OUTLINE Course Version: 14 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights

More information

Oracle Adaptive Access Manager. 1 Oracle Adaptive Access Manager Documentation. 2 Resolved Issues. Release Notes Release 10g (

Oracle Adaptive Access Manager. 1 Oracle Adaptive Access Manager Documentation. 2 Resolved Issues. Release Notes Release 10g ( Oracle Adaptive Access Manager Release Notes Release 10g (10.1.4.5) E13648-03 May 2009 These release notes contain important last minute information not included in the Oracle Adaptive Access Manager Release

More information

Infor Enterprise Server Technical Reference Guide for Oracle Database Driver

Infor Enterprise Server Technical Reference Guide for Oracle Database Driver Infor Enterprise Server Technical Reference Guide for Oracle Database Driver Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information)

More information

Lawson: Customizing Lawson Applications with Design Studio and JavaScript Training Workbook

Lawson: Customizing Lawson Applications with Design Studio and JavaScript Training Workbook Lawson: Customizing Lawson Applications with Design Studio and JavaScript Training Workbook Infor Lawson April 13, 2016 Course code: 01_0121000_IEN0710_S3O Legal notice Copyright 2017 Infor. All rights

More information

Infor Enterprise Server Technical Reference Guide for Enterprise DB Database Driver

Infor Enterprise Server Technical Reference Guide for Enterprise DB Database Driver Infor Enterprise Server Technical Reference Guide for Enterprise DB Database Driver Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information)

More information

Infor Solution License Manager 7.1. Installation and Configuration Guide

Infor Solution License Manager 7.1. Installation and Configuration Guide Infor Solution License Manager 7.1 Installation and Configuration Guide Copyright 2008 Infor All rights reserved. The word and design marks set forth herein are trademarks and/or registered trademarks

More information

CloudSuite Business / CloudSuite Industrial / SyteLine: Using Doc-Trak Training Workbook

CloudSuite Business / CloudSuite Industrial / SyteLine: Using Doc-Trak Training Workbook CloudSuite Business / CloudSuite Industrial / SyteLine: Using Doc-Trak Training Workbook Any course content that refers to SyteLine also applies to CloudSuite Business and CloudSuite Industrial. CloudSuite

More information

FONT SOFTWARE END USER LICENSE AGREEMENT. We recommend that you print this Font Software End User License Agreement for further reference.

FONT SOFTWARE END USER LICENSE AGREEMENT. We recommend that you print this Font Software End User License Agreement for further reference. FONT SOFTWARE END USER LICENSE AGREEMENT We recommend that you print this Font Software End User License Agreement for further reference. This Font Software End User License Agreement (the Agreement )

More information

SIMS TERMS AND CONDITIONS OF USE AGREEMENT

SIMS TERMS AND CONDITIONS OF USE AGREEMENT SIMS TERMS AND CONDITIONS OF USE AGREEMENT 1. These Terms and Conditions ("the Terms and Conditions") govern your ("the User") use of the Website and Web application and the information thereon, known

More information

HA300 SAP HANA Modeling

HA300 SAP HANA Modeling HA300 SAP HANA Modeling. COURSE OUTLINE Course Version: 13 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

ERP LN 6.1 Electronic Commerce. Definition of BEMIS INV001 Import and Export File for Business Document Trading Invoice

ERP LN 6.1 Electronic Commerce. Definition of BEMIS INV001 Import and Export File for Business Document Trading Invoice 6.1 Electronic Commerce Definition of BEMIS INV001 Import and Export File for Business Document Trading Invoice Copyright 2008 Infor All rights reserved. The word and design marks set forth herein are

More information

Compatibility Matrix. Good Control and Good Proxy. June 4, 2018

Compatibility Matrix. Good Control and Good Proxy. June 4, 2018 Compatibility Matrix Good Control and Good Proxy June 4, 2018 Published: 2018-06-04 SWD-20180604161707961 Contents Introduction... 4 Legend... 4 Good Control server... 5 Operating system...5 Database server...5

More information

Commission Plan Support for Microsoft Professional Services Tools Library. For Microsoft Dynamics GP versions:

Commission Plan Support for Microsoft Professional Services Tools Library. For Microsoft Dynamics GP versions: Commission Plan Support for Microsoft Professional Services Tools Library For Microsoft Dynamics GP versions: 2018 2016 2015 2013 2010 10 1 Copyright Manual copyright 2011 EthoTech, Inc. All rights reserved.

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

HA301. SAP HANA 2.0 SPS03 - Advanced Modeling COURSE OUTLINE. Course Version: 15 Course Duration:

HA301. SAP HANA 2.0 SPS03 - Advanced Modeling COURSE OUTLINE. Course Version: 15 Course Duration: HA301 SAP HANA 2.0 SPS03 - Advanced Modeling. COURSE OUTLINE Course Version: 15 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

FLUENDO GENERIC EULA

FLUENDO GENERIC EULA FLUENDO GENERIC EULA FLUENDO S.A. Avenida Diagonal 579, 8th floor 08014 Barcelona Spain 1 END USER LICENSE AGREEMENT (EULA) FLUENDO LICENSE AGREEMENT BY FLUENDO, S.A. ( FLUENDO ) IMPORTANT - READ CAREFULLY

More information

HA300 SAP HANA Modeling

HA300 SAP HANA Modeling HA300 SAP HANA Modeling. COURSE OUTLINE Course Version: 12 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes BlackBerry Enterprise Server for Microsoft Office 365 Version: 1.0 Maintenance Release: 1 Release Notes Published: 2013-07-18 SWD-20130718144837059 Contents 1 New in this release...4 2 Fixed issues...5

More information

BlackBerry Enterprise Service 10. September 10, 2014 Version: 10 and 10.1.x. Compatibility Matrix

BlackBerry Enterprise Service 10. September 10, 2014 Version: 10 and 10.1.x. Compatibility Matrix BlackBerry Enterprise Service 10 September 10, 2014 Version: 10 and 10.1.x Compatibility Matrix Published: 2014-09-10 SWD-20140910144217710 Contents 1...4 Introduction...4 Legend... 4 Operating system...

More information

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits Export Controls Export laws and regulations of the United States

More information

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding)

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) CLAUSE 13 ON-LINE BIDDING 13.1 ON-LINE BIDDING.1 Definitions: Owner means the party and/or their agent designated to receive on-line

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

Quick Start Guide. BlackBerry Workspaces app for Android. Version 5.0

Quick Start Guide. BlackBerry Workspaces app for Android. Version 5.0 Quick Start Guide BlackBerry Workspaces app for Android Version 5.0 Published: 2017-01-22 SWD-20170122060917401 Contents Overview... 4 Browse workspaces, folders, and files... 5 Create new workspaces,

More information

SAP HANA SPS 08 - What s New? SAP HANA Modeling (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014

SAP HANA SPS 08 - What s New? SAP HANA Modeling (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014 SAP HANA SPS 08 - What s New? SAP HANA Modeling (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014 SAP HANA SPS 08 Feature Overview Modeling Enhancements Enhanced SAP HANA Modeling capabilities

More information

Siebel Server Sync Guide. Siebel Innovation Pack 2016 May 2016

Siebel Server Sync Guide. Siebel Innovation Pack 2016 May 2016 Siebel Server Sync Guide Siebel Innovation Pack 2016 May 2016 Copyright 2005, 2016 Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license

More information

Infor LN User Guide for Table Sharing

Infor LN User Guide for Table Sharing Infor LN User Guide for Table Sharing Copyright 25 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential and

More information

Infor Enterprise Server Web UI Difference Study

Infor Enterprise Server Web UI Difference Study Infor Enterprise Server Web UI Difference Study Copyright 2015 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

Siebel Server Sync Guide. Siebel Innovation Pack 2015 May 2015

Siebel Server Sync Guide. Siebel Innovation Pack 2015 May 2015 Siebel Server Sync Guide Siebel Innovation Pack 2015 May 2015 Copyright 2005, 2015 Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license

More information

BC414. Programming Database Updates COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

BC414. Programming Database Updates COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) BC414 Programming Database Updates. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

LOGO LICENSE AGREEMENT(S) CERTIPORT AND IC³

LOGO LICENSE AGREEMENT(S) CERTIPORT AND IC³ LOGO LICENSE AGREEMENT(S) CERTIPORT AND IC³ EXHIBIT B-2 LICENSEE: Address: Attention: Phone: Fax: Email: Account #: CERTIPORT LOGO LICENSE AGREEMENT Authorized Testing Centers This Logo License Agreement

More information

BC403 Advanced ABAP Debugging

BC403 Advanced ABAP Debugging BC403 Advanced ABAP Debugging. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Specifications

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Specifications Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Specifications Export Controls Export laws and regulations of the United States and any other

More information

Installing Enterprise Switch Manager

Installing Enterprise Switch Manager Installing Enterprise Switch Manager ATTENTION Clicking on a PDF hyperlink takes you to the appropriate page If necessary, scroll up or down the page to see the beginning of the referenced section NN47300-300

More information

BOD410 SAP Lumira 2.0 Designer

BOD410 SAP Lumira 2.0 Designer BOD410 SAP Lumira 2.0 Designer. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

Infor Enterprise Server User Guide for Triggering

Infor Enterprise Server User Guide for Triggering Infor Enterprise Server User Guide for Triggering Copyright 2015 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

DS10. Data Services - Platform and Transforms COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

DS10. Data Services - Platform and Transforms COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) DS10 Data Services - Platform and Transforms. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No

More information

HA240 SAP HANA 2.0 SPS02

HA240 SAP HANA 2.0 SPS02 HA240 SAP HANA 2.0 SPS02 - Authorizations, Scenarios & Security Requirements. COURSE OUTLINE Course Version: 14 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate

More information

BlackBerry Enterprise Server for Novell GroupWise. Compatibility Matrix June 26, 2012

BlackBerry Enterprise Server for Novell GroupWise. Compatibility Matrix June 26, 2012 BlackBerry Enterprise Server for Novell GroupWise Compatibility Matrix June 26, 2012 2012 Research In Motion Limited. All rights reserved. www.rim.com Page: 1 Operating Systems: BlackBerry Enterprise Server

More information

HA 450. Application Development for SAP HANA COURSE OUTLINE. Course Version: 12 Course Duration:

HA 450. Application Development for SAP HANA COURSE OUTLINE. Course Version: 12 Course Duration: HA 450 Application Development for SAP HANA. COURSE OUTLINE Course Version: 12 Course Duration: SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

BlackBerry Enterprise Server Express for Microsoft Exchange

BlackBerry Enterprise Server Express for Microsoft Exchange BlackBerry Enterprise Server Express for Microsoft Exchange Compatibility Matrix March 25, 2013 2013 Research In Motion Limited. All rights reserved. www.rim.com Page: 1 Operating Systems: BlackBerry Enterprise

More information

Oracle Binary Code License Agreement for Java Secure Sockets Extension for Connected Device Configuration 1.0.2

Oracle Binary Code License Agreement for Java Secure Sockets Extension for Connected Device Configuration 1.0.2 Oracle Binary Code License Agreement for Java Secure Sockets Extension 1.0.3 for Connected Device Configuration 1.0.2 ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND

More information

Infor ES Application Service Manager Administration Guide

Infor ES Application Service Manager Administration Guide Infor ES Application Service Manager Administration Guide Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains

More information

User Guide. BlackBerry Docs To Go for Android. Version 1.3.0

User Guide. BlackBerry Docs To Go for Android. Version 1.3.0 User Guide BlackBerry Docs To Go for Android Version 1.3.0 Published: 2017-09-13 SWD-20170925160536936 Contents Introduction... 5 What is the BlackBerry Docs To Go app?...5 Getting started with BlackBerry

More information

MDG100 Master Data Governance

MDG100 Master Data Governance MDG100 Master Data Governance. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

Release Notes. BlackBerry Enterprise Identity

Release Notes. BlackBerry Enterprise Identity Release Notes BlackBerry Enterprise Identity Published: 2018-03-13 SWD-20180606100327990 Contents New in this release...4 Fixed issues...5 Known issues... 6 Legal notice...8 New in this release New in

More information

BC405 Programming ABAP Reports

BC405 Programming ABAP Reports BC405 Programming ABAP Reports. COURSE OUTLINE Course Version: 16 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

1 Important Configuration Changes

1 Important Configuration Changes Oracle Database Application Express Release Notes Release 2.2 B28553-02 July 2006 These Release Notes contain important information not included in the Oracle Application Express documentation. For the

More information

Installing Enterprise Switch Manager

Installing Enterprise Switch Manager Installing Enterprise Switch Manager NN47300-300 Document status: Standard Document version: 0401 Document date: 26 March 2008 All Rights Reserved The information in this document is subject to change

More information

NOOTRY TERMS OF SERVICE

NOOTRY TERMS OF SERVICE NOOTRY TERMS OF SERVICE Nootry LLC ( Nootry ), a Delaware limited liabilities company, provides access to and use of the services, including our website, APIs, email notifications, and application (the

More information

Legal Notices Oracle Primavera The P6 Extended Schema Copyright 1997, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are reg

Legal Notices Oracle Primavera The P6 Extended Schema Copyright 1997, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are reg The P6 Extended Schema November 2012 Legal Notices Oracle Primavera The P6 Extended Schema Copyright 1997, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks

More information

This section includes information on important Oracle Healthcare Data Model installation and configuration details. 1.1 Obtain and Apply IP Patch

This section includes information on important Oracle Healthcare Data Model installation and configuration details. 1.1 Obtain and Apply IP Patch Oracle Healthcare Data Model Release Notes 11g Release 2 (11.2) E18028-02 November 2010 This document contains important information that was not included in the documentation for this release of Oracle

More information

SATO Printer Interface API

SATO Printer Interface API SATO Printer Interface API Version 1.2 16-OCT-2014 SATO Global Business Services Pte. Ltd. SATO Printer Interface API Page 1 CONTENTS Software License Agreement... 3 Copyrights... 4 Limitation of Liability...

More information

Oracle Cloud E

Oracle Cloud E Oracle Cloud Using the Evernote Adapter Release 16.3 E69234-05 September 2016 This guide describes how to configure and add the Evernote Adapter to an Oracle Integration Cloud Service integration. Oracle

More information

C4C30. SAP Cloud Applications Studio COURSE OUTLINE. Course Version: 21 Course Duration: 4 Day(s)

C4C30. SAP Cloud Applications Studio COURSE OUTLINE. Course Version: 21 Course Duration: 4 Day(s) C4C30 SAP Cloud Applications Studio. COURSE OUTLINE Course Version: 21 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

TOOLBOX SUBSCRIPTION AGREEMENT FOR OPEN SOURCE PROJECTS

TOOLBOX SUBSCRIPTION AGREEMENT FOR OPEN SOURCE PROJECTS This is a new version of the agreement for open source projects that will be effective October 1, 2017. Please review and contact us at sales@jetbrains.com if you have any questions. TOOLBOX SUBSCRIPTION

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Administrator and Manager's Guide for Site Studio 11g Release 1 (11.1.1) E10614-01 May 2010 Oracle Fusion Middleware Administrator and Manager's Guide for Site Studio, 11g Release

More information

SAP HANA SPS 09 - What s New? SAP River

SAP HANA SPS 09 - What s New? SAP River SAP HANA SPS 09 - What s New? SAP River (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP AG or an SAP affiliate company. All rights reserved. 1 SAP River What s New in

More information

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA)

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) This is a License Agreement (the "Agreement") for certain code (the Software ) owned by Akamai Technologies, Inc. ( Akamai ) that is useful in connection

More information

XO SITE SECURITY SERVICES

XO SITE SECURITY SERVICES XO SITE SECURITY SERVICES 1.0 Product and Services 1.1 Product Description. XO Site Security (the "Service") is a managed security service which uses Premises-based, multi-threat sensing Customer Premises

More information

Data Model Getting Started Oracle FLEXCUBE Universal Banking Release [May] [2018]

Data Model Getting Started Oracle FLEXCUBE Universal Banking Release [May] [2018] Data Model Getting Started Oracle FLEXCUBE Universal Banking Release 14.1.0.0.0 [May] [2018] Contents 1. PREFACE... 3 1.1 AUDIENCE... 3 2. INTRODUCTION... 4 2.1 WHAT IS IN THIS GUIDE... 4 2.2 WHY REVERSE

More information

2 Records Manager Updates

2 Records Manager Updates Oracle Records Manager Corporate Edition Release Notes 10g Release 3 (10.1.3.3.2) October 2007 These release notes outline new and enhanced features for this release of Records Manager Corporate Edition.

More information

Compatibility Matrix. BlackBerry UEM. March 26, 2018

Compatibility Matrix. BlackBerry UEM. March 26, 2018 Compatibility Matrix BlackBerry UEM March 26, 2018 Published: 2018-03-26 SWD-20180326105755902 Contents Introduction... 4 Legend... 4 BlackBerry UEM server...5 Operating system...5 Database server...5

More information

Site Impact Policies for Website Use

Site Impact Policies for Website Use Site Impact Policies for Website Use Thank you for visiting the Site Impact website (the Website ). We have set up some ground rules to ensure protection of our rights and yours. Site Impact reserves the

More information

Report Viewer Version 8.1 Getting Started Guide

Report Viewer Version 8.1 Getting Started Guide Report Viewer Version 8.1 Getting Started Guide Entire Contents Copyright 1988-2017, CyberMetrics Corporation All Rights Reserved Worldwide. GTLRV8.1-11292017 U.S. GOVERNMENT RESTRICTED RIGHTS This software

More information

DEMO MANUAL DC2645A LTC MHz to 9GHz High Linearity I/Q Demodulator with Wideband IF Amplifier DESCRIPTION BOARD PHOTO

DEMO MANUAL DC2645A LTC MHz to 9GHz High Linearity I/Q Demodulator with Wideband IF Amplifier DESCRIPTION BOARD PHOTO DESCRIPTION Demonstration circuit 2645A showcases the LTC 5594 300MHz to 9GHz high linearity I/Q demodulator with wideband IF amplifiers. The USB serial controller, DC590B, is required to control and configure

More information

2 Open Bugs and Known Issues

2 Open Bugs and Known Issues Oracle Database Express Edition Readme 11g Release 2 (11.2) E21743-01 March 2011 This release contains important information that was not included in the platform-specific or product-specific documentation

More information

Infor Enterprise Server Technical Reference Guide for SQL Server Database Driver

Infor Enterprise Server Technical Reference Guide for SQL Server Database Driver Infor Enterprise Server Technical Reference Guide for SQL Server Database Driver Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information)

More information

Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release

Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release 11.1.1.5.0 21012-01 March 2011 Oracle Enterprise Single Sign-on Logon Manager

More information

HA100 SAP HANA Introduction

HA100 SAP HANA Introduction HA100 SAP HANA Introduction. COURSE OUTLINE Course Version: 15 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may

More information

Good Mobile Service Manager Release Notes 8.6

Good Mobile Service Manager Release Notes 8.6 Good Mobile Service Manager Release Notes 8.6 1 Release Notes Summary Upgrade paths Installation procedures Special instructions for monitoring Enhancements and resolved issues Upgrade Paths to 8.6 The

More information

New Features in Primavera Professional 15.2

New Features in Primavera Professional 15.2 New Features in Primavera Professional 15.2 COPYRIGHT & TRADEMARKS Copyright 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

More information

MARKIT LOAN RECONCILIATION USER AGREEMENT

MARKIT LOAN RECONCILIATION USER AGREEMENT MARKIT LOAN RECONCILIATION USER AGREEMENT The undersigned wishes to participate in the Markit Loan Reconciliation syndicated loan processing system (the System ) provided by Markit North America, Inc.

More information

Funding University Inc. Terms of Service

Funding University Inc. Terms of Service Funding University Inc. Terms of Service None of the information contained in Funding University's website constitutes a recommendation, solicitation or offer by Funding University or its affiliates to

More information

INCLUDING MEDICAL ADVICE DISCLAIMER

INCLUDING MEDICAL ADVICE DISCLAIMER Jordan s Guardian Angels Terms and Conditions of Use INCLUDING MEDICAL ADVICE DISCLAIMER Your use of this website and its content constitutes your agreement to be bound by these terms and conditions of

More information

Revised 10/15/2014 WEBSITE TERMS OF USE

Revised 10/15/2014 WEBSITE TERMS OF USE WEBSITE TERMS OF USE 1) Definitions. In these Website Terms of Use we, our and us means AGS LLC ( AGS ), a Delaware corporation. You and your means a user of the website at www.playags.com (the Website

More information

Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX

Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL,

More information

SAP HANA SPS 08 - What s New? SAP HANA Application Lifecycle Management (Delta from SPS 07 to SPS 08) SAP HANA Product Management June, 2014

SAP HANA SPS 08 - What s New? SAP HANA Application Lifecycle Management (Delta from SPS 07 to SPS 08) SAP HANA Product Management June, 2014 SAP HANA SPS 08 - What s New? SAP HANA Application Lifecycle Management (Delta from SPS 07 to SPS 08) SAP HANA Product Management June, 2014 Agenda Overview of SAP HANA Application Lifecycle Management

More information

Terms Of Use AGREEMENT BETWEEN USER AND DRAKE MODIFICATION OF THESE TERMS OF USE LINKS TO THIRD PARTY WEB SITES USE OF COOKIES

Terms Of Use AGREEMENT BETWEEN USER AND DRAKE MODIFICATION OF THESE TERMS OF USE LINKS TO THIRD PARTY WEB SITES USE OF COOKIES Terms Of Use AGREEMENT BETWEEN USER AND DRAKE This website and other related websites and mobile applications (collectively referred to as "Sites") comprise various web pages and services operated by Drake

More information

PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL

PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL Last Modified: 3/12/2018 These terms and conditions ( Terms and Conditions ) are a legal agreement between you and PlainsCapital Bank that

More information

BlackBerry Enterprise Server for IBM Lotus Domino. Compatibility Matrix. September 20, 2012

BlackBerry Enterprise Server for IBM Lotus Domino. Compatibility Matrix. September 20, 2012 BlackBerry Enterprise Server for IBM Lotus Domino Compatibility Matrix September 20, 2012 2012 Research In Motion Limited. All rights reserved. www.rim.com Page: 1 **Software version support life cycle

More information