Messing with SQL in Dataflex What is available in Dataflex 19.0 o cconnection.pkg

Size: px
Start display at page:

Download "Messing with SQL in Dataflex What is available in Dataflex 19.0 o cconnection.pkg"

Transcription

1 Messing with SQL in Dataflex What is available in Dataflex 19.0 ccnnectin.pkg Lts f useful stuff in there. Will take sme time t srt. DataDict.pkg Sme calls in the dd fr SQL It has a helper class. Des a few things needed fr DD I came in truble when creating filters with dates r datetime Yu cannt just cnstrain with the DF date in SQL filters. Needs t be cnverted t SQL frmat Sql.pkg Lts f stuff and has DFDate t SQL and vs cnversins Cli.pkg Lt f definitins lwer level Als, the DFDate sql Data Cnversins, but in this case als dealing with null dates DbSuggestinFrm.pkg Actually, it is WinSuggestin.pkg uses the SQL filters Can be used as Sample t lk at. Samples Stred prcedure sample is frm the ld days. Sample in StredPrcedureMSSQL.vw in the Specialized Cmpnents #Replace CS_CONNECT "SERVER=(lcal);Trusted_Cnnectin=yes;Database=Order" //*** The SQL handle manager bject Object SQLHandler Is A csqlhandlemanager Mve Self T hsql End_Object // SQLHandler Des nt use the new ccnnectin class. The Dataflex install des nt deply a sample wrking with MSSQL database Maybe I am wrng but yu are very much n yur wn. SQL Stuff t give sme attentin. (lk in cde library frum) Raveen Ryan Sundram SQL Functins fr DataFlex Cnnectivity Kits (2012) Nice stuff but A lt has been added t the df drivers since. Written fr DB2. Matt Davidian SQL Lab (2014) Take a lk, run it and lk at the cde generated.

2 SQL - Structured Query Language Readability???, well readability f SQL is nt always as great, fr sure if the statement gets bigger and mre aliases are used, fr sure if ne letter alias name srt f randmly picked r nt just use a, b, c, d, e, f,... D nt knw why that is needed with current aut cmplete editr. But maybe yu can call yurself at that mment a die-hard SQL prgrammer. Yes, I did mess arund with SQL wh remembers FlexQL? in Btrieve t speed stuff up, created a that time sme classes. Mainly t remve all the recurring cde t cnnect and discnnect. In general, I d nt knw SQL that well, can d queries and when I need smething I srt it ut. Df applicatin released in a full windw versin in 1998 Time and Attendance, Human Resurce and Payrll. Incremental updates ver time. And many f thse updates because the gvernment decided smething needed t be changed. [Read we need mre mney s we are ging t change the tax rules] Even nicer if they d it retr. Using databases fr each cmpany. S, the user had t have multiple applicatins pen at the same time if she wanted t wrk in mre the ne cmpany Because f the multiple databases maintenance tables had t be kept up t date in all thse databases. Was using the embedded database.

3 But Needed a bigger update. Started lng ag. On several areas, like the cjgrid, cjmenu, but never ended in a final release. Old dbgrid, limited filter pssibilities, had several peratr rights limitatins but was cded as Cnstraint AS. What t use fr database. Stay with embedded? Than the need t update... What t add. Request fr multiple cmpanies in ne database. Multi Currency Applicatin fr payrll We wrk in the Caribbean and have t deal with multiple cuntries s multiple tax regimes and by that the lcal tax currency. But the head cmpany wants cnslidatin reprts in ne currency Give mre features by having them all in ne app. Reprting Rewrite majr parts f the system Cde was way t ld, very hard t maintain. Many limitatins.

4 And after 25 years it is needed. Clean cde and prper File and field names we have a bigger length nw is it nt? Questin t cnference rm, wh has all the right and perfect naming fr tables and fields? Think there was ne finger. When wrking n a new release I change any name which is nt a 100% clear t me anymre. Cmpile and fix the incrrect field name errrs. Just d that during the whle develping. At cnversin time I deal with it. I d keep crss reference list. Add Webservices fr additinal functinality. What t d with the database. Stay with embedded. Lest be hnest that is very end f life. Mve t SQL? Nice fr new sales. Mre credibility and all the ther cmmn arguments. But fr current users. D they want t frk ut mre fr the same functinality? Embedded is wrking is it nt? Why buy SQL server, cst fr a License if express is nt enugh? What is there t gain? Cst vs Extra S, start t use SQL within Dataflex t make use f the backend. Use filters t d security when nt all users are allwed t wrk in all cmpanies. Use filters in prcesses t speed up where indexes are limited. Set_Attribute DF_FILE_SQL_FILTER f (RefTable (Emp_Head)) t ssql_where Set_Attribute DF_FILE_SQL_FILTER_ACTIVE f (RefTable (Emp_Head)) t True Clear Emp_Head Find Ge Emp_Head by Index.1 Reprting by using SQL view. We have Transactinal and histry tables Reprting is harder t shw infrmatin frm bth and slw, reads way t many recrds. Make use f Blbs in SQL fr requested security f files and the dcuments the system creates. Mve vtxtext t ucfile Reread Merge Set_Field_Value (RefTable (Merge)) (RefTable (Merge.Dcument)) t ucfile SaveRecrd Merge Unlck Embedded SQL t give mre features and mre speed.

5 Example: Same view as abve but nw a cjgrid which get filled by SQL On the right there is a dcking view where end users can make all kind f selectins t dynamic limit data shwn

6 It is clear that this will nt be an ptimizable selectin fr indexes. But SQL has n prblem with that, and is fast t perfrm the query. S, mre features fr the end user. Hw t d embedded SQL? Cde wise String ssql Mve (ssql * SELECT "Skl_Tble"."Descriptin", Mve (ssql * "Skl_Tble"."Skl_Tble_ID" Mve (ssql * FROM "Skl_Tble" Mve (ssql * WHERE "Skl_Tble"."Drpped" = 'N' Mve (ssql * ORDER BY "Skl_Tble"."Descriptin" ) t ssql ) t ssql ) t ssql ) t ssql ) t ssql Shuld be: Mve (ssql * WHERE "Skl_Tble"."Drpped" = + 'N' ) t ssql Pretty hard readable and maintainable. Well the sample is in fact pretty k. Only the yellw will n wrk t well. Resurces r the use f the ld images. Did read n the newsgrup t wrk that way. Hw much different is that frm the abve? Read them in Read the SQL file in and make the call? A bit risky smene can change the SQL cde Stred prcedures Nice but then if yu have t wrk against anther SQL engine, yu will have t cde it there t. And then the always changing file and field names, yes maybe a bad habit, yu shuld nt d that in SQL but I stick t it

7 S hw abut the fllwing cde: Prcedure InitializeGrid tdatasurcerw[] stdatasurcerws Handle hsql_resultset Get Create (RefClass (HRp_cSql_ResultSet)) t hsql_resultset Send dadd_select_filefield f hsql_resultset (RefTable (Skl_Tble)) (RefTable Skl_Tble.Descriptin)) Send dadd_select_filefield f hsql_resultset (RefTable (Skl_Tble)) (RefTable Skl_Tble.Skl_Tble_ID)) Send dadd_frmfile f hsql_resultset (RefTable (Skl_Tble)) Send dadd_where f hsql_resultset (RefTable (Skl_Tble)) ; (RefTable (Skl_Tble.Drpped)) ; False ; c_select_eq ; "N" ; "" Send dadd_order_by f hsql_resultset (RefTable (Skl_Tble)) (RefTable (Skl_Tble.Descriptin)) Get givedatasurcerws f hsql_resultset t stdatasurcerws Send Destry f hsql_resultset Send InitializeData stdatasurcerws End_Prcedure If naming f files and fields are changing, this way it gives a cmpiler errr Fairly easy readable, maintainable, easy extendable cde Creates a tdatasurce fr me. Deals hidden in the class autmatically with all the cnversins needed, like DateTime and Date fields. The SQL result cannt be used directly t fill the grids. Yes it des Jins t. Des it d all? N way, there is s much pssible in SQL but every time I need smething new, I just add it. At the mment it des what I need. It creates ne-line lng SQL string statement and I use: T frmat it prperly fr pssible use in the SQL Management Studi.

8 Other SQL stuff Cpy recrds Get Create (RefClass (HRp_cSQL_Cpy_Recrds)) t hcpy_recrds Set pitable_frm f hcpy_recrds t Ded_Tran.File_Number Set pitable_t f hcpy_recrds t Ded_Hist.File_Number Send dadd_where f hcpy_recrds (RefTable (Ded_Tran)) ; (RefTable (Ded_Tran.Cmpany_ID)) ; False ; c_select_eq ; GLBS_CmpanyPayrll ; "" Send dadd_where f hcpy_recrds (RefTable (Ded_Tran)) ; (RefTable (Ded_Tran.Emp_Head_ID)) ; False ; c_select_eq ; semp_head_id ; "" Send dprcesscpy f hcpy_recrds Send Destry f hcpy_recrds Delete recrds Send dsql_deleterecrds_multi_where stsql_wheres Bth calls are perfrming very fast in the SQL engine

9 Cnversin. Needed t cmbine multiple databases in t ne Renaming f many table and field names. Als, many functinality changes, additins, remve f nt used fields Remve f utdated histric garbage infrmatin in fields, s cnversin f data At first cpy data ver recrd by recrd frm Dataflex t SQL table. Way t slw Nw exprting t a CSV file. Then use the SQL imprt called Bulk Insert. Bulk insert [db].[my_table] frm 'c:\data\imprt\my_csv_file.csv' With (FIELDTERMINATOR = ' ', ROWTERMINATOR = '\n') This is blazing fast. Wrked with Dave Rbinsn during the cnference n an imprt which tk hurs by using dbimprt t a few minutes with the bulk insert After the imprt data gets checked by a utility I wrte in the begin stages when the applicatin was mved frm ds t windws. Validates every recrd every field thrugh the datadictinairy.

10 Future with messing with SQL. Well first finish SQL in memry Temp tables feature f SQL 2016 and up if I am crrect. Use cnnectin ID t switch databases, nt needed at the mment fr first release. Reprting nly with SQL statements Further speed ptimizatins. Mre nice ptins. Summarizing It is harder t push current embedded custmer t SQL database withut giving mre advantages. SQL can be used t speed up prcesses Use SQL Filters. (n file and in dd s) Use SQL calls fr delete and cpy recrds Use Bulk Insert fr yu wn stuff SQL filters can be used in dd s in yur views t d mre. Reprting Views SQL query Give mre features t yur custmers by using SQL calls. But again, yu are n yur wn. Vdf 19.0 des nt give yu t much help. Peter van Wijk phvwijk@x-rganize.cm

Using Some of those Nifty New Features You Might Have Missed

Using Some of those Nifty New Features You Might Have Missed Using Sme f thse Nifty New Features Yu Might Have Missed Jhn Tuhy March 2018 S why this talk? New versins f DataFlex are released n a regular basis Releases ften add majr new capabilities such as the new

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

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

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

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

Automatic imposition version 5

Automatic imposition version 5 Autmatic impsitin v.5 Page 1/9 Autmatic impsitin versin 5 Descriptin Autmatic impsitin will d the mst cmmn impsitins fr yur digital printer. It will autmatically d flders fr A3, A4, A5 r US Letter page

More information

Type: System Enhancements ID Number: SE 93. Subject: Changes to Employee Address Screens. Date: June 29, 2012

Type: System Enhancements ID Number: SE 93. Subject: Changes to Employee Address Screens. Date: June 29, 2012 Type: System Enhancements ID Number: SE 93 Date: June 29, 2012 Subject: Changes t Emplyee Address Screens Suggested Audience: Human Resurce Offices Details: On July 14, 2012, Peple First will implement

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

MySqlWorkbench Tutorial: Creating Related Database Tables

MySqlWorkbench Tutorial: Creating Related Database Tables MySqlWrkbench Tutrial: Creating Related Database Tables (Primary Keys, Freign Keys, Jining Data) Cntents 1. Overview 2 2. Befre Yu Start 2 3. Cnnect t MySql using MySqlWrkbench 2 4. Create Tables web_user

More information

Asset Panda Web Application Release 12.02

Asset Panda Web Application Release 12.02 Asset Panda Web Applicatin Release 12.02 User Cnfiguratin Permissins Several changes have been made t this page including the fllwing. Page Design The layut has been changed s that all Edit and Misc Cnfiguratins

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

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

Log shipping is a HA option. Log shipping ensures that log backups from Primary are

Log shipping is a HA option. Log shipping ensures that log backups from Primary are LOG SHIPPING Lg shipping is a HA ptin. Lg shipping ensures that lg backups frm Primary are cntinuusly applied n standby. Lg shipping fllws a warm standby methd because manual prcess is invlved t ensure

More information

Customer Self-Service Center Migration Guide

Customer Self-Service Center Migration Guide Custmer Self-Service Center Migratin Guide These instructins intrduce yu t the new Custmer Prtal, which is replacing the lder Custmer Self-Service Center, and guides yu thrugh the migratin. Dn t wrry:

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

Access the site directly by navigating to in your web browser.

Access the site directly by navigating to   in your web browser. GENERAL QUESTIONS Hw d I access the nline reprting system? Yu can access the nline system in ne f tw ways. G t the IHCDA website at https://www.in.gv/myihcda/rhtc.htm and scrll dwn the page t Cmpliance

More information

GPA: Plugin for OS Command With Solution Manager 7.1

GPA: Plugin for OS Command With Solution Manager 7.1 GPA: Plugin fr OS Cmmand With Slutin Manager 7.1 The plugin OS Cmmand can be used in yur wn guided prcedures. It ffers the pssibility t execute pre-defined perating system cmmand n each hst part f the

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

Constituent Page Upgrade Utility for Blackbaud CRM

Constituent Page Upgrade Utility for Blackbaud CRM Cnstituent Page Upgrade Utility fr Blackbaud CRM In versin 4.0, we made several enhancements and added new features t cnstituent pages. We replaced the cnstituent summary with interactive summary tiles.

More information

Getting Started with the Web Designer Suite

Getting Started with the Web Designer Suite Getting Started with the Web Designer Suite The Web Designer Suite prvides yu with a slew f Dreamweaver extensins that will assist yu in the design phase f creating a website. The tls prvided in this suite

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

If you have any questions that are not covered in this manual, we encourage you to contact us at or send an to

If you have any questions that are not covered in this manual, we encourage you to contact us at or send an  to Overview Welcme t Vercity, the ESS web management system fr rdering backgrund screens and managing the results. Frm any cmputer, yu can lg in and access yur applicants securely, rder a new reprt, and even

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

Adobe Connect 8 Event Organizer Guide

Adobe Connect 8 Event Organizer Guide Adbe Cnnect 8 Event Organizer Guide Questins fr Meeting HOST t ask at rganizatin meeting: Date (r dates) f event including time. Presenting t where Lcal ffice cubicles, reginal r glbal ffices, external

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

TRAINING GUIDE. Lucity Mobile

TRAINING GUIDE. Lucity Mobile TRAINING GUIDE The Lucity mbile app gives users the pwer f the Lucity tls while in the field. They can lkup asset infrmatin, review and create wrk rders, create inspectins, and many mre things. This manual

More information

McGill University School of Computer Science COMP-206. Software Systems. Due: September 29, 2008 on WEB CT at 23:55.

McGill University School of Computer Science COMP-206. Software Systems. Due: September 29, 2008 on WEB CT at 23:55. Schl f Cmputer Science McGill University Schl f Cmputer Science COMP-206 Sftware Systems Due: September 29, 2008 n WEB CT at 23:55 Operating Systems This assignment explres the Unix perating system and

More information

Manual for installation and usage of the module Secure-Connect

Manual for installation and usage of the module Secure-Connect Mdule Secure-Cnnect Manual fr installatin and usage f the mdule Secure-Cnnect Page 1 / 1 5 Table f Cntents 1)Cntents f the package...3 2)Features f the mdule...4 3)Installatin f the mdule...5 Step 1: Installatin

More information

CUSTOM CONTROLS. Pieter Saelens Henri Reterink. Building for the future. Better, faster, everywhere.

CUSTOM CONTROLS. Pieter Saelens Henri Reterink. Building for the future. Better, faster, everywhere. CUSTOM CONTROLS Pieter Saelens Henri Reterink Why a custm cntrl? Extra functinalities! Generic reusable cntrls Graphs / Charts Scheduler HTML Editr (Frala) TimePicker Mre feature specific Prcedural questinnaire

More information

Data Requirements. File Types. Timeclock

Data Requirements. File Types. Timeclock A daunting challenge when implementing a cmmercial IT initiative can be understanding vendr requirements clearly, t assess the gap between yur data and the required frmat. With EasyMetrics, if yu are using

More information

The following screens show some of the extra features provided by the Extended Order Entry screen:

The following screens show some of the extra features provided by the Extended Order Entry screen: SmartFinder Orders Extended Order Entry Extended Order Entry is an enhanced replacement fr the Sage Order Entry screen. It prvides yu with mre functinality while entering an rder, and fast access t rder,

More information

Customer Upgrade Checklist

Customer Upgrade Checklist Custmer Upgrade Checklist Getting Ready fr Yur Sabre Prfiles Upgrade Kicking Off the Prject Create a prfiles prject team within yur agency. Cnsider including peple wh can represent bth the business and

More information

STUDIO DESIGNER. Design Projects Basic Participant

STUDIO DESIGNER. Design Projects Basic Participant Design Prjects Basic Participant Thank yu fr enrlling in Design Prjects 2 fr Studi Designer. Please feel free t ask questins as they arise. If we start running shrt n time, we may hld ff n sme f them and

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

CampaignBreeze User Guide

CampaignBreeze User Guide Intrductin CampaignBreeze User Guide This guide prvides an verview f the main features in CampaignBreeze and assumes yu have access t an activated CampaignBreeze accunt alng with yur lgin URL, username

More information

Acclaim Solaria 5.31 Release Notes

Acclaim Solaria 5.31 Release Notes Acclaim Slaria 5.31 Release Ntes 5.31 Release ISSUES RESOLVED Calendar: When using assignment cunts and canceling an assignment directly frm the calendar using the cntext menu, it will nw clear ut the

More information

Entering an NSERC CCV: Step by Step

Entering an NSERC CCV: Step by Step Entering an NSERC CCV: Step by Step - 2018 G t CCV Lgin Page Nte that usernames and passwrds frm ther NSERC sites wn t wrk n the CCV site. If this is yur first CCV, yu ll need t register: Click n Lgin,

More information

Yes. If you are an iphone user, you can download a free application via the App Store in itunes. Download the BSP iphone app.

Yes. If you are an iphone user, you can download a free application via the App Store in itunes. Download the BSP iphone app. Frequently Asked Questins General 1. What is BSP Mbile Banking App? BSP Mbile Banking App, is a smartphne applicatin that allws yu t securely access yur bank accunt (s) anywhere, anytime at yur cnvenience

More information

Querying Data with Transact SQL

Querying Data with Transact SQL Querying Data with Transact SQL Curse Cde: 20761 Certificatin Exam: 70-761 Duratin: 5 Days Certificatin Track: MCSA: SQL 2016 Database Develpment Frmat: Classrm Level: 200 Abut this curse: This curse is

More information

Oracle Database 11g Replay: The In-built Recorder for Real Application Testing

Oracle Database 11g Replay: The In-built Recorder for Real Application Testing Oracle Database 11g Replay: The In-built Recrder fr Real Applicatin Testing Amaresh Mandal Infsys Technlgies Ltd Intrductin Oracle Database 11g intrduced a new feature Database Replay which helps in perfrming

More information

Gmail and Google Drive for Rutherford County Master Gardeners

Gmail and Google Drive for Rutherford County Master Gardeners Gmail and Ggle Drive fr Rutherfrd Cunty Master Gardeners Gmail Create a Ggle Gmail accunt. https://www.yutube.cm/watch?v=kxbii2dprmc&t=76s (Hw t Create a Gmail Accunt 2014 by Ansn Alexander is a great

More information

Release Notes. e-automate 8.7 SP1. Page 1

Release Notes. e-automate 8.7 SP1. Page 1 Release Ntes e-autmate 8.7 SP1 Page 1 Overview Release Ntes This is a maintenance release t address quality issues fund in the e-autmate GA 8.7 release. Release Features N new features have been added

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

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

User Guide. Avigilon Control Center Mobile Version 2.2 for Android

User Guide. Avigilon Control Center Mobile Version 2.2 for Android User Guide Avigiln Cntrl Center Mbile Versin 2.2 fr Andrid 2011-2015, Avigiln Crpratin. All rights reserved. Unless expressly granted in writing, n license is granted with respect t any cpyright, industrial

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

Systems & Operating Systems

Systems & Operating Systems McGill University COMP-206 Sftware Systems Due: Octber 1, 2011 n WEB CT at 23:55 (tw late days, -5% each day) Systems & Operating Systems Graphical user interfaces have advanced enugh t permit sftware

More information

Mission Antyodaya Android Mobile & Web Application. Frequently Asked Questions

Mission Antyodaya Android Mobile & Web Application. Frequently Asked Questions Missin Antydaya Andrid Mbile & Web Applicatin Frequently Asked Questins Natinal Infrmatics Centre v1.0 Missin Antydaya Mbile & Web Applicatin 1 Intrductin What is the name f Mbile applicatin? Earlier it

More information

Last modified on Author Reason 3/4/2019 CHRS Recruiting team Initial Publication

Last modified on Author Reason 3/4/2019 CHRS Recruiting team Initial Publication Revisin histry Last mdified n Authr Reasn 3/4/2019 CHRS Recruiting team Initial Publicatin Intrductin This guide shws yu hw t invite applicants t events, such as interviews and test screenings. Several

More information

JavaScript for Developers

JavaScript for Developers Curse Cde: 55244 Certificatin Exam: N/A Duratin: 5 Days Certificatin Track: N/A Frmat: Classrm Level: 200 Abut this curse: This five-day instructr-led is an in depth hands-n study f JavaScript. The curse

More information

Create Your Own Report Connector

Create Your Own Report Connector Create Yur Own Reprt Cnnectr Last Updated: 15-December-2009. The URS Installatin Guide dcuments hw t cmpile yur wn URS Reprt Cnnectr. This dcument prvides a guide t what yu need t create in yur cnnectr

More information

Empower Supervisor Quick Guide for Non-Exempt Full-Time Employees

Empower Supervisor Quick Guide for Non-Exempt Full-Time Employees Payrll Office: ext. 7611 payrll@dixie.edu Empwer Supervisr Quick Guide fr Nn-Exempt Full-Time Emplyees This dcument prvides an verview f the daily functins and respnsibilities t be cmpleted by Supervisrs

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

Summary. Server environment: Subversion 1.4.6

Summary. Server environment: Subversion 1.4.6 Surce Management Tl Server Envirnment Operatin Summary In the e- gvernment standard framewrk, Subversin, an pen surce, is used as the surce management tl fr develpment envirnment. Subversin (SVN, versin

More information

VMware AirWatch SDK Plugin for Apache Cordova Instructions Add AirWatch Functionality to Enterprise Applicataions with SDK Plugins

VMware AirWatch SDK Plugin for Apache Cordova Instructions Add AirWatch Functionality to Enterprise Applicataions with SDK Plugins VMware AirWatch SDK Plugin fr Apache Crdva Instructins Add AirWatch Functinality t Enterprise Applicatains with SDK Plugins v1.2 Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using

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

Homework: Populate and Extract Data from Your Database

Homework: Populate and Extract Data from Your Database Hmewrk: Ppulate and Extract Data frm Yur Database 1. Overview In this hmewrk, yu will: 1. Check/revise yur data mdel and/r marketing material frm last week's hmewrk- this material will later becme the

More information

IBM Cognos TM1 Web Tips and Techniques

IBM Cognos TM1 Web Tips and Techniques Tip r Technique IBM Cgns TM1 Web Tips and Prduct(s): IBM Cgns TM1 Area f Interest: Develpment IBM Cgns TM1 Web Tips and 2 Cpyright Cpyright 2008 Cgns ULC (frmerly Cgns Incrprated). Cgns ULC is an IBM Cmpany.

More information

Cntents 1 Intrductin Kit Cntents Requirements Installatin Gesture Sensr Kit Hardware and Jumper Settings De

Cntents 1 Intrductin Kit Cntents Requirements Installatin Gesture Sensr Kit Hardware and Jumper Settings De Thin Film Pyrelectric IR Gesture Sensr Demnstratr Kit Fr lw pwer, high perfrmance gesture cntrl User Guide Versin 1.0 Dcument Revisin 1.00 20 th February 2012 Cntents 1 Intrductin... 3 1.1 Kit Cntents...

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

Sircon User Guide A Guide to Using the Vertafore Sircon Self-Service Portal

Sircon User Guide A Guide to Using the Vertafore Sircon Self-Service Portal Sircn User Guide A Guide t Using the Vertafre Sircn Self-Service Prtal September 2016 Versin 16.8 Cntents Cntents Using the Vertafre Sircn Self-Service Prtal... 3 Lg In... 3 Hme Page... 4 Lg New Cases...

More information

Employee Self Service (ESS) Quick Reference Guide ESS User

Employee Self Service (ESS) Quick Reference Guide ESS User Emplyee Self Service (ESS) Quick Reference Guide ESS User Cntents Emplyee Self Service (ESS) User Quick Reference Guide 4 Intrductin t ESS 4 Getting Started 5 Prerequisites 5 Accunt Activatin 5 Hw t activate

More information

Evidence.com 1.30 Release Notes

Evidence.com 1.30 Release Notes Evidence.cm 1.30 Release Ntes December 8, 2015 Dcument Versin 1.3 Apple is a trademark f Apple, Inc., registered in the U.S. and ther cuntries. Windws is a registered trademark f Micrsft Crpratin in the

More information

Model WM100. Product Manual

Model WM100. Product Manual Mdel WM100 Prduct Manual Table f Cntents Sectin Page 1. Hardware... 3 2. Sftware... 4 3. Features... 5 4. Installatin... 6 5. App Devices... 9 6. App Rms... 12 7. App Scenes... 14 8. App Setup... 18 Cntents

More information

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson Tips and Tricks in Wrd 2000 Part II Presented by Carla Trgersn (cnt2@psu.edu) 1. using styles Styles are used t create frmatting shrtcuts s yu can create a dcument that has frmatting cnsistency. Fr example,

More information

TaiRox Mail Merge. Running Mail Merge

TaiRox Mail Merge. Running Mail Merge TaiRx Mail Merge TaiRx Mail Merge TaiRx Mail Merge integrates Sage 300 with Micrsft Wrd s mail merge functin. The integratin presents a Sage 300 style interface frm within the Sage 300 desktp. Mail Merge

More information

The VMs in the CIS VLab (Virtual Lab) We will be using a number of different Virtual Machines (VMs) in VLab for this course.

The VMs in the CIS VLab (Virtual Lab) We will be using a number of different Virtual Machines (VMs) in VLab for this course. Lab 1: Using the CIS 192 Lab Resurces The purpse f this lab is t becme familiar with the CIS Lab resurces and t start practicing sme ld and new Linux cmmands. Resurces The Opus server CIS VLab (Virtual

More information

ONLINE GRANT APPLICATION INSTRUCTIONS

ONLINE GRANT APPLICATION INSTRUCTIONS Overview ONLINE GRANT APPLICATION INSTRUCTIONS This dcument is designed t prvide grant applicants with instructins fr use f the Fundant Grant Lifecycle Manager applicatin fr grants frm the Oberktter Fundatin.

More information

Employee Self Service (ESS) FAQs

Employee Self Service (ESS) FAQs Emplyee Self Service (ESS) FAQs ESS User Access & Lgin/Passwrd Inf Upgrade Changes t ESS Recently we upgrades t versin 10 f ur HR/Payrll system which includes the Emplyee Self Service (ESS) mdule. Just

More information

SmartPass User Guide Page 1 of 50

SmartPass User Guide Page 1 of 50 SmartPass User Guide Table f Cntents Table f Cntents... 2 1. Intrductin... 3 2. Register t SmartPass... 4 2.1 Citizen/Resident registratin... 4 2.1.1 Prerequisites fr Citizen/Resident registratin... 4

More information

PopLink Version Changes Please contact us at with any questions

PopLink Version Changes Please contact us at with any questions PpLink Versin Changes Please cntact us at sftware@lpz.rg with any questins PpLink 2.4: Release Date December 15, 2012 Nte that studbk databases frm previus versins f PpLink can be read by PpLink 2.4. PpLink

More information

Web of Science Institutional authored and cited papers

Web of Science Institutional authored and cited papers Web f Science Institutinal authred and cited papers Prcedures written by Diane Carrll Washingtn State University Libraries December, 2007, updated Nvember 2009 Annual review f paper s authred and cited

More information

Power365. Quick Start Guide

Power365. Quick Start Guide Pwer365 Quick Start Guide 12/2017 Table f Cntents Prject Types... 4 The Email Frm File Prject Type... 4 The Email With Discvery Prject Type... 4 The Integratin Prject Type... 4 The Integratin Pr Prject

More information

Tips For Customising Configuration Wizards

Tips For Customising Configuration Wizards Tips Fr Custmising Cnfiguratin Wizards ver 2010-06-22 Cntents Overview... 2 Requirements... 2 Applicatins... 2 WinSCP and Putty... 2 Adding A Service T An Existing Wizard... 3 Gal... 3 Backup Original

More information

Using the DOCUMENT Procedure to Expand the Output Flexibility of the Output Delivery System with Very Little Programming Effort

Using the DOCUMENT Procedure to Expand the Output Flexibility of the Output Delivery System with Very Little Programming Effort Paper 11864-2016 Using the DOCUMENT Prcedure t Expand the Output Flexibility f the Output Delivery System with Very Little Prgramming Effrt ABSTRACT Rger D. Muller, Ph.D., Data T Events Inc. The DOCUMENT

More information

UPGRADING TO DISCOVERY 2005

UPGRADING TO DISCOVERY 2005 Centennial Discvery 2005 Why Shuld I Upgrade? Discvery 2005 is the culminatin f ver 18 mnths wrth f research and develpment and represents a substantial leap frward in audit and decisin-supprt technlgy.

More information

Ascii Art Capstone project in C

Ascii Art Capstone project in C Ascii Art Capstne prject in C CSSE 120 Intrductin t Sftware Develpment (Rbtics) Spring 2010-2011 Hw t begin the Ascii Art prject Page 1 Prceed as fllws, in the rder listed. 1. If yu have nt dne s already,

More information

Lab 5 Sorting with Linked Lists

Lab 5 Sorting with Linked Lists UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C WINTER 2013 Lab 5 Srting with Linked Lists Intrductin Reading This lab intrduces

More information

Smart Edit Manual. Page 1

Smart Edit Manual. Page 1 Smart Edit Manual Page 1 Table f Cntents Symbls... 7 User Interface... 8 Reddts at a Glance... 10 Page Search Panel... 11 First Steps in SmartEdit... 12 Opening the Start Page... 12 Editing Pages... 12

More information

Qlik Sense Mobile February 2018 (version 1.3.1) release notes

Qlik Sense Mobile February 2018 (version 1.3.1) release notes Release Ntes Qlik Sense Mbile February 2018 (versin 1.3.1) release ntes qlik.cm Table f Cntents Overview 3 What s new in Qlik Sense Mbile February 2018? 3 Cmpatibility 3 Bug fixes 4 Qlik Sense Mbile February

More information

Release Notes. Version

Release Notes. Version Release Ntes Versin 7.0.10 Release Ntes: Helm CONNECT Cpyright and Publicatin Infrmatin Published by: Helm Operatins 400-1208 Wharf St. Victria, BC V8W 3B9 Canada Cpyright 2015 by Helm Operatins All rights

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects Nvember 22, 2017 - Versin 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Relius Documents ASP Checklist Entry

Relius Documents ASP Checklist Entry Relius Dcuments ASP Checklist Entry Overview Checklist Entry is the main data entry interface fr the Relius Dcuments ASP system. The data that is cllected within this prgram is used primarily t build dcuments,

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

CSR Supervisor Manual Donation Manager. 1/1/2016 SAVERS Ginine Mizerski

CSR Supervisor Manual Donation Manager. 1/1/2016 SAVERS Ginine Mizerski CSR Supervisr Manual Dnatin Manager 1/1/2016 SAVERS Ginine Mizerski Lcatin-Varius CSR Supervisr Manual Dnatin Manager Table f Cntents 1. Intrductin... 2 2. Special Pickups and TBD Dnatins... 2 2.1 Special

More information

USER MANUAL. RoomWizard Administrative Console

USER MANUAL. RoomWizard Administrative Console USER MANUAL RmWizard Administrative Cnsle Cntents Welcme... 3 Administer yur RmWizards frm ne lcatin... 3 Abut This Manual... 4 Setup f the Administrative Cnsle... 4 Installatin... 4 The Cnsle Windw...

More information

HOW TO live-stream softball on a minimal budget

HOW TO live-stream softball on a minimal budget HOW TO live-stream sftball n a minimal budget It s a ne-camera live-stream with the pssiblity f changing scre, uts, innings. Yu can als add additinal graphics r live cmmentary. WHAT DO YOU NEED A laptp

More information

Student Guide. Where can I print? Charges for Printing & Copying. Top up your Print Credits Online, whenever you like

Student Guide. Where can I print? Charges for Printing & Copying. Top up your Print Credits Online, whenever you like Student Guide Where can I print? Yu can print ut yur wrk frm any Printer acrss Campus; in the Libraries, Open Access areas and IT Labs (which are available t wrk in when they are nt being used fr teaching).

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

STIDistrict AL Rollover Procedures

STIDistrict AL Rollover Procedures 2009-2010 STIDistrict AL Rllver Prcedures General Infrmatin abut STIDistrict Rllver IMPORTANT NOTE! Rllver shuld be perfrmed between June 25 and July 25 2010. During this perid, the STIState applicatin

More information

COP2800 Homework #3 Assignment Spring 2013

COP2800 Homework #3 Assignment Spring 2013 YOUR NAME: DATE: LAST FOUR DIGITS OF YOUR UF-ID: Please Print Clearly (Blck Letters) YOUR PARTNER S NAME: DATE: LAST FOUR DIGITS OF PARTNER S UF-ID: Please Print Clearly Date Assigned: 15 February 2013

More information

SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS

SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS T ABLE OF C ONTENTS Table f Cntents... 1 Intrductin... 2 Target Audience... 2 Objectives... 2 Other Resurces... 2 Assumptins... 2 Verify

More information

Marian Online 2 Instructor Manual 12

Marian Online 2 Instructor Manual 12 Marian Online 2 Instructr Manual 12 Glssary At first glance, the Glssary activity seems t be just a list f wrds and definitins that students can view. In fact, the Glssary activity is a pwerful tl fr activ

More information

Making spreadsheets machine-readable. With Dave from ScraperWiki

Making spreadsheets machine-readable. With Dave from ScraperWiki Making spreadsheets machine-readable With Dave frm ScraperWiki Abut Me / Databaker David McKee dragn@scraperwiki.cm @dragndave n Twitter Backgrund Databaker takes cmplicated published spreadsheets, and

More information

Max 8/16 and T1/E1 Gateway, Version FAQs

Max 8/16 and T1/E1 Gateway, Version FAQs Frequently Asked Questins Max 8/16 and T1/E1 Gateway, Versin 1.5.10 FAQs The FAQs have been categrized int the fllwing tpics: Calling Calling Cmpatibility Cnfiguratin Faxing Functinality Glssary Q. When

More information

Qlik Sense Mobile November 2018

Qlik Sense Mobile November 2018 Qlik Sense Mbile Nvember 2018 Release ntes Q L I K. C O M T A B L E O F C O N T E N T S Overview 2 Cmpatibility 2 Bug fixes 3 Qlik Sense Mbile Nvember 2018 (versin 1.7.1) 3 Qlik Sense Mbile September 2018

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

Keeping Dynamics GP Secure

Keeping Dynamics GP Secure Keeping Dynamics GP Secure February 23, 2017 Charles Allen Senir Managing Cnsultant BKD Technlgies callen@bkd.cm T Receive CPE Credit Participate in entire webinar Answer attendance checks & plls when

More information

AT&T Corporate Voice Mail Unified Messaging (CVM-UM) Quick Start

AT&T Corporate Voice Mail Unified Messaging (CVM-UM) Quick Start AT&T Crprate Vice Mail Unified Messaging (CVM-UM) Quick Start 2011 AT&T Intellectual Prperty. All rights reserved. AT&T the lg and all ther AT&T marks cntained herein are trademarks f AT&T Intellectual

More information