Create Your Own Report Connector

Size: px
Start display at page:

Download "Create Your Own Report Connector"

Transcription

1 Create Yur Own Reprt Cnnectr Last Updated: 15-December 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 cde. We'll use the XtraReprtsCnnectr as a starting pint. Creating A Reprt Cnnectr This is the entire versin 1.1 Reprt Cnnectr cde fr DevExpress XtraReprts, with cmmentary: /* * Cpyright (c) by VersaReprts, LLC. All rights, including the rights t cpy and distribute, are reserved. */ using System; using System.Cllectins.Generic; using System.Text; using System.Cllectins.Specialized; using VersaReprts.ReprtCnnectr; using System.IO; using System.Drawing; using System.Reflectin; using DevExpress.XtraReprts.UI; using DevExpress.XtraPrinting; using DevExpress.XtraReprts.Parameters; The abve highlighted lines are ging t change based n the requirements f the reprt designer that yu are using. The next sectin defines the reprt cnnectr class. The highlighted inheritance is required and prvides the prperties yu'll need t wrk with the reprt t be run. namespace XtraReprtsCnnectr public class XtraReprtsDllCnnectr : ReprtsCnnectrInterface /***** Public inherited prperties public string ReprtFileLcatin = Reprt file lcatin (if stred n disk); public byte[] ReprtFileCntents = Reprt cntents (if stred in database); public string[] ExtraDllsTLad = Full paths f extra DLLs t lad (if needed); public string ExtraInf = extra inf defined when reprt was cnfigured public string DataSurceInf = Data surce infrmatin (if needed); public string UserName = user name fr reprt's database cnnectin (if needed) public string Passwrd = passwrd fr reprt's database cnnectin (if needed) public string ReprtName = The reprt's name; public string ReprtDescriptin = The reprt's descriptin; public string ScheduleName = The name f the schedule using this reprt; public string SaveFrmat = The frmat f the reprt utput t generate (defined in the cnfiguratin files); public List<ReprtParameterValue> Parameters = list f reprt parameter values (include descriptin, type, and name f parameter in reprt) */ The prperties are listed in the cmments, but let's prvide sme mre depth:

2 ReprtFileLcatin - the lcatin that was selected by the reprt administratr fr the reprt file (e.g., the DLL r RPT file). If reprts f this type are stred in the database, this value will be the name f the file and yu are expected t use the reprt cntents stred as a byte array in ReprtFileCntents (see belw). If ReprtFileCntents is null, then yu are expected t use the reprt cntents stred at the lcatin specified by ReprtFileLcatin. ReprtFileCntents - the actual cntents f the reprt that the reprt administratr upladed when the reprt was defined t URS. If reprts f this type are stred n disk, this value will be null and yu are expected t get the reprt's cntents via the ReprtFileLcatin prperty. ExtraDllsTLad - an array f strings listing abslute paths t any DLLs that are ging t be needed t run a reprt f this type. This array gets set if the site administratr did nt lad these DLLs int the GAC. ExtraInf - this is the string prvided by the reprt administratr wh administers this reprt and is smething the reprt cnnectr writer will want t define. Fr example, if yur reprt is stred in a DLL, this prperty might define the fully qualified reprt class name t instantiate. DataSurceInf, UserName, Passwrd - these are used fr reprts that can vary their data surce (e.g., Crystal Reprts allws yu t change the data surce at run-time). The structure fr DataSurceInf -- like ExtraInf -- is defined by the reprt cnnectr writer; UserName and Passwrd are the user name and passwrd fr the data surce cnnectin and are specified nly if needed. ReprtName - the name f the reprt as defined by the reprt administratr when the reprt is created within URS. ReprtDescriptin - the descriptin string defined by the reprt administratr when the reprt is created within URS. ScheduleName - the name f the schedule defined by the reprt's scheduler when the reprt is scheduled within URS. SaveFrmat - this prperty is a string defining the finished reprt frmat t be created. The pssible chices are defined in the reprt_types.xml file fr each type f reprt that can be run by URS. Often, this prperty will cntain the file extensin fr the resulting reprt utput file (e.g., pdf); this string is limited t 10 characters. Parameters - a List f type ReprtParameterValue that cntains the parameters and values t be passed t the reprt as defined by the reprt scheduler fr this reprt. ReprtParameterValue is a class cntaining the fllwing prperties: Descriptin - the prmpt string used t request the value frm the reprt scheduler. ParameterNameInReprt - the string cntaining the parameter's name as specified in the reprt t be run. Type - an enumeratin which can be ne f Blean, Integer, Flat, String, Chices, Date_And_Time and specifies the type f parameter that was defined in URS (which might be a different type than the reprt's parameter needs, s yu'll want t be careful f that). Value - an bject cntaining the actual value t be passed t the reprt. The bject's value will match what the Type says it will be, with the exceptin that a Chices parameter results in a String value.

3 CreateReprt is the first rutine that yu will verride and is the main rutine t run a reprt: public verride bl CreateReprt(ut string errrmessages, ut byte[] results) errrmessages = string.empty; results = new byte[] ; string filename = string.empty; The first step is t get the reprt cntents int a place where yu can actually run them: if (ReprtFileCntents!= null) filename = Path.GetTempFileName(); File.Mve(fileName, Path.ChangeExtensin(fileName, Path.GetExtensin(ReprtFileLcatin))); File.WriteAllBytes(fileName, ReprtFileCntents); else filename = ReprtFileLcatin; catch (Exceptin ex) errrmessages = "Errr writing reprt DLL t a temprary file in XtraReprtDllCnnectr. Errr is: " + ex.message; return false; Sme reprt types will need t reside n disk t run, but might be stred in the database fr security and cntrl. If the reprt file is stred in the database but needs t run frm disk, use ReprtFileLcatin as the name f the resulting file and ReprtFileCntents as the cntents t be written int that file t run the reprt. Sme reprts can just be run directly frm memry, s either lad the reprt frm ReprtFileLcatin r use the byte array in ReprtFileCntents, whichever applies. If the reprt is stred n disk and runs frm there, just read ReprtFileLcatin t get the reprt. This cnnectr handles bth situatins: the reprt DLL stred in the database r the reprt DLL stred n the web server's disk. This particular reprt type is a DLL, s it is written t a temprary file and then laded by file name. At the same time, any additinal DLLs that aren't in the GAC that are defined in reprt_types.xml are als laded. The highlighted line belw shws that we are using ExtraInf as the name f the reprt class t instantiate. XtraReprt rpt = null; MemryStream mem = new MemryStream(); // Nw get the DLL assembly Assembly thisassembly = Assembly.LadFile(fileName); freach (string dll in ExtraDllsTLad) Assembly.LadFrm(dll); rpt = (XtraReprt)thisAssembly.CreateInstance(ExtraInf);

4 catch (Exceptin ex) errrmessages = "Errr lading reprt DLL r extra DLLs in XtraReprtDllCnnectr. Errr is: " + ex.message; return false; if (rpt == null) errrmessages = "Errr lading the class/methd fr this reprt. Was the reprt cnfigured crrectly fr the class/methd needed?"; return false; In the next sectin, we search fr the reprt parameters by name and assign values t them frm the Parameters list that was described abve. // If parameters defined fr reprt, then see if we can pass them if (Parameters.Cunt > 0) int parmspassed = 0; fr (int i = 0; i < rpt.parameters.cunt; i++) fr (int j = 0; j < Parameters.Cunt; j++) if (rpt.parameters[i].name.equals(parameters[j].parameternameinreprt, StringCmparisn.CurrentCultureIgnreCase)) rpt.parameters[i].value = Parameters[j].Value; parmspassed++; rpt.requestparameters = false; In the next sectin, we take the SaveFrmat value t determine the way t run/exprt the reprt. Fr the standard XtraReprtsCnnectr included with URS, SaveFrmat is the resulting file extensin and we use that t determine hw t run the reprt. XtraReprts allws us t save all resulting utput t a MemryStream, s we use that fr this cnnectr; ther reprt designers may nt have this feature, s yu will instead save the utput t disk and then read it back int memry. The end result f this step must be an array cntaining the reprt utput that is then passed back t the calling rutine fr string in URS. if (SaveFrmat.Equals("xls", StringCmparisn.CurrentCultureIgnreCase)) // Set XLS-specific exprt ptins. XlsExprtOptins xlsoptins = rpt.exprtoptins.xls; xlsoptins.shwgridlines = true; xlsoptins.usenativefrmat = true; // Exprt the reprt t XLS. rpt.exprttxls(mem); else if (SaveFrmat.Equals("pdf", StringCmparisn.CurrentCultureIgnreCase)) // Set PDF-specific exprt ptins. PdfExprtOptins pdfoptins = rpt.exprtoptins.pdf; pdfoptins.cmpressed = true; pdfoptins.imagequality = PdfJpegImageQuality.High; pdfoptins.dcumentoptins.title = ReprtName; pdfoptins.dcumentoptins.subject = ReprtDescriptin;

5 pdfoptins.shwprintdialgonopen = false; // Exprt the reprt t PDF. rpt.exprttpdf(mem); else if (SaveFrmat.Equals("html", StringCmparisn.CurrentCultureIgnreCase)) // Set HTML-specific exprt ptins. HtmlExprtOptins htmloptins = rpt.exprtoptins.html; htmloptins.exprtmde = HtmlExprtMde.SingleFile; htmloptins.title = ReprtName; rpt.exprtthtml(mem); else if (SaveFrmat.Equals("txt", StringCmparisn.CurrentCultureIgnreCase)) // Set TXT-specific exprt ptins. TextExprtOptins txtoptins = rpt.exprtoptins.text; txtoptins.separatr = ","; txtoptins.qutestringswithseparatrs = true; rpt.exprtttext(mem); else if (SaveFrmat.Equals("rtf", StringCmparisn.CurrentCultureIgnreCase)) // Set RTF-specific exprt ptins. RtfExprtOptins rtfoptins = rpt.exprtoptins.rtf; rtfoptins.exprtmde = RtfExprtMde.SingleFile; rpt.exprttrtf(mem); else if (SaveFrmat.Equals("tiff", StringCmparisn.CurrentCultureIgnreCase)) // Set Image-specific exprt ptins. ImageExprtOptins imgoptins = rpt.exprtoptins.image; imgoptins.exprtmde = ImageExprtMde.SingleFilePageByPage; imgoptins.frmat = System.Drawing.Imaging.ImageFrmat.Tiff; imgoptins.reslutin = 150; rpt.exprttimage(mem); else if (SaveFrmat.Equals("prnx", StringCmparisn.CurrentCultureIgnreCase)) rpt.createdcument(false); rpt.printingsystem.savedcument(mem); results = mem.tarray(); catch (Exceptin ex) errrmessages = "Exceptin detected running reprt in XtraReprtDllCnnectr: " + ex.message; return false; Make sure yu delete any files yu created befre exiting. The rutine returns true if the reprt ran successfully and the results cntains a byte array with the reprt's utput. Otherwise, the rutine returns false and sets errrmessages t cntain the errr messages t place int the URS lg fr assisting the reprt administratr with debugging what went wrng. finally if (filename.length > 0) // Delete the temp file cntaining the DLL

6 File.Delete(fileName); catch ; return true; The next rutine that yu can verride gets the list f parameters frm the reprt. Sme reprt designers will supprt this, thers will nt. If nt, yu dn't need t verride the rutine, because the base class handles this situatin prperly. The resulting List f type ReprtParameter cntains the infrmatin URS needs t schedule a reprt. ReprtParameter is a class with the fllwing prperties: Descriptin - the prmpt string used t request the value frm the reprt scheduler. Sme reprt types have a parameter descriptin separate frm the parameter name. Others d nt. ParameterNameInReprt - the string cntaining the parameter's name as specified in the reprt. Type - an enumeratin which can be ne f Blean, Integer, Flat, String, Chices, Date_And_Time and specifies the type f parameter t define in URS (which might be a different type than the reprt's parameter needs, s yu'll want t be careful f that). Yu shuld derive this value frm the type f parameter that is defined in the reprt (e.g., if the parameter in the reprt is a string, use String as the value fr Type). RangeLw - the minimum value that can be assigned by the scheduler t this parameter. This prperty nly applies t Integer and Flat parameter types. RangeHigh - the maximum value that can be assigned by the scheduler t this parameter. This prperty nly applies t Integer and Flat parameter types. Chices - sme reprt types supprt a list f chice strings fr a parameter and this array wuld be used t stre thse chice values. public verride List<ReprtParameter> GetReprtParameters(ut string errrmessage) errrmessage = string.empty; List<ReprtParameter> parms = new List<ReprtParameter>(); string filename = string.empty; string destinatinfilename = string.empty; XtraReprt rpt = null; Same setup as abve: we need t get t the reprt and lad all the necessary DLLs t cntinue. See the ntes abve fr specifics. if (ReprtFileCntents!= null) filename = Path.GetTempFileName(); File.Mve(fileName, Path.ChangeExtensin(fileName, Path.GetExtensin(ReprtFileLcatin)));

7 File.WriteAllBytes(fileName, ReprtFileCntents); else filename = ReprtFileLcatin; catch (Exceptin ex) errrmessage = "Errr writing reprt DLL t a temprary file in XtraReprtDllCnnectr. Errr is: " + ex.message; return null; MemryStream mem = new MemryStream(); // Nw get the DLL assembly Assembly thisassembly = Assembly.LadFile(fileName); freach (string dll in ExtraDllsTLad) Assembly.LadFrm(dll); rpt = (XtraReprt)thisAssembly.CreateInstance(ExtraInf); catch (Exceptin ex) errrmessage = "Errr lading reprt DLL r extra DLLs in XtraReprtDllCnnectr. Errr is: " + ex.message; return null; if (rpt == null) errrmessage = "Errr lading the class/methd fr this reprt. Was the reprt cnfigured crrectly fr the class/methd needed?"; return null; Fr each parameter fund in the reprt, create a ReprtParameter bject, fill in the apprpriate prperties, and then add it t the List. freach (Parameter field in rpt.parameters) ReprtParameter parm = new ReprtParameter(); parm.parameternameinreprt = field.name; if (field.descriptin == null field.descriptin.length == 0) parm.descriptin = field.name; else parm.descriptin = field.descriptin; switch (field.parametertype) case ParameterType.Blean: parm.type = ReprtParameterType.Blean; case ParameterType.DateTime: parm.type = ReprtParameterType.Date_And_Time; case ParameterType.String: parm.type = ReprtParameterType.String; case ParameterType.Decimal: case ParameterType.Duble: case ParameterType.Flat: parm.type = ReprtParameterType.Flat; parm.rangehigh = flat.maxvalue;

8 parm.rangelw = flat.minvalue; case ParameterType.Int32: parm.type = ReprtParameterType.Integer; parm.rangehigh = flat.maxvalue; parm.rangelw = flat.minvalue; parms.add(parm); catch (Exceptin ex) errrmessage = "Errr interpreting parameters in XtraReprtDllCnnectr. Errr is: " + ex.message; return null; Finally, dispse the reprt r delete any reprt files and return the parameters. finally if (rpt!= null) rpt.dispse(); if (filename.length > 0) // Delete the temp file cntaining the DLL File.Delete(fileName); catch ; return parms; Cmpile the cnnectr int a DLL as described in the URS Installatin Guide and place it n yur URS server in the bin directry fr the URS web site as well as the ReprtsRunner directry in the URS installatin. Hw des Reprt_Types.xml Wrk With This? Once yu have a reprt cnnectr, yu'll need t tell the reprt_types.xml file abut it. The structure f this file is described in the URS Installatin Guide, but we'll talk abut it in mre depth here. This is a typical reprt_types.xml created fr the DevExpress XtraReprts Reprt Cnnectr described abve: <?xml versin="1.0" encding="utf-8"?> <reprt_types> <reprt_type id="xtrareprtsdll" name="devexpress XtraReprts (DLL file)"> <cnnectr assembly="c:\versareprts\cnnectrs\xtrareprtscnnectr\bin\debug\xtrareprtscnnectr.dll" class="xtrareprtscnnectr.xtrareprtsdllcnnectr"/> <reprt_file extensins=".dll" strage="disk" extra_inf_prmpt="class Name f Reprt" pass_cnnectin="false" /> <supprting_assemblies>

9 v8.3\surces\devexpress.dll\devexpress.charts.v8.3.cre.dll" /> v8.3\surces\devexpress.dll\devexpress.data.v8.3.dll" /> v8.3\surces\devexpress.dll\devexpress.utils.v8.3.dll" /> v8.3\surces\devexpress.dll\devexpress.web.v8.3.dll" /> v8.3\surces\devexpress.dll\devexpress.xtracharts.v8.3.dll" /> v8.3\surces\devexpress.dll\devexpress.xtraprinting.v8.3.dll" /> v8.3\surces\devexpress.dll\devexpress.xtrareprts.v8.3.dll" /> v8.3\surces\devexpress.dll\devexpress.xtrareprts.v8.3.web.dll" /> </supprting_assemblies> <utput_frmats> <frmat extensin="pdf" name="acrbat Reader" mime_type="applicatin/pdf" native="false" icn="images/pdf.png" /> <frmat extensin="html" name="html Web Page" mime_type="text/html" native="false" icn="images/html.png"/> <frmat extensin="rtf" name="rich Text File" mime_type="applicatin/rtf" native="false" icn="images/rtf.png"/> <frmat extensin="xls" name="excel 2003" mime_type="applicatin/vnd.ms-excel" native="false" icn="images/xls.png" /> <frmat extensin="prnx" name="preview-only Frmat" native="true" display_page="xtrareprtsviewer.aspx?id=0" icn="images/reprt.png" /> </utput_frmats> </reprt_type> </reprt_types> Let's tie sme pieces tgether nw. In this line, the name attribute is what appears in the Reprt Definitin Wizard when a reprt administratr selects this type f reprt. <reprt_type id="xtrareprtsdll" name="devexpress XtraReprts (DLL file)"> This line cntains the reprt cnnectr's cmpiled assembly lcatin and the class defined in it: <cnnectr assembly="c:\versareprts\cnnectrs\xtrareprtscnnectr\bin\debug\xtrareprtscnnectr.dll" class="xtrareprtscnnectr.xtrareprtsdllcnnectr"/> The fllwing line defines sme additinal infrmatin that makes it pssible fr URS t prperly call and run a reprt f this type: <reprt_file extensins=".dll" strage="disk" extra_inf_prmpt="class Name f Reprt" pass_cnnectin="false" /> In the abve line, the extensins are the list f extensins that are acceptable fr a reprt f this type. XtraReprts als supprts a reprt frmat that can be sent withut cding (RPX frmat), but we didn't use that fr this cnnectr, s the extensins are nly ".dll". Because we're using DLL-based reprts fr this cnnectr, we need t knw the fully-qualified class name f the reprt in the DLL that is ging t be prvided t the Reprt Definitin Wizard.

10 The <supprting_assemblies> blck defines the array f strings that end up in the ExtraDllsTLad prperty that's inherited by the Reprt Cnnectr class yu create. The <utput_frmats> blck is critical and defines everything yu'll need t knw when yu generate the reprt in yur cnnectr rutines. Let's lk at tw f the lines and see why this is s critical: <frmat extensin="xls" name="excel 2003" mime_type="applicatin/vnd.ms-excel" native="false" icn="images/xls.png" /> <frmat extensin="prnx" name="preview-only Frmat" native="true" display_page="xtrareprtsviewer.aspx?id=0" icn="images/reprt.png" /> In these lines, the extensin attribute is a value that culd be placed int the SaveFrmat prperty that the class inherits. Fr exprted frmats that dn't require a special viewer page (e.g., Excel, PDF), yu will set the native prperty t "false". Fr frmats that have a "native" viewer (e.g., XtraReprts includes a viewer cntrl that yu can embed in a web page), the native prperty will be set t "true" and the reprt will be saved in a frmat that's "native" t this viewer. Hw Shuld I Debug My Reprt Cnnectr? Once yu have the reprt cnnectr cde cmpiled, we recmmend that yu test the cde with ReprtsRunner perating in interactive mde. If ReprtsRunner has been started as a service, temprarily stp the service and run ReprtsRunner frm a Cmmand Prmpt windw. Then use Visual Studi t attach t the ReprtsRunner prgram and debug yur cnnectr as needed. Cpyright 2009, by VersaReprts, LLC. All rights -- including the right t cpy, distribute, r disseminate -- are reserved.

ROCK-POND REPORTING 2.1

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

More information

Assignment #5: Rootkit. ECE 650 Fall 2018

Assignment #5: Rootkit. ECE 650 Fall 2018 General Instructins Assignment #5: Rtkit ECE 650 Fall 2018 See curse site fr due date Updated 4/10/2018, changes nted in green 1. Yu will wrk individually n this assignment. 2. The cde fr this assignment

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

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

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

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

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

More information

OO Shell for Authoring (OOSHA) User Guide

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

More information

TIBCO Statistica Options Configuration

TIBCO Statistica Options Configuration TIBCO Statistica Optins Cnfiguratin Sftware Release 13.3 June 2017 Tw-Secnd Advantage Imprtant Infrmatin SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

INSERTING MEDIA AND OBJECTS

INSERTING MEDIA AND OBJECTS INSERTING MEDIA AND OBJECTS This sectin describes hw t insert media and bjects using the RS Stre Website Editr. Basic Insert features gruped n the tlbar. LINKS The Link feature f the Editr is a pwerful

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

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

Properties detailed info There are a few properties in Make Barcode to set for the output of your choice.

Properties detailed info There are a few properties in Make Barcode to set for the output of your choice. Make Barcde Page 1/5 Make Barcde Descriptin Make Barcde let yu create a wide variety f different barcdes in different file frmats. Yu can add the barcde values as variable data frm metadata surces r by

More information

CSE 361S Intro to Systems Software Lab #2

CSE 361S Intro to Systems Software Lab #2 Due: Thursday, September 22, 2011 CSE 361S Intr t Systems Sftware Lab #2 Intrductin This lab will intrduce yu t the GNU tls in the Linux prgramming envirnment we will be using fr CSE 361S this semester,

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

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

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

Reading and writing data in files

Reading and writing data in files Reading and writing data in files It is ften very useful t stre data in a file n disk fr later reference. But hw des ne put it there, and hw des ne read it back? Each prgramming language has its wn peculiar

More information

Ephorus Integration Kit

Ephorus Integration Kit Ephrus Integratin Kit Authr: Rbin Hildebrand Versin: 2.0 Date: May 9, 2007 Histry Versin Authr Cmment v1.1 Remc Verhef Created. v1.2 Rbin Hildebrand Single Sign On (Remved v1.7). v1.3 Rbin Hildebrand Reprting

More information

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

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

More information

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

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

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

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

More information

TUTORIAL --- Learning About Your efolio Space

TUTORIAL --- Learning About Your efolio Space TUTORIAL --- Learning Abut Yur efli Space Designed t Assist a First-Time User Available t All Overview Frm the mment yu lg in t yur just created myefli accunt, yu will find help ntes t guide yu in learning

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

Upgrading Kaltura MediaSpace TM Enterprise 1.0 to Kaltura MediaSpace TM Enterprise 2.0

Upgrading Kaltura MediaSpace TM Enterprise 1.0 to Kaltura MediaSpace TM Enterprise 2.0 Upgrading Kaltura MediaSpace TM Enterprise 1.0 t Kaltura MediaSpace TM Enterprise 2.0 Assumptins: The existing cde was checked ut f: svn+ssh://mediaspace@kelev.kaltura.cm/usr/lcal/kalsurce/prjects/m ediaspace/scial/branches/production/website/.

More information

$ARCSIGHT_HOME/current/user/agent/map. The files are named in sequential order such as:

$ARCSIGHT_HOME/current/user/agent/map. The files are named in sequential order such as: Lcatin f the map.x.prperties files $ARCSIGHT_HOME/current/user/agent/map File naming cnventin The files are named in sequential rder such as: Sme examples: 1. map.1.prperties 2. map.2.prperties 3. map.3.prperties

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

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

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

from DDS on Mac Workstations

from DDS on Mac Workstations Email frm DDS n Mac Wrkstatins Intrductin This dcument describes hw t set email up t wrk frm the Datacn system n a Mac wrkstatin. Yu can send email t anyne in the system that has an email address, such

More information

Dashboard Extension for Enterprise Architect

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

More information

I. Introduction: About Firmware Files, Naming, Versions, and Formats

I. Introduction: About Firmware Files, Naming, Versions, and Formats I. Intrductin: Abut Firmware Files, Naming, Versins, and Frmats The UT-4500-A Series Upcnverters and DT-4500-A Series Dwncnverters stre their firmware in flash memry, which allws the system t uplad firmware

More information

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

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

More information

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

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

More information

Compliance Guardian 4. User Guide

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

More information

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

Click Studios. Passwordstate. RSA SecurID Configuration

Click Studios. Passwordstate. RSA SecurID Configuration Passwrdstate RSA SecurID Cnfiguratin This dcument and the infrmatin cntrlled therein is the prperty f Click Studis. It must nt be reprduced in whle/part, r therwise disclsed, withut prir cnsent in writing

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Cmp 541 Digital Lgic and Cmputer Design Spring 2016 Lab Prject (PART A): A Full Cmputer! Issued Fri 4/8/16; Suggested

More information

RxAXIS Security Module 09/25/2013

RxAXIS Security Module 09/25/2013 RxAXIS Security Mdule 09/25/2013 Lessn Title Intrductin: Security Mdule In this tutrial we are ging t lk at the Security Maintenance Mdule f the RxAXIS system. When used, this system gives emplyees access

More information

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

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

More information

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

KNX integration for Project Designer

KNX integration for Project Designer KNX integratin fr Prject Designer Intrductin With this KNX integratin t Prject Designer it is pssible t cntrl KNX devices like n/ff, dimming, blinds, scene cntrl etc. This implementatin is intended fr

More information

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2012 Lab 1 - Calculatr Intrductin In this lab yu will be writing yur first

More information

Arius 3.0. Release Notes and Installation Instructions. Milliman, Inc Peachtree Road, NE Suite 1900 Atlanta, GA USA

Arius 3.0. Release Notes and Installation Instructions. Milliman, Inc Peachtree Road, NE Suite 1900 Atlanta, GA USA Release Ntes and Installatin Instructins Milliman, Inc. 3424 Peachtree Rad, NE Suite 1900 Atlanta, GA 30326 USA Tel +1 800 404 2276 Fax +1 404 237 6984 actuarialsftware.cm 1. Release ntes Release 3.0 adds

More information

Setting up the ncipher nshield HSM for use with Kerberized Certificate Authority

Setting up the ncipher nshield HSM for use with Kerberized Certificate Authority Setting up the ncipher nshield HSM fr use with Kerberized Certificate Authrity Intrductin This dcument cntains instructins fr setting up ncipher nshield hardware security mdules (HSM) fr use with the Kerberized

More information

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY Accessing RefWrks Access RefWrks frm a link in the Bibligraphy/Citatin sectin f the Hurst Library web page (http://library.nrthwestu.edu) Create

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

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

Administrator's Guide

Administrator's Guide Sitecre CMS 5.3 t CMS 6 Database Cnversin Tl Administratr's Guide Installatin, cnfiguratin and usage guide fr Sitecre CMS administratrs. Table f Cntents Chapter 1 Intrductin... 3 1.1 Hw the Cnversin Tl

More information

Quick Installation Guide

Quick Installation Guide Oracle Strategic Operatinal Planning Release 3.5.1 Quick Installatin Guide Quick Installatin Guide This file cntains the fllwing sectins: Purpse... 1 System Requirements... 1 Server Cnfiguratin... 1 Client

More information

Dear Student, Here is a sample of how the immunization process will work for Fall 2018:

Dear Student, Here is a sample of how the immunization process will work for Fall 2018: Dear Student, As a service t all UTHSC students, beginning with the Fall 2018 term, Qualified First, Inc. is the newly named vendr f recrd fr all f yur immunizatins. This service will allw yu the ability

More information

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files.

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files. Interfacing t MATLAB Overview: Getting Started Basic Tutrial Interfacing with OCX Installatin GUI with MATLAB's GUIDE First Buttn & Image Mre ActiveX Cntrls Exting the GUI Advanced Tutrial MATLAB Cntrls

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

Using UB Stream and UBlearns

Using UB Stream and UBlearns Using UB Stream and UBlearns Instructrs can nw uplad vides/audi r create a vide using their webcam in UBLearns. There is a new mashup tl (MEDIAL) that allws yu t uplad yur media files t UB s streaming

More information

CodeSlice. o Software Requirements. o Features. View CodeSlice Live Documentation

CodeSlice. o Software Requirements. o Features. View CodeSlice Live Documentation CdeSlice View CdeSlice Live Dcumentatin Scripting is ne f the mst pwerful extensibility features in SSIS, allwing develpers the ability t extend the native functinality within SSIS t accmmdate their specific

More information

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar Wrd 2007 The Ribbn, the Mini tlbar, and the Quick Access Tlbar In this practice yu'll get the hang f using the new Ribbn, and yu'll als master the use f the helpful cmpanin tls, the Mini tlbar and the

More information

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

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

More information

ME Week 5 Project 2 ilogic Part 1

ME Week 5 Project 2 ilogic Part 1 1 Intrductin t ilgic 1.1 What is ilgic? ilgic is a Design Intelligence Capture Tl Supprting mre types f parameters (string and blean) Define value lists fr parameters. Then redefine value lists autmatically

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

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

1 Introduction Functions... 2

1 Introduction Functions... 2 Interface Descriptin API fr IPS Analytics Applicatins n the Axis ACAP Platfrm Cntents 1 Intrductin... 2 2 Functins... 2 3 Interfaces... 2 3.1 Cnfiguratin... 3 3.1.1 Interface C.1: Web cnfiguratr (IPS add-n)...

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

Planning, installing, and configuring IBM CMIS for Content Manager OnDemand

Planning, installing, and configuring IBM CMIS for Content Manager OnDemand Planning, installing, and cnfiguring IBM CMIS fr Cntent Manager OnDemand Cntents IBM CMIS fr Cntent Manager OnDemand verview... 4 Planning fr IBM CMIS fr Cntent Manager OnDemand... 5 Prerequisites fr installing

More information

The screenshots/advice are based on upgrading Controller 10.1 RTM to 10.1 IF6 on Win2003

The screenshots/advice are based on upgrading Controller 10.1 RTM to 10.1 IF6 on Win2003 Overview The screenshts/advice are based n upgrading Cntrller 10.1 RTM t 10.1 IF6 n Win2003 Other Interim Fix (IF) upgrades are likely t be similar, but the authr cannt guarantee that the dcumentatin is

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

CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0

CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0 TECHNICAL DOCUMENTATION CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0 AUGUST 2012 2012 CrwnPeak Technlgy, Inc. All rights reserved. N part f this dcument may be reprduced r transmitted

More information

Cloud Storage Migration Suite 1.1.0

Cloud Storage Migration Suite 1.1.0 Clud Strage Migratin Suite 1.1.0 User Guide Issued June 2018 Clud Strage Migratin Suite User Guide 1 Table f Cntents Abut Clud Strage Migratin Suite... 4 Overview f Basic Operatins in Clud Strage Migratin

More information

LAB 7 (June 29/July 4) Structures, Stream I/O, Self-referential structures (Linked list) in C

LAB 7 (June 29/July 4) Structures, Stream I/O, Self-referential structures (Linked list) in C LAB 7 (June 29/July 4) Structures, Stream I/O, Self-referential structures (Linked list) in C Due: July 9 (Sun) 11:59 pm 1. Prblem A Subject: Structure declaratin, initializatin and assignment. Structure

More information

I. Introduction: About Firmware Files, Naming, Versions, and Formats

I. Introduction: About Firmware Files, Naming, Versions, and Formats Updating Yur CTOG 250 Cmtech Traffic Optimizatin Gateway Firmware I. Intrductin: Abut Firmware Files, Naming, Versins, and Frmats The CTOG 250 Cmtech Traffic Optimizatin Gateway and its CDM 800 Gateway

More information

GETTING STARTED... 3 INSTALLATION... 3 VAULT EXPRESS... 4 CONFIGURE VAULT EXPRESS... 4 CONFIGURE VAULT... 7 CONFIGURE EXACT UPLOAD FILES...

GETTING STARTED... 3 INSTALLATION... 3 VAULT EXPRESS... 4 CONFIGURE VAULT EXPRESS... 4 CONFIGURE VAULT... 7 CONFIGURE EXACT UPLOAD FILES... Vault & Exact GETTING STARTED... 3 INSTALLATION... 3 VAULT EXPRESS... 4 CONFIGURE VAULT EXPRESS... 4 CONFIGURE VAULT... 7 CONFIGURE EXACT... 10 UPLOAD FILES... 11 UPLOAD FROM WINDOWS... 11 View Reprt Inf...

More information

Firmware Upgrade Wizard v A Technical Guide

Firmware Upgrade Wizard v A Technical Guide Firmware Upgrade Wizard v4.1.1 A Technical Guide Nvember 2015 Intrductin The Firmware Upgrade Wizard prvides the fllwing features: It supprts upgrading the firmware n designated devices, see Supprted devices.

More information

Programming Project: Building a Web Server

Programming Project: Building a Web Server Prgramming Prject: Building a Web Server Submissin Instructin: Grup prject Submit yur cde thrugh Bb by Dec. 8, 2014 11:59 PM. Yu need t generate a simple index.html page displaying all yur grup members

More information

Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installation

Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installation Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installatin Updated Aug 30, 2011 Server Requirements Hardware The hardware requirements are mstly dependent n the number f cncurrent users yu expect

More information

Business Directory. User Guide. User Guide Page 1

Business Directory. User Guide. User Guide Page 1 Business Directry CmmerceExtensins Business Directry User Guide User Guide Page 1 Business Directry CmmerceExtensins Imprtant Ntice CmmerceExtensins reserves the right t make crrectins, mdificatins, enhancements,

More information

Microsoft Excel Extensions for Enterprise Architect

Microsoft Excel Extensions for Enterprise Architect Excel Extensins User Guide Micrsft Excel Extensins fr Enterprise Architect Micrsft Excel Extensins fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Installatin... 4 Verifying

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

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

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

More information

Guide to getting started in J2ME for the Motorola A780 phone

Guide to getting started in J2ME for the Motorola A780 phone Guide t getting started in J2ME fr the Mtrla A780 phne This guide will take yu thrugh setting up a build envirnment fr J2ME in Windws and in writing a few sample applicatins fr the A780 phne. There are

More information

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

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

More information

SAS Viya 3.2 Administration: Mobile Devices

SAS Viya 3.2 Administration: Mobile Devices SAS Viya 3.2 Administratin: Mbile Devices Mbile Devices: Overview As an administratr, yu can manage a device s access t SAS Mbile BI, either by exclusin r inclusin. If yu manage by exclusin, all devices

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Designing a mdule with multiple memries Designing and using a bitmap fnt Designing a memry-mapped display Cmp 541 Digital

More information

Enterprise Installation

Enterprise Installation Enterprise Installatin Mnnit Crpratin Versin 3.6.0.0 Cntents Prerequisites... 3 Web Server... 3 SQL Server... 3 Installatin... 4 Activatin Key... 4 Dwnlad... 4 Cnfiguratin Wizard... 4 Activatin... 4 Create

More information

Aras Innovator 11. Client Settings for Chrome on Windows

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

More information

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

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

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

More information

Managing User Accounts

Managing User Accounts A variety f user types are available in Lighthuse Transactin Manager (LTM) with cnfigurable permissins that allw the Accunt Administratr and administratr-type users fr the accunt t manage the abilities

More information

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager Trubleshting Citrix- Published Resurces Cnfiguratin in VMware Identity Manager VMware Identity Manager A U G U S T 2 0 1 7 V1 Table f Cntents Overview... 1 Supprted Versins f Cmpnents... 1 Prerequisites...

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

Tips & Tricks Data Entry Tool How to import files from Excel or Access into the DET

Tips & Tricks Data Entry Tool How to import files from Excel or Access into the DET Tips & Tricks Data Entry Tl Hw t imprt files frm Excel r Access int the DET 2 This dcument explains hw data prepared in ther prgrams (e.g. Excel, Oracle, Access,...) can be imprted t the Data Entry Tl.

More information

Extended Traceability Report for Enterprise Architect

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

More information

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

1 Getting and Extracting the Upgrader

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

More information

User Guide. Document Version: 1.0. Solution Version:

User Guide. Document Version: 1.0. Solution Version: User Guide Dcument Versin: 1.0 Slutin Versin: 365.082017.3.1 Table f Cntents Prduct Overview... 3 Hw t Install and Activate Custmer Satisfactin Survey Slutin?... 4 Security Rles in Custmer Satisfactin

More information

CSCI L Topics in Computing Fall 2018 Web Page Project 50 points

CSCI L Topics in Computing Fall 2018 Web Page Project 50 points CSCI 1100-1100L Tpics in Cmputing Fall 2018 Web Page Prject 50 pints Assignment Objectives: Lkup and crrectly use HTML tags in designing a persnal Web page Lkup and crrectly use CSS styles Use a simple

More information

DUO LINK 4 APP User Manual V- A PNY Technologies, Inc. 1. PNY Technologies, Inc. 34.

DUO LINK 4 APP User Manual V- A PNY Technologies, Inc. 1. PNY Technologies, Inc. 34. 34. 1. Table f Cntents Page 1. Prduct Descriptin 4 2. System Requirements 5 3. DUO LINK App Installatin 5 4. DUO LINK App Mving Screens 7 5. File Management 5.1. Types f views 8 5.2. Select Files t Cpy,

More information

Installing Photran with Eclipse (MinGW or Cygwin)

Installing Photran with Eclipse (MinGW or Cygwin) Installing Phtran with Eclipse (MinGW r Cygwin) Phtran is an integrated develpment envirnment (IDE) and refactring tl fr Frtran. Phtran is a cmpnent f Eclipse, an pen-surce develpment platfrm fr building,

More information

Wave IP 4.5. CRMLink Desktop User Guide

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

More information

Oracle BPM 10rR3. Role Authorization resolution using groups. Version: 1.0

Oracle BPM 10rR3. Role Authorization resolution using groups. Version: 1.0 Oracle BPM 10rR3 Rle Authrizatin reslutin using grups Versin: 1.0 OBPM 10gR3 Rle Authrizatin reslutin using grups Cntents Intrductin... 3 Sme BPM & LDAP cncepts... 4 Cnfiguring OBPM t use different grup

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

TN How to configure servers to use Optimise2 (ERO) when using Oracle

TN How to configure servers to use Optimise2 (ERO) when using Oracle TN 1498843- Hw t cnfigure servers t use Optimise2 (ERO) when using Oracle Overview Enhanced Reprting Optimisatin (als knwn as ERO and Optimise2 ) is a feature f Cntrller which is t speed up certain types

More information