Oracle FLEXCUBE Universal Banking Development Workbench- Screen Development II

Size: px
Start display at page:

Download "Oracle FLEXCUBE Universal Banking Development Workbench- Screen Development II"

Transcription

1 Oracle FLEXCUBE Universal Banking Develpment Wrkbench- Screen Develpment II August

2 Cntents 1 Preface Audience Related Dcuments Intrductin Generated Files Frnt-End Files System Packages Hk Packages Meta Data Others Deplyment Prerequisites: Deply Files: Release SVN Integratin

3 1 Preface This dcument describes the generatin, deplyment and release f units frm Oracle FLEXCUBE Develpment Wrkbench fr Universal Banking. This dcument explains the prcess f generating and deplying files frm Develpment Wrkbench fr a functin id 1.1 Audience This dcument is intended fr FLEXCUBE Applicatin develpers/users that use Develpment Wrkbench t develp varius FLEXCUBE cmpnents. T Use this manual, yu need cnceptual and wrking knwledge f the belw: Prficiency FLEXCUBE Functinal Architecture Resurces Training prgrams frm Oracle Financial Sftware Services. FLEXCUBE Technical Architecture Training prgrams frm Oracle Financial Sftware Services. FLEXCUBE Object Naming cnventins Develpment Overview Guide Wrking knwledge f Web based applicatins Self Acquired Wrking knwledge f Oracle Database Oracle Dcumentatins Wrking knwledge f PLSQL & SQL Language Self Acquired Wrking knwledge f XML files Self Acquired Wrking Knwledge f Develpment Wrkbench fr Universal Banking User Manuals 1.2 Related Dcuments 04-Develpment_WrkBench_Screen_Develpment-I.pdf 07-Develpment_WrkBench_Ntificatins.pdf 3

4 2 Intrductin This dcument gives infrmatin n the fllwing tpics: Chapter 2, Intrductin Chapter 3, Generated Files" Chapter 4, Deplyment Chapter 5, "Release 3 Generated Files Develpment Wrkbench generates fllwing files as shwn in the figure belw. This screen can be launched by clicking n icn frm the functin generatin screen. This has t be dne after design f screen is cmpleted. Refer 04-Develpment_WrkBench_Screen_Develpment- I.pdf fr detailed explanatin n screen develpment Fig 3.1: File Generatin Screen Fr actin New, Wrkbench autmatically selects the all files as shwn in figure. If functin id has been laded.then hk packages will nt be checked 4

5 Click n Generate buttn t generated the files selected 3.1 Frnt-End Files Fig 3.2: Files Generated message These files need t be cpied t applicatin server in respective flders. RADXML This file cntains the Data Used t Design screen. Radxml is Input t Wrkbench. File Name : <Functin_ID>_RAD.xml Screen Xml This file is an XML markup f presentatin details, fr the designed Functin ID specific t a language. XSL Transfrmatin is applied t this XML file by linking it t an XSL file. This results in HTML Markup which is displayed by the brwser. File name : <Functin_ID>.xml System JS This JavaScript file mainly cntains a list f declared variables used by FLEXCUBE Infra. 5

6 msgxml: - This variable is used by the system t build FCUBS Request XML datasrclcatinarray: - This variable is an array f DATA BLOCKS relatinarray:-this array cntains relatin and relatin type details f blcks.this is used fr data binding retflds and bndflds:- These arrays cntains LOV infrmatin CallFrmArray, CallFrmRelat, CallRelatType:- These arrays cntains callfrm details, call frm relatin and relatin type actinsammendarray: - This array cntains infrmatin fr enabling fields based n actins File name : <Functin_ID>_SYS.js Release Specific JS Nte: Release Specific JavaScript File will nt be generated by Wrkbench. This file, if required, has t be created by develper. This JavaScript file allws develper t add functinal cde and is specific t Release. The functins in this file are generally triggered by screen events. A develper wrking in KERNEL release wuld add functins based n tw categries: Functins triggered by screen lading events Eg: fnprelad_kernel(),fnpstlad_kernel() Functins triggered by screen actin events Eg: fnprenew_ KERNEL (),fnpstnew_ KERNEL () A develper wrking in CLUSTER release wuld add functins based n tw categries: Functins triggered by screen lading events Eg: fnprelad_cluster(),fnpstlad_cluster() Functins triggered by screen actin events Eg: fnprenew_ CLUSTER (),fnpstnew_ CLUSTER () In case if any functin in KERNEL JavaScript file has t be mdified, this can be achieved by verriding the functin in CLUSTER JavaScript file. The functins in this file are generally triggered by screen events. A develper wrking in CUSTOM release wuld add functins based n tw categries: Functins triggered by screen lading events Eg: fnprelad_custom(),fnpstlad_custom() Functins triggered by screen actin events Eg: fnprenew_ CUSTOM (),fnpstnew_ CUSTOM () 6

7 In case if any functin either in KERNEL JavaScript file r CLUSTER JavaScript file has t be mdified, this can be achieved by verriding the respective functin in CUSTOM JavaScript file File name : <Functin_ID>_<RELEASE_TYPE>.js 3.2 System Packages Main Package Specificatin: The Main Package Spec Cntains all the Declaratins. Main Package Bdy: Main Package wuld cntain the all the business lgic and persistence cde fr the functined. It will als cntain call t hk packages.different flavrs f main Package generated are 1) Maintenance FunctinId 2) Transactin FunctinId 3) Others Categry FunctinId 4) Reprt Parameter Screen 5) Ntificatin 6) Purge Entity The main package has the belw stages in case f a maintenance functin: Cnverting Ts t PL/SQL Cmpsite Type Checking fr mandatry fields Defaulting and validating the data Writing int Database Querying the Data frm database Cnverting the Mdified Cmpsite Type again t TS Each f these stages has a Pre and Pst hks in the Release Specific Packages. Nte : Main Package has the system-generated cde and shuld nt be mdified by the develper. Uplad Package Specificatin Uplad Package Bdy Uplad Packages wuld supprt adapter uplad flw f any FunctinId. The package will cntain cde t cnvert uplad table data t functin id specific 7

8 PL/SQL cmpsite type. The main package f the functined wuld be called t uplad the data Ntificatin Triggers This will be generated nly fr ntificatin trigger screens. Refer 07- Develpment_WrkBench_Ntificatins.pdf fr further reference 3.3 Hk Packages Kernel, Cluster and Custm Packages are the packages where the respective team can add business lgic in apprpriate functins using the Pre and Pst hks available. Kernel Package Spec Kernel Package Bdy The Kernel package is slely fr the Kernel Team t mdify. The Main package has designated calls t the Kernel package fr executing any functinal checks r validatins included in the Kernel Package. All the user level validatins and cnditinal peratins shuld be included in Fn_Pst_Default_and_Validate. This functin is called frm the Main Package after the executin f Fn_Default_and_Validate. User shuld avid putting validatins r cde in any ther functin. In case user needs t add a separate functin, the existing Wrkbench generated structure shuld nt be changed. Instead the user can create a new package e.g. <MODULE>PKS_<FID>_UTILS package. The desired functin can be included in this package and the call can be made frm the Kernel Package. Cluster Package Spec Cluster Package Bdy The Cluster package is available t the Cluster Team t add any validatins r Checks specific t the Cluster Team ver and abve the Kernel Team. The Kernel Team r the Custm Team shuld nt mdify the cntents f this package. Custm Package Spec Custm Package Bdy The Custm package is available t the Custm Team nly t add any validatins r Checks ver and abve thse already present in the Kernel and Cluster Packages. 8

9 3.4 Meta Data Wrkbench generates INC files which cntains insert scripts. These are static data required fr the functining f the functin id. Develper needs t deply generated INC s in FLEXCUBE schema. Menu Details Under menu Details belw 4 table entry Insert Scripts will get generated. SMTB_MENU SMTB_FUNCTION_DESCRIPTION SMTB_ROLE_DETAIL SMTB_FCC_FCJ_MAPPING If any ne f table entry missing while designing new functin ID, FLEXCUBE wn t allw launching functin ID. Data surce Details Generates INC fr CSTB_FID_DATA_SOURCES. This data is required fr uplading data t FLEXCUBE fr the functin id thrugh excel. Lv Details Generates INC fr CSTB_LOV_INFO. FLEXCUBE will be using this infrmatin t get data fr List f values prvided in the screen Blck Details Generates INC fr CSTB_FID_DATA_BLOCKS. This data is required fr uplading data t FLEXCUBE fr the functin id thrugh excel. Screen Details Generates INC fr CSTB_FID_SCREENS. Amendable details Generates INC fr belw table. These scripts prvides infrmatin regarding the amendable fields in the screen.entry has t be present fr the required field in these tables in rder t make that field amendable thrugh FLEXCUBE and gateway peratin GWTM_AMEND_MASTER GWTM_AMEND_NODES GWTM_AMEND_FIELDS GWTB_AMEND_NODES GWTB_AMEND_FIELDS Call frm Details Generates INC fr CSTB_CALL_FORM_NODES. These will be generated nly if the screen is a Call Frm. It is required fr attaching the particular Call frm t any ther functin id. 9

10 Summary Details Generates INC fr CSTB_SUMMARY_INFO. Dat in this table is required fr fetching recrds in the summary screen f the particular functin id. Label Details Generates INC fr CSTB_FIELD_LABELS and CSTB_OTHER_LABELS. Labels can be used fr Language translatin f screens. These scripts prvides infrmatin regarding the label cdes attached t each field. These are useful while develping language packs fr FLEXCUBE CSTB_FIELD_LABELS Cntains Field Label details. CSTB_OTHER_LABELS Cntains SCREEN, TAB, FIELDSET, BLOCK etc label details. Nte that Wrkbench des nt generate scripts fr CSTB_LABELS. Data in CSTB_LABELS is maintenance required fr the Tl. Blck Pk Clumns Generates INC fr STTB_AUDIT_PK_COLS. Functin Call Frms Generates INC fr CSTB_FID_CALLFORMS. This data is required fr uplading data t FLEXCUBE fr the functin id thrugh excel. Gateway Details Generates INC fr belw tables. Data in these tables are required fr gateway peratins (web services) fr the particular screen GWTM_FCJ_FUNCTIONS GWTM_OPERATIONS_MASTER Ntificatin Details Generates INC fr belw tables. Ntificatin INCs will get generated nly fr Ntificatin screens GWTM_NOTIFICATION_TRIGGERS GWTM_NOTIFICATIONS_MASTER Functin parameters Generates INC fr belw tables. This INC gets generates nly fr Reprts screens (i.e. Functin Categry Reprt). AETB_FUNC_MASTER AETB_FUNC_DETAIL Purge Details Generates INC fr belw tables. These scripts will be generated nly fr Purge Entity Definitins screens STTM_PURGE_MASTER STTM_PURGE_TBL_DETAILS STTM_PURGE_FILTERS 10

11 3.5 Others Xsds The XSD files are used fr the creatin f xmls, which are in turn used during the executin f peratins thrugh Gateway. Xsds with Anntatin Xsds will be generated with anntatins. This can be used fr dcument creatin f any Web Service Screen html The HTML files are used t take screen shts by cnverting them t images, which in turn used fr Dcument preparatin. Uplad Table Trigger Trigger will be generated fr inserting recrds int adapter uplad prcess tables (CSTB_EXT_CONTRACT_STAT,STTB_UPLOAD_MASTER) frm uplad tables. Uplad Table definitin DDL fr uplad tables wuld be generated. If existing uplad tables are being re used, the generated DDL s can ignred Archive Table definitin DDL fr archival tables wuld be generated fr Purge Entity Radxml. Synnyms fr the tables wuld als be generated. Nte: Fr new screen all file ptins will be checked autmatically. Fr mdificatin nly system generated files will be checked, based n user requirement can pt fr ther file generatin. 4 Deplyment Wrkbench generated files can be deplyed directly t the applicatin server and schema. Frnt-end files get cpied t desired lcatin which user has maintained while adding envirnment details. Database files get cmpiled t FLEXCUBE schema which is specified in the wrking envirnment. 4.1 Prerequisites: The belw maintenance is required t use the deply ptin. In envirnment user has tw ptins t cpy files based n the perating system FLEXCUBE applicatin is running. Windws : File Cpy / FileManager Unix : FileManager FileManager Servlet needs t deply in applicatin server where FLEXCUBE is running. 11

12 Refer File manager sectin in 02-Develpment_WrkBench_Administratin.pdf t get mre details abut file manager. Fig 4.1: The Envirnment Details In envirnment creatin belw details are mandatry t use deply ptin. Applicatin Operating System Unix/Windws Applicatin Transfer Type Windws File Cpy/FileManager UNIX FileManager JS Directry Path : Enter the shared path f JS files. Uixml Directry Path: Enter Shared path f Language Xml files. Nte: If appliactin server is windws user can enter abslute path. 12

13 4.2 Deply Files: Click Deply buttn as shwn in belw image. Fig 4.2: The deplyment Screen Select required files t deply.click deply buttn. On success full deplyment user will get status as Deplyed. 13

14 5 Release Fig 4.3: Deplyment f selected files Release feature f Wrkbench is applicable nly fr develpers within Oracle Financials. It invlves the integratin the Tl with ther in huse tls (repsitry/versin cntrl tls) Oracle FLEXCUBE Develpment Wrkbench is integrated with SVN. 5.1 SVN Integratin Nw, Wrkbench prvides an interface t release the units generated t SVN The fllwing prerequisite shuld be adhered t befre attempting t release units t SVN 1) SVN Repsitry URL shuld be prvided in the Preferences Nde f Functin Id against field SVN Repsitry URL. Path till the mdule name has t be given. Example:- Fr an FT mdule RADXML path can be given as Z:\FCUBS_11.3.0\Sft\MAIN\FT 14

15 Fig 5.2.1: Preferences Screen highlighting SVN Repsitry url The fllwing files can be released t SVN thrugh Develpment Wrkbench 1) RADXML 2) Main Package(spc and sql) Frm the release screen check n the units t be released t SVN and click OK.SVN credentials has t be prvided in the screen. SFR number has t be prvided if it is nt a simple check in. If checked in successfully, status will be displayed as released. 15

16 August 2013 Oracle Crpratin Wrld Headquarters 500 Oracle Parkway Redwd Shres, CA U.S.A. Wrldwide Inquiries: Phne: Fax: financial_services/ Cpyright Oracle Financial Services Sftware Limited. All rights reserved. N part f this wrk may be reprduced, stred in a retrieval system, adpted r transmitted in any frm r by any means, electrnic, mechanical, phtgraphic, graphic, ptic recrding r therwise, translated in any language r cmputer language, withut the prir written permissin f Oracle Financial Services Sftware Limited. Due care has been taken t make this dcument Develpment Wrkbench-Screen Develpment II and accmpanying sftware package as accurate as pssible. Hwever, Oracle Financial Services Sftware Limited makes n representatin r warranties with respect t the cntents heref and shall nt be respnsible fr any lss r damage caused t the user by the direct r indirect use f this Develpment Wrkbench-Screen Develpment II and the accmpanying Sftware System. Furthermre, Oracle Financial Services Sftware Limited reserves the right t alter, mdify r therwise change in any manner the cntent heref, withut bligatin f Oracle Financial Services Sftware Limited t ntify any persn f such revisin r changes. All cmpany and prduct names are trademarks f the respective cmpanies with which they are assciated. 16

Development Workbench- Screen Development II Oracle FLEXCUBE Universal Banking Release

Development Workbench- Screen Development II Oracle FLEXCUBE Universal Banking Release Develpment Wrkbench- Screen Develpment II Oracle FLEXCUBE Universal Banking Release 12.2.0.0.0 1 Cntents 1 Preface... 3 1.1 Audience... 3 1.2 Related Dcuments... 3 2 Intrductin... 4 3 Generated Files...

More information

Oracle Hospitality OPERA Exchange Interface Inventory XML Specifications. October 2017

Oracle Hospitality OPERA Exchange Interface Inventory XML Specifications. October 2017 Oracle Hspitality OPERA Exchange Interface Inventry XML Specificatins Octber 2017 Cpyright 2009, 2017, Oracle and/r its affiliates. All rights reserved. This sftware and related dcumentatin are prvided

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

The Reporting Tool. An Overview of HHAeXchange s Reporting Tool

The Reporting Tool. An Overview of HHAeXchange s Reporting Tool HHAeXchange The Reprting Tl An Overview f HHAeXchange s Reprting Tl Cpyright 2017 Hmecare Sftware Slutins, LLC One Curt Square 44th Flr Lng Island City, NY 11101 Phne: (718) 407-4633 Fax: (718) 679-9273

More information

Aras Innovator Viewer Add-Ons

Aras Innovator Viewer Add-Ons Aras Innvatr Viewer Add-Ons Aras Innvatr 9.2 Dcument #: 9.2.02232009 Last Mdified: 4/1/2010 Aras Crpratin ARAS CORPORATION Cpyright 2010 All rights reserved Aras Crpratin 300 Brickstne Square Suite 904

More information

Maximo Reporting: Maximo-Cognos Metadata

Maximo Reporting: Maximo-Cognos Metadata Maxim Reprting: Maxim-Cgns Metadata Overview...2 Maxim Metadata...2 Reprt Object Structures...2 Maxim Metadata Mdel...4 Metadata Publishing Prcess...5 General Architecture...5 Metadata Publishing Prcess

More information

Single File Upload Guide

Single File Upload Guide Single File Uplad Guide August 15, 2018 Versin 9.6.134.78 Single File Uplad Guide 1 Fr the mst recent versin f this dcument, visit ur dcumentatin website. Single File Uplad Guide 2 Table f Cntents 1 Single

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

SOLA and Lifecycle Manager Integration Guide

SOLA and Lifecycle Manager Integration Guide SOLA and Lifecycle Manager Integratin Guide SOLA and Lifecycle Manager Integratin Guide Versin: 7.0 July, 2015 Cpyright Cpyright 2015 Akana, Inc. All rights reserved. Trademarks All prduct and cmpany names

More information

AvePoint Accessibility Accelerator 2.0

AvePoint Accessibility Accelerator 2.0 AvePint Accessibility Acceleratr 2.0 User Guide Revisin B Issued July 2013 AvePint Accessibility Acceleratr 1 Table f Cntents Abut AvePint Accessibility Acceleratr... 3 Submitting Dcumentatin Feedback

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

Introduction to Mindjet on-premise

Introduction to Mindjet on-premise Intrductin t Mindjet n-premise Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 www.mindjet.cm 2012 Mindjet. All Rights Reserved

More information

Oracle Universal Records Management Oracle Universal Records Manager Adapter for Documentum Installation Guide

Oracle Universal Records Management Oracle Universal Records Manager Adapter for Documentum Installation Guide Oracle Universal Recrds Management Oracle Universal Recrds Manager Adapter fr Dcumentum Installatin Guide December 2009 Universal Recrds Manager Adapter fr Dcumentum Installatin Guide, Cpyright 2009, Oracle.

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

Product Installation Manual Oracle Financial Services Data Warehouse Version 7.3 April 2012

Product Installation Manual Oracle Financial Services Data Warehouse Version 7.3 April 2012 Prduct Installatin Manual Oracle Financial Services Data Warehuse Versin 7.3 April 2012 Dcument Cntrl Authr: Niraj Ranjan Biswal Grup: OFSAA Created n : 25-Mar-12 Revisin N : 1.0 Updated by : Niraj Ranjan

More information

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) ACE Data Surce Prepared fr: ACE Data Surce - Versin 2.0.0 Date: Octber 2015 Dcument Versin: 2.0.0 Abstract The ACE Data Surce (ACE-DS) is

More information

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM AvePint Pipeline Pr 2.0 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin E Issued April 2014 1 Table f Cntents Abut AvePint Pipeline Pr... 3 Required Permissins... 4 Overview f Installatin

More information

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform Supprt Guide Yur New Service Request Prcess: Technical Supprt Reference Guide fr Cisc Custmer Jurney Platfrm September 2018 2018 Cisc and/r its affiliates. All rights reserved. This dcument is Cisc Public

More information

The Login Page Designer

The Login Page Designer The Lgin Page Designer A new Lgin Page tab is nw available when yu g t Site Cnfiguratin. The purpse f the Admin Lgin Page is t give fundatin staff the pprtunity t build a custm, yet simple, layut fr their

More information

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

More information

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment Technical Paper Installing and Cnfiguring SAS Envirnment Manager in a SAS Grid Envirnment Last Mdified: Octber 2016 Release Infrmatin Cntent Versin: Octber 2016. Trademarks and Patents SAS Institute Inc.,

More information

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017 LiveEngage and Micrsft Dynamics Integratin Guide Dcument Versin: 1.0 September 2017 Cntents Intrductin... 3 Step 1: Sign Up... 3 CRM Widget Signing Up... 3 Step 2: Cnfiguring the CRM Widget... 4 Accessing

More information

Demand Forecasting. For. Microsoft Dynamics 365 for Operations. Technical Guide. Release 7.1. December 2017

Demand Forecasting. For. Microsoft Dynamics 365 for Operations. Technical Guide. Release 7.1. December 2017 Demand Frecasting Fr Micrsft Dynamics 365 fr Operatins Technical Guide Release 7.1 December 2017 2017 Farsight Slutins Limited All Rights Reserved. Prtins cpyright Business Frecast Systems, Inc. This dcument

More information

Enterprise Chat and Developer s Guide to Web Service APIs for Chat, Release 11.6(1)

Enterprise Chat and  Developer s Guide to Web Service APIs for Chat, Release 11.6(1) Enterprise Chat and Email Develper s Guide t Web Service APIs fr Chat, Release 11.6(1) Fr Unified Cntact Center Enterprise August 2017 Americas Headquarters Cisc Systems, Inc. 170 West Tasman Drive San

More information

Dashboard Extension for Enterprise Architect

Dashboard Extension for Enterprise Architect Dashbard Extensin fr Enterprise Architect Dashbard Extensin fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins f the free versin f the extensin... 3 Example Dashbard

More information

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment with a Shared Configuration Directory

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment with a Shared Configuration Directory Technical Paper Installing and Cnfiguring Envirnment Manager in a Grid Envirnment with a Shared Cnfiguratin Directry Last Mdified: January 2018 Release Infrmatin Cntent Versin: January 2018. Trademarks

More information

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 Prepared by: March Haber, march@il.ibm.cm Last Updated: January, 2012 IBM MetaData Wrkbench Enablement Series Table f Cntents: Table f

More information

Aras Innovator 11. Client Settings for Chrome on Windows

Aras Innovator 11. Client Settings for Chrome on Windows Dcument #: 11.0.02016022601 Last Mdified: 1/3/2017 Cpyright Infrmatin Cpyright 2017 Aras Crpratin. All Rights Reserved. Aras Crpratin 300 Brickstne Square Suite 700 Andver, MA 01810 Phne: 978-691-8900

More information

Knowledgeware Rule-based Clash

Knowledgeware Rule-based Clash Knwledgeware Rule-based Clash Clash rules written using knwledgeware capabilities can be used in a standalne clash prcess clash prcess, ensuring clash analyses take crprate practices int accunt. Multiple

More information

OO Shell for Authoring (OOSHA) User Guide

OO Shell for Authoring (OOSHA) User Guide Operatins Orchestratin Sftware Versin: 10.70 Windws and Linux Operating Systems OO Shell fr Authring (OOSHA) User Guide Dcument Release Date: Nvember 2016 Sftware Release Date: Nvember 2016 Legal Ntices

More information

TaskCentre v4.5 Save As File Tool White Paper

TaskCentre v4.5 Save As File Tool White Paper TaskCentre v4.5 Save As File Tl White Paper Dcument Number: PD500-03-20-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 TECHNICAL SUMMARY

More information

TaskCentre v4.5 XML to Recordset Tool White Paper

TaskCentre v4.5 XML to Recordset Tool White Paper TaskCentre v4.5 XML t Recrdset Tl White Paper Dcument Number: PD500-03-15-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 GLOBAL CONFIGURATION 2 Schema

More information

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1 Adding Cntent MyUni... 2 Cntent Areas... 2 Curse Design... 2 Sample Curse Design... 2 Build cntent by creating a flder... 3 Build cntent by creating an item... 4 Cpy r mve cntent in MyUni... 5 Manage files

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

AvePoint Timeline Enterprise for Microsoft Dynamics CRM

AvePoint Timeline Enterprise for Microsoft Dynamics CRM AvePint Timeline Enterprise 1.0.2 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin B Issued Nvember 2013 Timeline Enterprise fr Micrsft Dynamics CRM Install and Cnfig 1 Table f Cntents

More information

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command Using CppSim t Generate Neural Netwrk Mdules in Simulink using the simulink_neural_net_gen cmmand Michael H. Perrtt http://www.cppsim.cm June 24, 2008 Cpyright 2008 by Michael H. Perrtt All rights reserved.

More information

MySabre API RELEASE NOTES MYSABRE API VERSION 2.1 (PART OF MYSABRE RELEASE 7.1) DECEMBER 02, 2006 PRODUCTION

MySabre API RELEASE NOTES MYSABRE API VERSION 2.1 (PART OF MYSABRE RELEASE 7.1) DECEMBER 02, 2006 PRODUCTION MySabre API RELEASE NOTES MYSABRE API VERSION 2.1 (PART OF MYSABRE RELEASE 7.1) DECEMBER 02, 2006 PRODUCTION These release ntes pertain t the Prductin release fr MySabre Release 7.1 cntaining MySabre API

More information

EDS-Site Entry User Manual

EDS-Site Entry User Manual EDS- Revisin Histry Versin Date Authr/Organizatin Descriptin 1.0 2011-06-08 Jn Pelster First Draft 2012 Gvernment f Alberta Page 2 f 14 Disclaimer In this disclaimer prvisin: Crwn means Her Majesty the

More information

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2 I - EDcman Installatin...2 1 - EDcman cmpnent...2 2 - EDcman Categries mdule...2 3 - EDcman Dcuments Mdule...2 4 - EDcman Search Plugin...3 5 - SH404 SEF plugin...3 II - Using EDcman extensin...3 I - EDcman

More information

OATS Registration and User Entitlement Guide

OATS Registration and User Entitlement Guide OATS Registratin and User Entitlement Guide The OATS Registratin and Entitlement Guide prvides the fllwing infrmatin: OATS Registratin The prcess and dcumentatin required fr a firm r Service Prvider t

More information

Admin Report Kit for Exchange Server

Admin Report Kit for Exchange Server Admin Reprt Kit fr Exchange Server Reprting tl fr Micrsft Exchange Server Prduct Overview Admin Reprt Kit fr Exchange Server (ARKES) is an Exchange Server Management and Reprting slutin that addresses

More information

Oracle Financial Services Data Foundation Applications Pack

Oracle Financial Services Data Foundation Applications Pack Oracle Financial Services Data Fundatin Applicatins Pack Versin 8.0.5.0.0 Release Ntes DOCUMENT CONTROL Versin Number Revisin Date Changes Dne 01 Created: September 2017 Captured Sftware envirnment details,

More information

HPE LoadRunner Best Practices Series. LoadRunner Upgrade Best Practices

HPE LoadRunner Best Practices Series. LoadRunner Upgrade Best Practices HPE LadRunner Best Practices Series LadRunner 12.50 Upgrade Best Practices Dcument publicatin date: Nvember 2015 Cntents 1. Intrductin... 3 Overview... 3 Audience... 3 2. Preparatin... 3 Backup assets...

More information

BMC Remedyforce Integration with Bomgar Remote Support

BMC Remedyforce Integration with Bomgar Remote Support BMC Remedyfrce Integratin with Bmgar Remte Supprt 2017 Bmgar Crpratin. All rights reserved wrldwide. BOMGAR and the BOMGAR lg are trademarks f Bmgar Crpratin; ther trademarks shwn are the prperty f their

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide Secure File Transfer Prtcl (SFTP) Interface fr Data Intake User Guide Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 SFTP Access t FINRA... 2 SFTP

More information

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu BANNER BASICS What is Banner? Definitin Prduct Mdules Self-Service-Fish R Net Lg int Banner Banner Envirnment The Main Windw My Banner Pages What is it? What frm d yu use? Steps t create a persnal menu

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

Extended Traceability Report for Enterprise Architect

Extended Traceability Report for Enterprise Architect Extended Traceability Reprt User Guide Extended Traceability Reprt fr Enterprise Architect Extended Traceability Reprt fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins

More information

Release Notes Version: - v18.13 For ClickSoftware StreetSmart September 22, 2018

Release Notes Version: - v18.13 For ClickSoftware StreetSmart September 22, 2018 Release Ntes Versin: - v18.13 Fr ClickSftware StreetSmart September 22, 2018 Cpyright Ntice Cpyright 2018 ClickSftware Technlgies Ltd. All rights reserved. N part f this publicatin may be cpied withut

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

Kaltura MediaSpace User Manual. Version: 4.0

Kaltura MediaSpace User Manual. Version: 4.0 Kaltura MediaSpace User Manual Versin: 4.0 Kaltura Business Headquarters 200 Park Avenue Suth, New Yrk, NY. 10003, USA Tel.: +1 800 871 5224 Cpyright 2012 Kaltura Inc. All Rights Reserved. Designated trademarks

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide Xilinx Answer 65444 Xilinx PCI Express DMA Drivers and Sftware Guide Imprtant Nte: This dwnladable PDF f an Answer Recrd is prvided t enhance its usability and readability. It is imprtant t nte that Answer

More information

Aras Innovator 11. Client Settings for Chrome on Windows

Aras Innovator 11. Client Settings for Chrome on Windows Dcument #: 11.0.02016022601 Last Mdified: 1/11/2018 Cpyright Infrmatin Cpyright 2018 Aras Crpratin. All Rights Reserved. Aras Crpratin 300 Brickstne Square Suite 700 Andver, MA 01810 Phne: 978-691-8900

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

Aras Innovator 8.1 Document #: Last Modified: 4/4/2007. Copyright 2007 Aras Corporation All Rights Reserved.

Aras Innovator 8.1 Document #: Last Modified: 4/4/2007. Copyright 2007 Aras Corporation All Rights Reserved. Aras Innvatr Service Usage Instructins Aras Innvatr 8.1 Dcument #: 8.1.09202006 Last Mdified: 4/4/2007 Aras Crpratin ARAS CORPORATION Cpyright 2007 All rights reserved Aras Crpratin Heritage Place 439

More information

HMIS Data Reset & Modification Guideline

HMIS Data Reset & Modification Guideline HMIS Data Reset & Mdificatin Guideline Fr Mnthly Data Table f Cntents 1. INTRODUCTION... 3 2. DATA RESET GUIDELINES FOR MIS MONTHLY DATA... 4 2.1. Mdes f Data... 4 2.2. Resetting f Data... 5 2.3. Types

More information

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins)

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins) Intrductin This reference guide is aimed at managers wh will be respnsible fr managing users within RiskMan where RiskMan is nt cnfigured t use netwrk lgins. This guide is used in cnjunctin with the respective

More information

Graduate Application Review Process Documentation

Graduate Application Review Process Documentation Graduate Applicatin Review Prcess Cntents System Cnfiguratin... 1 Cgns... 1 Banner Dcument Management (ApplicatinXtender)... 2 Banner Wrkflw... 4 Navigatin... 5 Cgns... 5 IBM Cgns Sftware Welcme Page...

More information

MySabre API RELEASE NOTES MYSABRE API VERSION 2.0 (PART OF MYSABRE RELEASE 7.0) OCTOBER 28, 2006 PRODUCTION

MySabre API RELEASE NOTES MYSABRE API VERSION 2.0 (PART OF MYSABRE RELEASE 7.0) OCTOBER 28, 2006 PRODUCTION MySabre API RELEASE NOTES MYSABRE API VERSION 2.0 (PART OF MYSABRE RELEASE 7.0) OCTOBER 28, 2006 PRODUCTION These release ntes pertain t the Prductin release fr MySabre Release 7.0 cntaining MySabre API

More information

Kaltura MediaSpace User Manual. Version: 4.6

Kaltura MediaSpace User Manual. Version: 4.6 Kaltura MediaSpace User Manual Versin: 4.6 Kaltura Business Headquarters 5 Unin Square West, Suite 602, New Yrk, NY, 10003, USA Tel.: +1 800 871 5224 Cpyright 2013 Kaltura Inc. All Rights Reserved. Designated

More information

EBSCOhost User Guide Print/ /Save. Print, , Save, Notetaking, Export, and Cite Your Search Results. support.ebsco.com

EBSCOhost User Guide Print/ /Save. Print,  , Save, Notetaking, Export, and Cite Your Search Results. support.ebsco.com EBSCOhst User Guide Print/E-Mail/Save Print, E-mail, Save, Ntetaking, Exprt, and Cite Yur Search Results supprt.ebsc.cm Table f Cntents Inside this User Guide... 3 Printing Yur Results... 3 E-mailing Yur

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

More information

Quick Guide on implementing SQL Manage for SAP Business One

Quick Guide on implementing SQL Manage for SAP Business One Quick Guide n implementing SQL Manage fr SAP Business One The purpse f this dcument is t guide yu thrugh the quick prcess f implementing SQL Manage fr SAP B1 SQL Server databases. SQL Manage is a ttal

More information

Overview of Data Furnisher Batch Processing

Overview of Data Furnisher Batch Processing Overview f Data Furnisher Batch Prcessing Nvember 2018 Page 1 f 9 Table f Cntents 1. Purpse... 3 2. Overview... 3 3. Batch Interface Implementatin Variatins... 4 4. Batch Interface Implementatin Stages...

More information

Getting Started with the SDAccel Environment on Nimbix Cloud

Getting Started with the SDAccel Environment on Nimbix Cloud Getting Started with the SDAccel Envirnment n Nimbix Clud Revisin Histry The fllwing table shws the revisin histry fr this dcument. Date Versin Changes 09/17/2018 201809 Updated figures thrughut Updated

More information

WELMEC Guide on evaluation of Purely Digital Parts

WELMEC Guide on evaluation of Purely Digital Parts WELMEC 10.10 2016 Guide n evaluatin f Purely Digital Parts WELMEC is a cperatin between the legal metrlgy authrities f the Member States f the Eurpean Unin and EFTA. This dcument is ne f a number f Guides

More information

Oracle CPQ Cloud Release 1. New Feature Summary

Oracle CPQ Cloud Release 1. New Feature Summary Oracle CPQ Clud 2017 Release 1 New Feature Summary April 2017 1 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE CPQ CLOUD... 4 MODERN SELLING EXPERIENCE... 4 Deal Negtiatin... 4 REST API Services... 4 ENTERPRISE

More information

BMC Remedyforce Integration with Remote Support

BMC Remedyforce Integration with Remote Support BMC Remedyfrce Integratin with Remte Supprt 2003-2018 BeyndTrust, Inc. All Rights Reserved. BEYONDTRUST, its lg, and JUMP are trademarks f BeyndTrust, Inc. Other trademarks are the prperty f their respective

More information

Kaltura MediaSpace User Manual. Version: 3.0

Kaltura MediaSpace User Manual. Version: 3.0 Kaltura MediaSpace User Manual Versin: 3.0 Kaltura Business Headquarters 200 Park Avenue Suth, New Yrk, NY. 10003, USA Tel.: +1 800 871 5224 Cpyright 2012 Kaltura Inc. All Rights Reserved. Designated trademarks

More information

Gemini Intercom Quick Start Guide

Gemini Intercom Quick Start Guide Gemini Intercm Quick Start Guide 2 Quick Start Guide Cntents Cntents... 1 Overview... 3 First Step unpack and inspect... 3 Netwrk plan and IP addresses... 4 Management PC... 5 Install Sftware... 6 Cnfigure

More information

Laboratory #13: Trigger

Laboratory #13: Trigger Schl f Infrmatin and Cmputer Technlgy Sirindhrn Internatinal Institute f Technlgy Thammasat University ITS351 Database Prgramming Labratry Labratry #13: Trigger Objective: - T learn build in trigger in

More information

Compliance Guardian 4. User Guide

Compliance Guardian 4. User Guide Cmpliance Guardian 4 User Guide Issued September 2015 Table f Cntents What's New in this Guide... 3 Abut Cmpliance Guardian... 4 Cmplementary Prducts... 5 Submitting Dcumentatin Feedback t AvePint... 6

More information

HP Server Virtualization Solution Planning & Design

HP Server Virtualization Solution Planning & Design Cnsulting & Integratin Infrastructure Services HP Server Virtualizatin Slutin Planning & Design Service descriptin Hewlett-Packard Cnsulting & Integratin Infrastructure Cnsulting Packaged Services (HP

More information

EView/400i Management Pack for Systems Center Operations Manager (SCOM)

EView/400i Management Pack for Systems Center Operations Manager (SCOM) EView/400i Management Pack fr Systems Center Operatins Manager (SCOM) Cncepts Guide Versin 7.0 July 2015 1 Legal Ntices Warranty EView Technlgy makes n warranty f any kind with regard t this manual, including,

More information

TMS myclouddata SDK DEVELOPERS GUIDE

TMS myclouddata SDK DEVELOPERS GUIDE TMS mycluddata SDK TMS mycluddata SDK February 2017 Cpyright 2017 by tmssftware.cm bvba Web: http://www.tmssftware.cm Email: inf@tmssftware.cm 1 TMS mycluddata SDK Index Availability... 3 Online references...

More information

Level 2 Development Training

Level 2 Development Training Level 2 Develpment Training Level 2 Develpment Training Level 2 Develpment Training Vide Capture RSS 4000 Level 2 Develpment Training Vide Capture Cntents 1 Intrductin... 3 Intrductin... 3 Available Resurces...

More information

Kaltura Video Navigator for ECM Installation and Deployment Guide. Version: 2.0

Kaltura Video Navigator for ECM Installation and Deployment Guide. Version: 2.0 Kaltura Vide Navigatr fr ECM Installatin and Deplyment Guide Versin: 2.0 Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright 2015 Kaltura Inc.

More information

DocAve 6 Deployment Manager

DocAve 6 Deployment Manager DcAve 6 Deplyment Manager User Guide Service Pack 3 Revisin I Issued August 2013 1 Table f Cntents Abut Deplyment Manager... 5 Cmplementary Prducts... 5 Submitting Dcumentatin Feedback t AvePint... 5 Befre

More information

InformationNOW Letters

InformationNOW Letters InfrmatinNOW Letters Abut this Guide This Quick Reference Guide prvides an verview f letters in InfrmatinNOW. There are three types f letters: Student: May be used t create varius letters, frms, custmized

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

Online Banking for Business USER GUIDE

Online Banking for Business USER GUIDE Online Banking fr Business estatements USER GUIDE Cntents Cntents... 1 Online Banking fr Business Getting Started... 2 Technical Requirements... 2 Supprted brwsers... 2 Minimum system requirements... 2

More information

Announcing Veco AuditMate from Eurolink Technology Ltd

Announcing Veco AuditMate from Eurolink Technology Ltd Vec AuditMate Annuncing Vec AuditMate frm Eurlink Technlgy Ltd Recrd any data changes t any SQL Server database frm any applicatin Database audit trails (recrding changes t data) are ften a requirement

More information

Extended Vendors lets you: Maintain vendors across multiple Sage 300 companies using the Copy Vendors functionality. o

Extended Vendors lets you: Maintain vendors across multiple Sage 300 companies using the Copy Vendors functionality. o Extended Vendrs Extended Vendrs is an enhanced replacement fr the Sage Vendrs frm. It prvides yu with mre infrmatin while entering a PO and fast access t additinal PO, Vendr, and Item infrmatin. Extended

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9211 Upgrader User Guide (Mac) Rev 1.2 (6-Jul-17) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9211 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

Creating an Automation Framework to make Record and Play Automation practical for Test Use Cases

Creating an Automation Framework to make Record and Play Automation practical for Test Use Cases Creating an Autmatin Framewrk t make Recrd and Play Autmatin practical fr Test Use Cases Cpyright Ntice Gemetric Limited. All rights reserved. N part f this dcument (whether in hardcpy r electrnic frm)

More information

Procedures for Developing Online Training

Procedures for Developing Online Training Prcedures fr Develping Online Training Fllwing are prcedures fr develping nline training mdules t be psted n Online@UT (Blackbard Learn). These steps were develped thrugh a prcess and will cntinue t be

More information

New Tenancy Contact - User manual

New Tenancy Contact - User manual New Tenancy Cntact - User manual Table f Cntents Abut Service... 3 Service requirements... 3 Required Dcuments... 3 Service fees... 3 Hw t apply fr this service... 4 Validatin Messages... 28 New Tenancy

More information

SpiraPlan & SpiraTeam Version Control Integration User Guide Inflectra Corporation

SpiraPlan & SpiraTeam Version Control Integration User Guide Inflectra Corporation SpiraPlan & SpiraTeam Versin Cntrl Integratin User Guide Inflectra Crpratin Date: June 4th, 2017 Cntents 1. Intrductin... 1 2. Integrating with Subversin... 2 3. Integrating with Perfrce... 7 4. Integrating

More information

Avigilon Control Center Server User Guide. Version 6.4

Avigilon Control Center Server User Guide. Version 6.4 Avigiln Cntrl Center Server User Guide Versin 6.4 2006-2017, Avigiln Crpratin. All rights reserved. AVIGILON, the AVIGILON lg, AVIGILON CONTROL CENTER, ACC, and TRUSTED SECURITY SOLUTIONS.AVIGILON, the

More information

HP Universal CMDB. Software Version: Backup and Recovery Guide

HP Universal CMDB. Software Version: Backup and Recovery Guide HP Universal CMDB Sftware Versin: 10.21 Backup and Recvery Guide Dcument Release Date: July 2015 Sftware Release Date: July 2015 Backup and Recvery Guide Legal Ntices Warranty The nly warranties fr HP

More information

How to Guide. DocAve Extender for MOSS 2007 and SPS Installing DocAve Extender and Configuring a Basic SharePoint to Cloud Extension

How to Guide. DocAve Extender for MOSS 2007 and SPS Installing DocAve Extender and Configuring a Basic SharePoint to Cloud Extension Hw t Guide DcAve Extender fr MOSS 2007 and SPS 2010 Installing DcAve Extender and Cnfiguring a Basic SharePint t Clud Extensin This dcument is intended fr anyne wishing t familiarize themselves with the

More information

SAP Intelligent Notification 365, Service. On-boarding process for SAP Hybris Marketing Cloud / SAP Hybris Marketing customers

SAP Intelligent Notification 365,  Service. On-boarding process for SAP Hybris Marketing Cloud / SAP Hybris Marketing customers SAP Intelligent Ntificatin 365, Email Service On-barding prcess fr SAP Hybris Marketing Clud / SAP Hybris Marketing custmers TABLE OF CONTENTS 1. DOCUMENT HISTORY... 3 2. INTRODUCTION... 4 3. HIGH LEVEL

More information

Update: Users are updated when their information changes (examples: Job Title or Department). o

Update: Users are updated when their information changes (examples: Job Title or Department). o Learn Basic User Integratin Batch File Prcessing The Learn Basic User Integratin is designed t manage the rganizatinal changes cmpanies are challenged with n a daily basis. Withut a basic type f integratin,

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

etrac 6.4 Release Notes October 23, 2015

etrac 6.4 Release Notes October 23, 2015 etrac 6.4 Release Ntes Octber 23, 2015 General System Enhancements: Cmpliance: MARS: Added MARS rules t supprt Freddie Mac Appraisal Quality Message FRE1229. This message is nw supprted in the fllwing

More information

SAS Hot Fix Analysis, Download and Deployment Tool

SAS Hot Fix Analysis, Download and Deployment Tool SAS Ht Fix Analysis, Dwnlad and Deplyment Tl SASHFADD Versin 2.2.1 Usage Guide What's New in SASHFADD 2.2.1? Table f Cntents Intrductin... 1 System Requirements... 2 Imprtant infrmatin regarding tl usage...

More information