Introduction to Programming for Performance in Microsoft Dynamics WHITEPAPER

Size: px
Start display at page:

Download "Introduction to Programming for Performance in Microsoft Dynamics WHITEPAPER"

Transcription

1 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics WHITEPAPER

2 Junctin Slutins dcumentatin 2012 All material cntained in this dcumentatin is prprietary and cnfidential t Junctin Slutins, Inc and subject t the nndisclsure prvisins f the applicable Junctin Slutins, Inc agreement. This material is fr infrmatinal purpses nly. Junctin Slutins, Inc is nt liable fr any damages in cnnectin with the use f this infrmatin. N part f this dcumentatin may be reprduced, stred in a retrieval system, r transmitted in any frm r by any means, including, but nt limited t, electrnic, graphic, mechanical, phtcpying, recrding, r therwise withut the prir written permissin f Junctin Slutins, Inc. This dcumentatin is subject t change withut ntice, and Junctin Slutins, Inc des nt warrant that the material cntained in this dcumentatin is free f errrs. Any errrs fund in this dcument shuld be reprted t Junctin Slutins, Inc in writing. Prprietary and Cnfidential Page 2 f Subject t Change

3 INTRODUCTION...4 RESOURCES...4 AREAS THAT AFFECT PERFORMANCE...4 SYSTEM OF RECORD...5 INDEXES IN MICROSOFT DYNAMICS AX...6 DATABASE MAINTENANCE...7 DO S AND DON TS...7 TOOLS FOR UNDERSTANDING PERFORMANCE Prprietary and Cnfidential Page 3 f Subject t Change

4 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Intrductin This is the first article in a series f articles and webinars cvering perfrmance in Micrsft Dynamics AX. The perfrmance f an enterprise applicatin is a key factr in hw users perceive that applicatin. There are many things that can be dne as a SQL administratr, systems administratr, r prgrammer t imprve the perfrmance f mdificatins in Micrsft Dynamics AX. Perfrmance shuld be cnsidered when designing, develping, and maintaining mdificatins in Micrsft Dynamics AX. Acceptable perfrmance levels shuld be set fr critical peratins, and shuld be maintained with an understanding f the cst f that maintenance. If users are cmplaining abut slw perfrmance cllect infrmatin abut perfrmance issues including reprductin steps, number f recrds, acceptable excitatin times, current executin times, and number f times the prcess is perfrmed. Resurces There are many resurces available t help understand perfrmance in Micrsft Dynamics AX including: Dynamics AX Perfrmance Team Blg blg frm the Micrsft team. MSDN Best Practices: Perfrmance Optimizatins - page n ptimizing Dynamics AX fr perfrmance Areas that affect perfrmance Perfrmance issues can riginate frm many places including: disk, ram, netwrk, memry, settings, prgramming, SQL, and the cmplexity f the prcess in questin. A system will generally perfrm as well as its weakest cmpnent, and it is imprtant t understand hw these cncepts wrk tgether when diagnsing a perfrmance issues. The fllwing list gives a brief descriptin f these cmpnents and hw they affect perfrmance. Disk Disks prvide the lng term strage medium fr a system, similar t a file cabinet hlding all f the paper recrds fr a cmpany. With Micrsft Dynamics AX, the area where disks affect perfrmance the mst is n the database server hlding the data files. Advanced technlgies are used t increase the perfrmance f these disks including: Strage Area Netwrks (SAN), Redundant Prprietary and Cnfidential Page 4 f Subject t Change

5 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Array f Inexpensive Disks (RAID), high speed hard drives, Slid State Drives (SSD), and mre. RAM Randm Access Memry is the shrt term wrkspace fr a system, similar t having files pen n yur desk. RAM becmes a perfrmance issue when there is nt enugh f it t adequately serve the system. Fr mst servers suffering perfrmance issues, a simple check t see if there is sme ram available is enugh t identify lack f ram as a perfrmance bttleneck. This is nt the case fr SQL Server. By default SQL Server uses all f the available ram in the system t stre data. Whenever a page f data is needed, SQL Server first checks t see if the requested page is in ram. If it is nt in ram, it will be retrieved frm disk int ram and used there. High disk utilizatin and lw buffer cache hit ratis are a cuple f examples useful in determining if there is enugh ram t adequately serve SQL Server. Netwrk All f the servers in a Micrsft Dynamics AX envirnment shuld be in the same lcal area netwrk (LAN) and ideally be n the same gigabit switch. The Micrsft Dynamics AX client shuld perfrm well when it is placed n the same LAN as the Micrsft Dynamics AX servers. If the client is in a remte lcatin (in a Wide Area Netwrk (WAN)) a technlgy similar t Terminal Server shuld be used t access the client. Settings There are many settings that can affect perfrmance including: Maximum degree f parallelism, trace flags, SQL trace, and debugging. Prgramming Writing cde is like writing in English. There are many ways t cmmunicate the same cncept, and sme f them are better r mre efficient than thers. SQL When researching perfrmance issues many times the cre f the issue is an inefficient SQL statement. A pr perfrming SQL statement can be tuned by rewriting the cde and adding indexes. Cmplex prcesses Cmplex prcesses take mre effrt t prcess than simple nes. When creating a mdificatin it is imprtant t weigh the cst f this mdificatin. When analyzing the cst, be sure t include develpment time, test time, cde merge time in upgrade, supprtability, and the perfrmance cst f a mdificatin. System f Recrd The Applicatin Object Tree (AOT) in Micrsft Dynamics AX is the wner f the database schema fr Micrsft Dynamics AX nt SQL Server. Any changes t tables in the database schema need t riginate in the AOT. The synchrnizatin prcess will Prprietary and Cnfidential Page 5 f Subject t Change

6 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics then mve these changes t SQL Server. If changes t a table such as adding an index are perfrmed in SQL Server directly, the synchrnizatin prcess will fail the next time it is run. Indexes in Micrsft Dynamics AX An index makes it easier t find specific data frm a table. There are three main types f indexes used by Micrsft Dynamics AX: primary, clustered, and nn-clustered. Primary Index: A primary index prvides a unique key t each recrd in a table. This index is the ne used fr recrd caching in Micrsft Dynamics AX. Clustered Index: A clustered index rganizes the data fr a table in the rder f the index. A phne bk is a gd example f a clustered index. The data in a phne bk is first srted by last name and then by first name. Fr each last and first name listed in the phne bk there is a crrespnding phne number and address. The data fr a table can nly be rganized ne way and therefre there can nly be ne clustered index. Nn-Clustered Index: A nn-clustered index prvides a way t quickly reference data fund in the clustered index r heap (table withut a clustered index) using a specified set f clumns. An example f a nn-clustered index is the index at the back f a text bk. Yu can lk up the tpic yu want, and the index prvides a list f page numbers which have infrmatin n that tpic. Fr example, yu culd add a phne number index t a phne bk s yu culd mre quickly find an address by searching fr a phne number. With this index yu culd lk up a phne number. This wuld prvide a last name and first name (the key clumns fr the clustered index). Next, yu can use these t lk up the address. This prcess invlves a secnd lk up, but is much faster than lking at every phne number in the phne bk and cmparing with the ne yu are lking fr, which is the alternative and knwn as a table scan. The rder f the clumns in an index is very imprtant. Fr efficiency, an index shuld be rganized frm the mst granular clumn (highest number f unique values) t the least granular clumn with each clumn having data in a where clause. Using the phne bk example again, it is easy t find all f the peple in Denver with the last name Dragn, but wuld be incredibly difficult t find thse with the first name Chris, because the phne bk is rganized by last name and then first name. Als, if the phne bk were rganized by first name and then last name, it wuld take less time t find Chris but mre time t find the name Chris Dragn, because there are mre peple in the phne bk with the first name Chris than there are with the last name f Dragn. Prprietary and Cnfidential Page 6 f Subject t Change

7 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Imprtant: By default Micrsft Dynamics AX adds DataAreaId as the first clumn in an index, and adds DataAreaId t each query frm Dynamics AX. Als, if a query is being made directly against the database make sure DataAreaId is included in the where clause fr each table. If DataAreaId is nt included in the where clause f a query made directly against the database, indexes will nt be used, table scans will be perfrmed, and perfrmance will suffer. The fllwing index best practices shuld be fllwed: Always maintain indexes in the AOT Always specify a clustered index Always specify a primary index A RecId index is a gd candidate fr the primary index if the clustered index is nt set t unique Limit the number f clumns in an index, especially if it is a clustered r primary index Indexes n integers, r enums are better than thse n strings, and indexes n small strings are better than thse n large strings D nt create duplicate indexes D nt create left key subset indexes. If ne index is cntained in the same rder as the left (first clumns) in anther index is it nt useful. Fr example if there is an index n the phne bk n last name, and anther ne n last name then first name. The ne cntaining nly last name des nthing. Add an index if the speed gained by adding the index is greater than the cst f updating that index. The speed gained by adding an index needs t include bth the perfrmance imprvement f the query and the number f times it is executed Nte: NOTE: When a recrd is inserted r updated all indexes related t that table als need t be updated Database Maintenance As data is added and remved frm a table the indexes assciated with that table becme fragmented and therefre less efficient. A peridic prcess shuld be added t rebuild and rerganize indexes when they reach fragmentatin threshlds. D s and Dn ts The fllwing is a list f prgramming cncepts that shuld be understd t effectively develp fast mdificatins: Prprietary and Cnfidential Page 7 f Subject t Change

8 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Find the number f a type f recrd Descriptin: perfrm as much wrk as pssible in a single SQL statement. Reducing the number f calls t the database even if they are mre cmplicated imprves perfrmance. Dn t: lp ver a set f recrds and use a cunter variable t cunt the results While select salesline where salesid == 123 { Cunter++; } D: use keywrds including cunt, avg, maxf, and minf. Select cunt(recid) frm salesline where salesid == 123 Lcatin f select filters Descriptin: sending data between the AOS and the database is slw, and shuld be avided. Perfrming a select which returns nly the data that is needed reduces unnecessary verhead. Dn t: perfrm data filters in an if after the select statement While select salesline { If (salesline.salesid == 123 ) D: perfrm all pssible data filters in the where clause f a select statement While select salesline where salesid == 123 Prprietary and Cnfidential Page 8 f Subject t Change

9 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Nested lps Descriptin: Perfrming a query in SQL server with a jin allws SQL t prcess this request nce, and fr it t send mre data t the AOS at ne time. Dn t: use unnecessary nested lps While select salestable { While select salesline where salestable.salesid == salesline.salesid D: use jins where pssible t lp thrugh recrds While select salesline jin salestable where salestable.salesid == salesline.salesid Lcatin f significant SQL calls Descriptin: Fr every SQL call made n the client that request needs t be sent client t AOS t SQL t AOS t client. If that request is made frm the AOS the request is sent AOS t SQL t AOS. Reducing these Remte Prcedure Calls (RPC) calls can have a significant effect n perfrmance. Nte: T call a prcess frm the server mve the cde t a class and change the run n prperty f the class t Server. Dn t: Call cmplex prcesses with multiple SQL calls frm the client. D: Call cmplex prcesses with multiple SQL calls frm the AOS. Prprietary and Cnfidential Page 9 f Subject t Change

10 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Cursr versus set based peratins Descriptin: Using set based peratins reduces the cmmunicatin between servers required t accmplish a task. Prgramming with set based peratrs can be mre difficult than using cursr (recrd by recrd) based peratins, thugh the perfrmance imprvement can be dramatic. Additinally, if the insert, update, r delete methd are verridden insert_recrdset, recrdinsertlist, update_recrdset, r delete_frm will revert t cursr based updates. Dn t: Use while select and an insert, update, r delete statements when making changes t large numbers f recrds at nce when pssible. D: Use insert_recrdset, recrdinsertlist, update_recrdset, and delete_frm when making changes t large numbers f recrds at nce. Transactin blcks Descriptin: A transactin blck grups database mdificatins tgether s that if ne fails the related mdificatins als fail. This is a gd thing that preserves data integrity. At the same time the prcess f hlding these recrds s they all cmmit t the database at the same time lcks these recrds s ther prcesses can t update these recrds. If a significant number fr recrds is being mdified these lcks can escalate t table level lcks which prevent any transactin frm ccurring n the lcked table until the transactin has cmmitted. Transactin blcks shuld be big enugh t preserve data integrity while being small enugh t allw adequate perfrmance f the system. Additinally n user interactin shuld ever be placed in a transactin blck, because then ther prcesses have t wait fr a user t respnd (users respnd slwly) befre they can access the data they need. Dn t: lck recrds fr an extended perid f time with large transactin blcks Dn t: put any user interactin in a transactin blck D: limit the size f transactin blcks where pssible Prprietary and Cnfidential Page 10 f Subject t Change

11 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Cached display methds Descriptin: Display methds are called many times fr a single recrd as a user interacts with the frm that display methd is n. If the display methd is cached, then the lgic behind this display methd is called nly nce. D: when pssible cache display methds Filter using * Descriptin: Even if there is an index n the sales rder id field it will nt be used if the search string entered is *123. This search is similar t trying t find all f the last name Dragn in the phne bk by lking at all f the last names that end in ragn. The nly way t d this is t lk at every last name in the phne bk. Dn t: Train end users t search fr the sales rder s by entering *123. D: Train end users t search fr the sales rder s by entering SO Temprary table usage Descriptin: In memry temprary tables are respnsive and effective fr small data sets. When a temprary table exceeds 128 kb the table is mved frm memry t disk, and it becmes extremely slw. Micrsft Dynamics AX 2012 features a new type f temprary table TempDB which addresses this size limitatin, but these tables cannt be used n a frm. Dn t: Use in memry temprary tables with large number f recrds fr prcessing. D: Use in memry temprary tables fr small calculatins when apprpriate. Prprietary and Cnfidential Page 11 f Subject t Change

12 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Tls fr understanding perfrmance There are many tls available t understand and diagnse perfrmance issues in Micrsft Dynamics AX. This list will give a brief descriptin f these tls. Mre infrmatin will be given in later articles. PerfMn - This is a Windws tl which tracks perfrmance infrmatin. This can either be viewed real time, r tracked ver time using Data Cllectr Sets. Trace Cckpit (Trace Parser) In Micrsft Dynamics AX 2009 and 2012, a trace can be taken f any prcess. This trace includes all f the cde that executes fr the perid f time traced. The Trace Cckpit helps navigate the trace t find the areas f cde that run slwly. Perfrmance Analyzer The Perfrmance Analyzer is a SQL server based tl which captures key statistics n the database n a peridic basis and stres it in a database which can be queried later. The infrmatin cllected includes lng running queries, tables missing indexes, imprper clustered indexes, missing clustered indexes, and mre. Dynamics AX SQL Trace traces can be setup t shw the SQL statements that are executed. This infrmatin is helpful because it includes bth the SQL Prprietary and Cnfidential Page 12 f Subject t Change

13 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics statement that the database will execute, as well as the X++ call stack. SQL Server Prfiler captures a cnfigurable set f events frm SQL server. The events that can be captured can include useful infrmatin such as lgins, Prprietary and Cnfidential Page 13 f Subject t Change

14 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics lng running queries, lcks, and deadlcks. SQL Server Database Tuning Advisr (DTA) When given a lng running query DTA prduces a list f indexes and updates t statistics which wuld imprve perfrmance. The results f DTA shuld nt be directly implemented, but rather they can be used as a starting pint fr tuning a query. SQL Server Management Studi (SSMS) SSMS is the primary tl used t interact with the database. Sme f the tasks that can be perfrmed in SSMS in regard t tuning a query include: Prprietary and Cnfidential Page 14 f Subject t Change

15 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Run SQL statements T effectively tune a lng running query, the query needs t be brught int SSMS. Any parameters which the query uses must be filled in, and accurate executin times need t be fund. Include client statistics This ptin prduces an additinal tab with the results which capture key statistics like run time in millisecnds. Capturing accurate times is critical fr determining if index fixes are effective. Als, any query shuld be run multiple times s caching des nt affect the executin time f a query. Prprietary and Cnfidential Page 15 f Subject t Change

16 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Review executin plans The executin plan f a query is the radmap fr hw SQL server will internally prcess a query. SSMS can prvide an estimated r actual executin plan. The estimated plan des nt require the query t execute befre it is generated, s yu can access it faster, but the actual executin plan is mre accurate. Thrugh an executin plan a DBA can determine which parts f a query are slw, which helps t determine hw t fix the perfrmance issues. Prprietary and Cnfidential Page 16 f Subject t Change

17 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Read lgs Using SSMS a DBA can review the errr lgs fr SQL as well as the peratin system hsting SQL. Check settings Shw the settings such as max memry and maximum degree f parallelism that are set n the SQL Server. Prprietary and Cnfidential Page 17 f Subject t Change

18 Intrductin t Prgramming fr Perfrmance in Micrsft Dynamics Review Maintenance Plans Review the maintenance being perfrmed n a SQL server. Prprietary and Cnfidential Page 18 f Subject t Change

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1 Imprved Data Center Pwer Cnsumptin and Streamlining Management in Windws Server 2008 R2 with SP1 Disclaimer The infrmatin cntained in this dcument represents the current view f Micrsft Crpratin n the issues

More information

BackupAssist SQL Add-on

BackupAssist SQL Add-on WHITEPAPER BackupAssist Versin 6 www.backupassist.cm 2 Cntents 1. Requirements... 3 1.1 Remte SQL backup requirements:... 3 2. Intrductin... 4 3. SQL backups within BackupAssist... 5 3.1 Backing up system

More information

System Business Continuity Classification

System Business Continuity Classification System Business Cntinuity Classificatin Business Cntinuity Prcedures Infrmatin System Cntingency Plan (ISCP) Business Impact Analysis (BIA) System Recvery Prcedures (SRP) Cre Infrastructure Criticality

More information

Disk Redundancy (RAID)

Disk Redundancy (RAID) A Primer fr Business Dvana s Primers fr Business series are a set f shrt papers r guides intended fr business decisin makers, wh feel they are being bmbarded with terms and want t understand a cmplex tpic.

More information

Using Sentry-go Enterprise/ASPX for Sentry-go Quick & Plus! monitors

Using Sentry-go Enterprise/ASPX for Sentry-go Quick & Plus! monitors Using Sentry-g Enterprise/ASPX fr Sentry-g Quick & Plus! mnitrs 3Ds (UK) Limited, February, 2014 http://www.sentry-g.cm Be Practive, Nt Reactive! Intrductin Sentry-g Enterprise Reprting is a self-cntained

More information

Licensing Windows Server 2012 for use with virtualization technologies

Licensing Windows Server 2012 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This

More information

TaskCentre v4.5 MS SQL Server Trigger Tool White Paper

TaskCentre v4.5 MS SQL Server Trigger Tool White Paper TaskCentre v4.5 MS SQL Server Trigger Tl White Paper Dcument Number: PD500-03-02-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT... 1 TRADEMARKS... 1 INTRODUCTION... 2 Overview... 2 Features...

More information

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories.

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories. 11 This chapter includes infrmatin regarding custmized reprts that users can create using data entered int the CA prgram, including: Explanatin f Accessing List Screen Creating a New Ad Hc Reprt Running

More information

Licensing Windows Server 2012 R2 for use with virtualization technologies

Licensing Windows Server 2012 R2 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 R2 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 R2 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents

More information

System Business Continuity Classification

System Business Continuity Classification Business Cntinuity Prcedures Business Impact Analysis (BIA) System Recvery Prcedures (SRP) System Business Cntinuity Classificatin Cre Infrastructure Criticality Levels Critical High Medium Lw Required

More information

Title: How Do You Handle Exchange Mailboxes for Employees Who Are No Longer With the Company

Title: How Do You Handle Exchange Mailboxes for Employees Who Are No Longer With the Company Dean Suzuki Blg Title: Hw D Yu Handle Exchange Mailbxes fr Emplyees Wh Are N Lnger With the Cmpany Created: 1/21/2013 Descriptin: I asked by ne f my custmers, hw d yu handle mailbxes fr emplyees wh are

More information

SBClient and Microsoft Windows Terminal Server (Including Citrix Server)

SBClient and Microsoft Windows Terminal Server (Including Citrix Server) SBClient and Micrsft Windws Terminal Server (Including Citrix Server) Cntents 1. Intrductin 2. SBClient Cmpatibility Infrmatin 3. SBClient Terminal Server Installatin Instructins 4. Reslving Perfrmance

More information

URM 11g Implementation Tips, Tricks & Gotchas ALAN MACKENTHUN FISHBOWL SOLUTIONS, INC.

URM 11g Implementation Tips, Tricks & Gotchas ALAN MACKENTHUN FISHBOWL SOLUTIONS, INC. URM 11g Implementatin Tips, Tricks & Gtchas ALAN MACKENTHUN FISHBOWL SOLUTIONS, INC. i Fishbwl Slutins Ntice The infrmatin cntained in this dcument represents the current view f Fishbwl Slutins, Inc. n

More information

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)?

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)? Frequently Asked Questins Nvember 19, 2013 General infrmatin 1. Which brwsers are cmpatible with the Glbal Patent Search Netwrk (GPSN)? Ggle Chrme (v23.x) and IE 8.0. 2. The versin number and dcument cunt

More information

Recommended Backup Plan for SQL 2000 Server Database Servers

Recommended Backup Plan for SQL 2000 Server Database Servers Recmmended Backup Plan fr SQL 2000 Server Database Servers (DAISI) General Ntes STI recmmends that data backup be perfrmed n a regular basis. Transactin Lg Backup Users shuld nt truncate the Transactin

More information

MaaS360 Cloud Extender

MaaS360 Cloud Extender MaaS360 Clud Extender Installatin Guide Cpyright 2012 Fiberlink Cmmunicatins Crpratin. All rights reserved. Infrmatin in this dcument is subject t change withut ntice. The sftware described in this dcument

More information

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall Implementing iflder Server in the DMZ with iflder Data inside the Firewall Nvell Cl Slutins AppNte www.nvell.cm/clslutins JULY 2004 OBJECTIVES The bjectives f this dcumentatin are as fllws: T cnfigure

More information

ROSS RepliWeb Operations Suite for SharePoint. SSL User Guide

ROSS RepliWeb Operations Suite for SharePoint. SSL User Guide ROSS RepliWeb Operatins Suite fr SharePint SSL User Guide Sftware Versin 2.5 March 18, 2010 RepliWeb, Inc., 6441 Lyns Rad, Ccnut Creek, FL 33073 Tel: (954) 946-2274, Fax: (954) 337-6424 E-mail: inf@repliweb.cm,

More information

Virtual Meetings and Virtual Teams Using Technology to Work Smarter

Virtual Meetings and Virtual Teams Using Technology to Work Smarter http://www.psu.edu/president/pia/innvatin/ INNOVATION INSIGHT SERIES NUMBER 9 Virtual Meetings and Virtual Teams Using Technlgy t Wrk Smarter Yu need t have a meeting. Sme f the peple yu d like t include

More information

Considerations for Success in Workflow Automation. Automating Workflows with KwikTag by ImageTag

Considerations for Success in Workflow Automation. Automating Workflows with KwikTag by ImageTag Autmating Wrkflws with KwikTag by ImageTag Cnsideratins fr Success in Wrkflw Autmatin KwikTag balances cmprehensive, feature-rich Transactinal Cntent Management with affrdability, fast implementatin, ease

More information

TaskCentre v4.5 Send Message (SMTP) Tool White Paper

TaskCentre v4.5 Send Message (SMTP) Tool White Paper TaskCentre v4.5 Send Message (SMTP) Tl White Paper Dcument Number: PD500-03-17-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION

More information

Monthly All IFS files, all Libraries, security and configuration data

Monthly All IFS files, all Libraries, security and configuration data Server Backup Plicy Intrductin Data is ne f Banks DIH Limited s mst imprtant assets. In rder t prtect this asset frm lss r destructin, it is imperative that it be safely and securely captured, cpied, and

More information

IT Help Desk Service Level Expectations Revised: 01/09/2012

IT Help Desk Service Level Expectations Revised: 01/09/2012 IT Help Desk Service Level Expectatins Revised: 01/09/2012 Overview The IT Help Desk team cnsists f six (6) full time emplyees and fifteen (15) part time student emplyees. This team prvides supprt fr 25,000+

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

How to put together a Workforce Development Fund (WDF) claim 2015/16

How to put together a Workforce Development Fund (WDF) claim 2015/16 Index Page 2 Hw t put tgether a Wrkfrce Develpment Fund (WDF) claim 2015/16 Intrductin What eligibility criteria d my establishment/s need t meet? Natinal Minimum Data Set fr Scial Care (NMDS-SC) and WDF

More information

HSBC Online Home Loan Application Process

HSBC Online Home Loan Application Process HSBC Online Hme Lan Applicatin Prcess Versin 1.0 Nvember 2005 Cpyright. HSBC Bank Australia Limited 2005 ALL RIGHTS RESERVED N part f this publicatin may be reprduced, stred in a retrieval system, r transmitted,

More information

TaskCentre v4.5 File Transfer (FTP) Tool White Paper

TaskCentre v4.5 File Transfer (FTP) Tool White Paper TaskCentre v4.5 File Transfer (FTP) Tl White Paper Dcument Number: PD500-03-22-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION

More information

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3 EEC Single Sign In (SSI) Applicatin The EEC Single Sign In (SSI) Single Sign In (SSI) is the secure, nline applicatin that cntrls access t all f the Department f Early Educatin and Care (EEC) web applicatins.

More information

Instant Chime for IBM Sametime Quick Start Guide

Instant Chime for IBM Sametime Quick Start Guide Instant Chime fr IBM Sametime Quick Start Guide Fall 2014 Cpyright 2014 Instant Technlgies. All rights reserved. Cpyright and Disclaimer This dcument, as well as the sftware described in it, is furnished

More information

Space Exploration Classroom Activity

Space Exploration Classroom Activity Space Explratin Classrm Activity The Classrm Activity intrduces students t the cntext f a perfrmance task, s they are nt disadvantaged in demnstrating the skills the task intends t assess. Cntextual elements

More information

Design for securability Applying engineering principles to the design of security architectures

Design for securability Applying engineering principles to the design of security architectures Design fr securability Applying engineering principles t the design f security architectures Amund Hunstad Phne number: + 46 13 37 81 18 Fax: + 46 13 37 85 50 Email: amund@fi.se Jnas Hallberg Phne number:

More information

CHAPTER 26: INFORMATION SEARCH

CHAPTER 26: INFORMATION SEARCH Chapter 26: Infrmatin Search CHAPTER 26: INFORMATION SEARCH AVImark allws yu t lcate r target a variety f infrmatin in yur data including clients, patients, Medical Histry, and accunting. The data can

More information

Using PayPal Website Payments Pro UK with ProductCart

Using PayPal Website Payments Pro UK with ProductCart Using PayPal Website Payments Pr UK with PrductCart Overview... 2 Abut PayPal Website Payments Pr & Express Checkut... 2 What is Website Payments Pr?... 2 Website Payments Pr and Website Payments Standard...

More information

Service Desk Self Service Overview

Service Desk Self Service Overview Tday s Date: 08/28/2008 Effective Date: 09/01/2008 Systems Invlved: Audience: Tpics in this Jb Aid: Backgrund: Service Desk Service Desk Self Service Overview All Service Desk Self Service Overview Service

More information

ICD-10 Handbook APPLICATION MANUAL

ICD-10 Handbook APPLICATION MANUAL APPLICATION MANUAL Table f Cntents Definitin...3 Billing...3 Transactin Cdes...3 Diagnsis Cdes...3 PQRS Measures (frmerly PQRI Measures)...5 Parameters...5 System Wide Defaults...5 System...5 Patient Definitin...6

More information

SITE APPLICATIONS USER GUIDE:

SITE APPLICATIONS USER GUIDE: SITE APPLICATIONS USER GUIDE: CPCONTROLLER, CCENGINE, SYNC, TPORT, CCTERMINAL Cpyright 2013 Triple E Technlgies. All rights reserved. Site Applicatins User Guide INTRODUCTION The applicatins described

More information

Integrating With incontact dbprovider & Screen Pops

Integrating With incontact dbprovider & Screen Pops Integrating With incntact dbprvider & Screen Pps incntact has tw primary pints f integratin. The first pint is between the incntact IVR (script) platfrm and the custmer s crprate database. The secnd pint

More information

CXA-300-1I: Advanced Administration for Citrix XenApp 5.0 for Windows Server 2008

CXA-300-1I: Advanced Administration for Citrix XenApp 5.0 for Windows Server 2008 CXA-300-1I: Advanced Administratin fr Citrix XenApp 5.0 fr Windws Server 2008 This curse prvides learners with the skills necessary t mnitr, maintain and trublesht netwrk envirnments running XenApp fr

More information

Times Table Activities: Multiplication

Times Table Activities: Multiplication Tny Attwd, 2012 Times Table Activities: Multiplicatin Times tables can be taught t many children simply as a cncept that is there with n explanatin as t hw r why it is there. And mst children will find

More information

Installation Guide Marshal Reporting Console

Installation Guide Marshal Reporting Console INSTALLATION GUIDE Marshal Reprting Cnsle Installatin Guide Marshal Reprting Cnsle March, 2009 Cntents Intrductin 2 Supprted Installatin Types 2 Hardware Prerequisites 3 Sftware Prerequisites 3 Installatin

More information

Caching Software Performance Test: Microsoft SQL Server Acceleration with FlashSoft Software 3.8 for Windows Server

Caching Software Performance Test: Microsoft SQL Server Acceleration with FlashSoft Software 3.8 for Windows Server The linked image cannt be displayed. The file may have been mved, renamed, r deleted. Verify that the link pints t the crrect file and lcatin. Technical Brief Caching Sftware Perfrmance Test: Micrsft SQL

More information

StarterPak: Dynamics CRM Opportunity To NetSuite Sales Order

StarterPak: Dynamics CRM Opportunity To NetSuite Sales Order StarterPak: Dynamics CRM Opprtunity T NetSuite Sales Order Versin 1.0 7/20/2015 Imprtant Ntice N part f this publicatin may be reprduced, stred in a retrieval system, r transmitted in any frm r by any

More information

How much life insurance do I need? Wrong question!

How much life insurance do I need? Wrong question! Hw much life insurance d I need? Wrng questin! We are ften asked this questin r sme variatin f it. We believe it is NOT the right questin t ask. What yu REALLY need is mney, cash. S the questin shuld be

More information

Implementing SQL Manage Quick Guide

Implementing SQL Manage Quick Guide Implementing SQL Manage Quick Guide The purpse f this dcument is t guide yu thrugh the quick prcess f implementing SQL Manage n SQL Server databases. SQL Manage is a ttal management slutin fr Micrsft SQL

More information

HarePoint HelpDesk for SharePoint. For SharePoint Server 2010, SharePoint Foundation 2010. User Guide

HarePoint HelpDesk for SharePoint. For SharePoint Server 2010, SharePoint Foundation 2010. User Guide HarePint HelpDesk fr SharePint Fr SharePint Server 2010, SharePint Fundatin 2010 User Guide Prduct versin: 14.1.0 04/10/2013 2 Intrductin HarePint.Cm (This Page Intentinally Left Blank ) Table f Cntents

More information

Live Analytics for Kaltura Live Streaming Information Guide. Version: Jupiter

Live Analytics for Kaltura Live Streaming Information Guide. Version: Jupiter Live Analytics fr Kaltura Live Streaming Infrmatin Guide Versin: Jupiter Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright 2015 Kaltura Inc.

More information

Datawatch Server Administrator's Guide

Datawatch Server Administrator's Guide Datawatch Server Administratr's Guide Datawatch Server Web Admin by Datawatch Datawatch Server Web Admin prgram cpyright 2015 by Datawatch Crpratin. Datawatch Server Web Admin Administratr's Guide cpyright

More information

1)What hardware is available for installing/configuring MOSS 2010?

1)What hardware is available for installing/configuring MOSS 2010? 1)What hardware is available fr installing/cnfiguring MOSS 2010? 2 Web Frnt End Servers HP Prliant DL 380 G7 2 quad cre Intel Xen Prcessr E5620, 2.4 Ghz, Memry 12 GB, 2 HP 146 GB drives RAID 5 2 Applicatin

More information

How To Set Up A General Ledger In Korea

How To Set Up A General Ledger In Korea MODULE 6: RECEIVABLES AND PAYABLES MANAGEMENT: PAYMENT DISCOUNT AND PAYMENT TOLERANCE Mdule Overview Granting payment discunts prvides an incentive fr custmers t quickly pay their utstanding amunts in

More information

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008 Exercise 5 Server Cnfiguratin, Web and FTP Instructins and preparatry questins Administratin f Cmputer Systems, Fall 2008 This dcument is available nline at: http://www.hh.se/te2003 Exercise 5 Server Cnfiguratin,

More information

Preparing to Deploy Reflection : A Guide for System Administrators. Version 14.1

Preparing to Deploy Reflection : A Guide for System Administrators. Version 14.1 Preparing t Deply Reflectin : A Guide fr System Administratrs Versin 14.1 Table f Cntents Table f Cntents... 2 Preparing t Deply Reflectin 14.1:... 3 A Guide fr System Administratrs... 3 Overview f the

More information

Information Services Hosting Arrangements

Information Services Hosting Arrangements Infrmatin Services Hsting Arrangements Purpse The purpse f this service is t prvide secure, supprted, and reasnably accessible cmputing envirnments fr departments at DePaul that are in need f server-based

More information

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel An HP PrCurve Netwrking Applicatin Nte Traffic mnitring n PrCurve switches with sflw and InMn Traffic Sentinel Cntents 1. Intrductin... 3 2. Prerequisites... 3 3. Netwrk diagram... 3 4. sflw cnfiguratin

More information

AvePoint High Speed Migration Supplementary Tools

AvePoint High Speed Migration Supplementary Tools AvePint High Speed Migratin Supplementary Tls User Guide Issued April 2016 1 Table f Cntents Intrductin... 3 MD5 Value Generatr Tl... 3 Azure Data Uplad Tl... 3 Dwnlading and Unpacking the Tl... 4 Using

More information

In this lab class we will approach the following topics:

In this lab class we will approach the following topics: Department f Cmputer Science and Engineering 2013/2014 Database Administratin and Tuning Lab 8 2nd semester In this lab class we will apprach the fllwing tpics: 1. Query Tuning 1. Rules f thumb fr query

More information

Introduction to Mindjet MindManager Server

Introduction to Mindjet MindManager Server Intrductin t Mindjet MindManager Server Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 mindjet.cm 2013 Mindjet. All Rights

More information

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008 Exercise 5 Server Cnfiguratin, Web and FTP Instructins and preparatry questins Administratin f Cmputer Systems, Fall 2008 This dcument is available nline at: http://www.hh.se/te2003 Exercise 5 Server Cnfiguratin,

More information

WatchDox Server. Administrator's Guide. Version 3.8.5

WatchDox Server. Administrator's Guide. Version 3.8.5 WatchDx Server Administratr's Guide Versin 3.8.5 Cnfidentiality This dcument cntains cnfidential material that is prprietary WatchDx. The infrmatin and ideas herein may nt be disclsed t any unauthrized

More information

TRAINING GUIDE. Crystal Reports for Work

TRAINING GUIDE. Crystal Reports for Work TRAINING GUIDE Crystal Reprts fr Wrk Crystal Reprts fr Wrk Orders This guide ges ver particular steps and challenges in created reprts fr wrk rders. Mst f the fllwing items can be issues fund in creating

More information

In addition to assisting with the disaster planning process, it is hoped this document will also::

In addition to assisting with the disaster planning process, it is hoped this document will also:: First Step f a Disaster Recver Analysis: Knwing What Yu Have and Hw t Get t it Ntes abut using this dcument: This free tl is ffered as a guide and starting pint. It is des nt cver all pssible business

More information

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New A quick guide t the new features in Sitecre 6.6 Sitecre is a registered trademark. All ther brand and prduct names

More information

How To Install An Orin Failver Engine On A Network With A Network Card (Orin) On A 2Gigbook (Orion) On An Ipad (Orina) Orin (Ornet) Ornet (Orn

How To Install An Orin Failver Engine On A Network With A Network Card (Orin) On A 2Gigbook (Orion) On An Ipad (Orina) Orin (Ornet) Ornet (Orn SlarWinds Technical Reference Preparing an Orin Failver Engine Installatin Intrductin t the Orin Failver Engine... 1 General... 1 Netwrk Architecture Optins and... 3 Server Architecture Optins and... 4

More information

Serv-U Distributed Architecture Guide

Serv-U Distributed Architecture Guide Serv-U Distributed Architecture Guide Hrizntal Scaling and Applicatin Tiering fr High Availability, Security, and Perfrmance Serv-U Distributed Architecture Guide v15.1.2.0 Page 1 f 20 Intrductin Serv-U

More information

1 GETTING STARTED. 5/7/2008 Chapter 1

1 GETTING STARTED. 5/7/2008 Chapter 1 5/7/2008 Chapter 1 1 GETTING STARTED This chapter intrduces yu t the web-based UIR menu system. Infrmatin is prvided abut the set up necessary t assign users permissin t enter and transmit data. This first

More information

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers)

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers) Firewall/Prxy Server Settings t Access Hsted Envirnment Client firewall settings in mst cases depend n whether the firewall slutin uses a Stateful Inspectin prcess r ne that is cmmnly referred t as an

More information

How to Reduce Project Lead Times Through Improved Scheduling

How to Reduce Project Lead Times Through Improved Scheduling Hw t Reduce Prject Lead Times Thrugh Imprved Scheduling PROBABILISTIC SCHEDULING & BUFFER MANAGEMENT Cnventinal Prject Scheduling ften results in plans that cannt be executed and t many surprises. In many

More information

Cloud Services Frequently Asked Questions FAQ

Cloud Services Frequently Asked Questions FAQ Clud Services Frequently Asked Questins FAQ Revisin 1.0 6/05/2015 List f Questins Intrductin What is the Caradigm Intelligence Platfrm (CIP) clud? What experience des Caradigm have hsting prducts like

More information

Google Adwords Pay Per Click Checklist

Google Adwords Pay Per Click Checklist Ggle Adwrds Pay Per Click Checklist This checklist summarizes all the different things that need t be setup t prperly ptimize Ggle Adwrds t get the best results. This includes items that are required fr

More information

HIPAA HITECH ACT Compliance, Review and Training Services

HIPAA HITECH ACT Compliance, Review and Training Services Cmpliance, Review and Training Services Risk Assessment and Risk Mitigatin: The first and mst imprtant step is t undertake a hlistic risk assessment that examines the risks and cntrls related t fur critical

More information

Microsoft SQL Server Administration

Microsoft SQL Server Administration Micrsft SQL Server Administratin Disk & memry David Hksza http://siret.cz/hksza Lecture Outline Query lifecycle Data strage SQL Server Memry SELECT Query Lifecycle 1. SNI client-server cnnectin using TCP/IP

More information

Additional Resources Refer to the Inventory Year-End Closing Tips. Refer to the Inventory Year-End Questions and Answers.

Additional Resources Refer to the Inventory Year-End Closing Tips. Refer to the Inventory Year-End Questions and Answers. Inventry Year-End Clsing Prcedures - 2007 Use the prcedure described in this sectin t clse the year fr Inventry Cntrl and prepare yur Inventry recrds fr the new fiscal year. Clsing a year transfers all

More information

Systems Support - Extended

Systems Support - Extended 1 General Overview This is a Service Level Agreement ( SLA ) between and the Enterprise Windws Services t dcument: The technlgy services the Enterprise Windws Services prvides t the custmer. The targets

More information

Tipsheet: Sending Out Mass Emails in ApplyYourself

Tipsheet: Sending Out Mass Emails in ApplyYourself GEORGETOWN GRADUATE SCHOOL Tipsheet: Sending Out Mass Emails in ApplyYurself In ApplyYurself (AY), it is very simple and easy t send a mass email t all f yur prspects, applicants, r students with applicatins

More information

SaaS Listing CA Cloud Service Management

SaaS Listing CA Cloud Service Management SaaS Listing CA Clud Service Management 1. Intrductin This dcument prvides standards and features that apply t the CA Clud Service Management (CSM) SaaS ffering prvided t the Custmer and defines the parameters

More information

Data Protection Act Data security breach management

Data Protection Act Data security breach management Data Prtectin Act Data security breach management The seventh data prtectin principle requires that rganisatins prcessing persnal data take apprpriate measures against unauthrised r unlawful prcessing

More information

Diagnostic Manager Change Log

Diagnostic Manager Change Log Diagnstic Manager Change Lg Updated: September 8, 2015 4.4.4090 Features and Issues Supprt fr Office 365 Tenants Yu can nw: Mnitr the status f Office 365 Services (including SharePint Online, Exchange

More information

INTERMEDIATE CAD FILE MANAGEMENT

INTERMEDIATE CAD FILE MANAGEMENT INTERMEDIATE CAD FILE MANAGEMENT Intrductin File mismanagement is the dwnfall f many brilliant individuals. If yu are wise, yu wn't be ne f the peple wh meet disaster due t pr file management. Cmputers

More information

Security in Business and Applications. Madison Hajeb Stefan Hurst Benjamin Von Slade

Security in Business and Applications. Madison Hajeb Stefan Hurst Benjamin Von Slade Security in Business and Applicatins Madisn Hajeb Stefan Hurst Benjamin Vn Slade Intrductin Prject Cncept - Implement security in a small business setting Original Plan - D sme security audits fr small

More information

Concur Travel QuickStart Guide. Concur Technologies Version 1.0

Concur Travel QuickStart Guide. Concur Technologies Version 1.0 Cncur Travel QuickStart Guide Cncur Technlgies Versin 1.0 August 22, 2014 Dcument Revisin Histry Date Descriptin Versin Authr 08/22/2014 Cncur Travel QuickStart Guide 1.0 Cncur Prprietary Statement These

More information

ISAM TO SQL MIGRATION IN SYSPRO

ISAM TO SQL MIGRATION IN SYSPRO 118 ISAM TO SQL MIGRATION IN SYSPRO This dcument is aimed at assisting yu in the migratin frm an ISAM data structure t an SQL database. This is nt a detailed technical dcument and assumes the reader has

More information

GUIDANCE FOR BUSINESS ASSOCIATES

GUIDANCE FOR BUSINESS ASSOCIATES GUIDANCE FOR BUSINESS ASSOCIATES This Guidance fr Business Assciates dcument is intended t verview UPMCs expectatins, as well as t prvide additinal resurces and infrmatin, t UPMC s HIPAA business assciates.

More information

expertise hp services valupack consulting description security review service for Linux

expertise hp services valupack consulting description security review service for Linux expertise hp services valupack cnsulting descriptin security review service fr Linux Cpyright services prvided, infrmatin is prtected under cpyright by Hewlett-Packard Cmpany Unpublished Wrk -- ALL RIGHTS

More information

DISASTER RECOVERY PLAN TEMPLATE

DISASTER RECOVERY PLAN TEMPLATE www.disasterrecveryplantemplate.rg The bjective f a disaster recvery plan is t ensure that yu can respnd t a disaster r ther emergency that affects infrmatin systems and minimize the effect n the peratin

More information

ViPNet VPN in Cisco Environment. Supplement to ViPNet Documentation

ViPNet VPN in Cisco Environment. Supplement to ViPNet Documentation ViPNet VPN in Cisc Envirnment Supplement t ViPNet Dcumentatin 1991 2015 Inftecs Americas. All rights reserved. Versin: 00121-04 90 02 ENU This dcument is included in the sftware distributin kit and is

More information

Configuring and Integrating LDAP

Configuring and Integrating LDAP Cnfiguring and Integrating LDAP The Basics f LDAP 3 LDAP Key Terms and Cmpnents 3 Basic LDAP Syntax 4 The LDAP User Experience Mnitr 6 This dcument includes infrmatin abut LDAP and its rle with SlarWinds

More information

Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2.

Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2. Oracle s Hyperin Data Integratin Management Release 9.2.1 Readme Readme File This file cntains the fllwing sectins: Purpse... 1 Intrductin t Data Integratin Management... 1 Data Integratin Management Adapters...

More information

GETTING STARTED With the Control Panel Table of Contents

GETTING STARTED With the Control Panel Table of Contents With the Cntrl Panel Table f Cntents Cntrl Panel Desktp... 2 Left Menu... 3 Infrmatin... 3 Plan Change... 3 Dmains... 3 Statistics... 4 Ttal Traffic... 4 Disk Quta... 4 Quick Access Desktp... 4 MAIN...

More information

David Drivers Revit One-sheets: Linked Project Positioning and shared coordinates

David Drivers Revit One-sheets: Linked Project Positioning and shared coordinates This paper discusses the fllwing features f Revit Building Shared Crdinates Named lcatins Publish and acquire Vs Saving lcatins Shared Crdinates and wrkset enabled files Revisin 1 (Versin 9.0) David Driver.

More information

We will record and prepare documents based off the information presented

We will record and prepare documents based off the information presented Dear Client: We appreciate the pprtunity f wrking with yu regarding yur Payrll needs. T ensure a cmplete understanding between us, we are setting frth the pertinent infrmatin abut the services that we

More information

efusion Table of Contents

efusion Table of Contents efusin Cst Centers, Partner Funding, VAT/GST and ERP Link Table f Cntents Cst Centers... 2 Admin Setup... 2 Cst Center Step in Create Prgram... 2 Allcatin Types... 3 Assciate Payments with Cst Centers...

More information

WHITEPAPER SERIES. info@metavistech.com 610.717.0413 www.metavistech.com

WHITEPAPER SERIES. info@metavistech.com 610.717.0413 www.metavistech.com WHITEPAPER SERIES Shredded Strage in SharePint 2013 What des Shredded Strage mean, hw much des it actually save and hw t take advantage f it in SharePint 2013. What is Shredded Strage? Shredded Strage

More information

Migrating to SharePoint 2010 Don t Upgrade Your Mess

Migrating to SharePoint 2010 Don t Upgrade Your Mess Migrating t SharePint 2010 Dn t Upgrade Yur Mess by David Cleman Micrsft SharePint Server MVP April 2011 Phne: (610)-717-0413 Email: inf@metavistech.cm Website: www.metavistech.cm Intrductin May 12 th

More information

April 29, 2013 INTRODUCTION ORGANIZATIONAL OVERVIEW PROJECT OVERVIEW

April 29, 2013 INTRODUCTION ORGANIZATIONAL OVERVIEW PROJECT OVERVIEW April 29, 2013 INTRODUCTION The Mid-Atlantic Reginal Air Management Assciatin, Inc (MARAMA) is seeking t engage a cntractr t assist in updating f MARAMA s current website sftware and mve the website t

More information

Welcome to Microsoft Access Basics Tutorial

Welcome to Microsoft Access Basics Tutorial Welcme t Micrsft Access Basics Tutrial After studying this tutrial yu will learn what Micrsft Access is and why yu might use it, sme imprtant Access terminlgy, and hw t create and manage tables within

More information

HP Connected Backup Online Help. Version 8.7.1 04 October 2012

HP Connected Backup Online Help. Version 8.7.1 04 October 2012 HP Cnnected Backup Online Help Versin 8.7.1 04 Octber 2012 Legal Ntices Warranty The nly warranties fr Hewlett-Packard prducts and services are set frth in the express statements accmpanying such prducts

More information

Deployment Overview (Installation):

Deployment Overview (Installation): Cntents Deplyment Overview (Installatin):... 2 Installing Minr Updates:... 2 Dwnlading the installatin and latest update files:... 2 Installing the sftware:... 3 Uninstalling the sftware:... 3 Lgging int

More information

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003 Trends and Cnsideratins in Currency Recycle Devices Nvember 2003 This white paper prvides basic backgrund n currency recycle devices as cmpared t the cmbined features f a currency acceptr device and a

More information

Privacy Policy. The Central Equity Group understands how highly people value the protection of their privacy.

Privacy Policy. The Central Equity Group understands how highly people value the protection of their privacy. Privacy Plicy The Central Equity Grup understands hw highly peple value the prtectin f their privacy. Fr that reasn, the Central Equity Grup takes particular care in dealing with any persnal and sensitive

More information

Sitecore Serialization Guide

Sitecore Serialization Guide Sitecre CMS 6.0-6.4 Sitecre Serializatin Guide Rev: 4 February 2011 Sitecre CMS 6.0-6.4 Sitecre Serializatin Guide An administratr's guide t serializing cntent in Sitecre Sitecre CMS 6.0-6.4 Table f Cntents

More information

Kurzweil 3000 Version 12 Web License

Kurzweil 3000 Version 12 Web License Kurzweil 3000 Versin 12 Web License Web Licensing: Instructinal Prcess Web Licensing (V12 with VPORT): Teachers can nw: Create Kurzweil 3000 Assignments and save t a central lcatin Publish and Assign wrk

More information