SouthWare s XFD Files and AcuXFD Converter Technology

Size: px
Start display at page:

Download "SouthWare s XFD Files and AcuXFD Converter Technology"

Transcription

1 SouthWare s XFD Files and AcuXFD Converter Technology July 28, 2004 Copyright SouthWare Innovations, Inc.

2 Table of Contents SouthWare s AcuXFD Technology Overview SouthWare Policies Regarding XFDs Standard XFDs Non-Standard XFDs SalesMark records ExecuMate II statistics Extended Data files Install SouthWare s AcuXFD Files Tips on Using AcuODBC Limitations Tips on Setup Security Notes Example Uses Microsoft Excel Microsoft Query Optional Configuration File Entry for XFD Directory... 9 Special Notes How to find the XFD file you need Special Data Dictionary Fields SouthWare Excellence Series 1

3 SouthWare s AcuXFD Technology Overview Do you want to integrate other database technology with your SouthWare Excellence Series system? With the technology available from Acucobol you have seamless access to other technologies such as relational databases and ODBC connectivity. Acucobol uses translation data dictionaries called "Extended File Descriptors (XFDs)" to map the relationships between standard Acucobol Vision file systems and other types of file systems. An XFD for a file translates the "record-oriented" file structure of COBOL data into the "row/column-oriented" structure used by relational databases. XFDs are produced from the COBOL File Definitions (FDs) by Acucobol s compiler and generally utilize the technical data name structure found in the FDs. These XFD data names are used in the Structured Query Language (SQL) commands typically utilized by database file systems. Acucobol provides the following technology options that utilize these XFD data dictionaries: Acu4GL for INFORMIX Relational Database Management Systems Allows seamless access to INFORMIX databases - dynamically generates SQL queries as alternatives to the normal COBOL data access. Acu4GL for ORACLE Relational Database Management Systems Allows seamless access to ORACLE databases - dynamically generates SQL queries as alternatives to the normal COBOL data access. Acu4GL for SYBASE Relational Database Management Systems Allows seamless access to SYBASE databases - dynamically generates SQL queries as alternatives to the normal COBOL data access. Acu4GL for ODBC (Open Data Base Connectivity) databases Allows seamless access to ODBC databases - dynamically generates SQL queries as alternatives to the normal COBOL data access. Acu4GL for Microsoft SQL databases Allows seamless access to MSSQL databases - dynamically generates SQL queries as alternatives to the normal COBOL data access. AcuODBC Allows Acucobol Vision file systems to be accessed as ODBC databases by ODBC-compliant products such as Microsoft Word, Excel, Query, and Access. With SouthWare s AcuXFD Converter Technology you improve Acucobol s standard XFD technology: You get XFDs that have the same non-technical data names used by SouthWare s ReportMate tool. Instead of a data name like "AR-CUS-NUMBER" you get a name like "CustomerNumber" which is easier for users to identify. This is also the only way to get upper/lowercase names since Acucobol s compiler always puts uppercase names into XFDs. The actual name of the XFD file and the external file name referenced by the XFD is modified to reflect SouthWare s use of a file name that is prefixed by the Company ID. You can create custom XFDs for the variable Extended Data files you define in SouthWare. SouthWare Policies Regarding XFDs The XFD s that are released will have a name that matches the exact name of the external file name of the file. In earlier revisions of SouthWare (prior to Revision 8) XFD s were often named after the FD Copy Library instead of the External File Name. SouthWare Excellence Series 2

4 When XFDs are used with the Acu4GL product to create database files (i.e. MS-SQL, Oracle or Sybase) the whole definition of the database tables is related to the XFDs and any changes to an XFD has the potential to make the data in the Database tables inaccessible. Both the SouthWare programs that create, update and read this data and the other utilities that access the data will be impacted by any change to the XFD. This means that SouthWare and Developers that make any change to a file s FD or Select logic will have to be very careful to identify these changes so that corresponding changes can be made to the XFD and to Database schema related to this file. In most cases any of these changes will require either some manual changes to the schema of the database on the users computer or in the case of replicated data from the Database Director product to create a new replicated file that matches the modified file definition (as defined in both the FDs and XFDs). Standard XFDs 1. SouthWare produces the standard XFD files by compiling a special program for each application with the necessary compiler commands. This special program is named xx4gldd where "xx" is the application prefix (such as AP, AR, GL, etc.). The only purpose of the program is to provide an easy way to compile one program that contains the files to be made available for the application. The standard XFD files contain technical specifications about keys, field positioning, field types, field descriptions, etc. Notes: The files included for each application are those that SouthWare believes are likely to need XFD Data Dictionaries. The list of available XFDs may change in future releases. See the list of Standard XFDs later in this document. Certain files require special handling. For example, there are files such as the G/L interface file that utilize the same FD for multiple external files, but need to have multiple XFDs. SouthWare performs manual steps to handle these special situations. 2. SouthWare runs the AXACUXFD converter program to convert all the XFD files for standard SouthWare applications. The program asks for: - a file name of a text file that contains the names of the FDs to convert (names should include the pathname if FDs are in different directories) - the directory for the XFDs The program then: a. builds a sort file of SouthWare Data Dictionary file names and their related FD names b. for each FD builds a temporary file with the FD data names and any special COBOL datanames assigned specifically for XFD use c. adds to the temporary file the related descriptions from the SouthWare Data Dictionary d. reads each XFD file and - replaces the external file name with the name contained in the SouthWare Data Dictionary file record - finds each COBOL dataname, looks for it in the temporary file, and replaces the COBOL dataname with the adjusted SouthWare description (remove any spaces or subscripts from the Data Dictionary description). If it doesn t find a match, it leaves the COBOL dataname as the field description. SouthWare Excellence Series 3

5 BEFORE (RCUST.XFD) # rcust.xfd - generated by ACUCOBOL-GT v # Generated Tue Oct 24 07:41: # [Identification Section] XFD,04,AR-CUSTOMER-FILE,RCUST, ,00621,006 # [Key Section],0,0,000 AR-CUS-NUMBER,1,020, AR-CUS-GROUP-NUMBER AR-CUS-NUMBER,1,033, AR-CUS-SALESMAN AR-CUS-NAME,1,030,00023 AR-CUS-NAME,1,0,065 AR-CUS-ZIP-CODE,1,020,00200 AR-CUS-PHONE-NUMBER # [Condition Section] 000 # [Field Section] 0068,00072, ,00621,16,00621,+00,000,999,AR-CUSTOMER-RECORD 00000,00020,16,00020,+00,000,999,AR-CUS-GROUP-ID 00000,000,16,000,+00,000,000,AR-CUS-GROUP-NUMBER 000,000,16,000,+00,000,999,AR-CUSTOMER-KEY 000,000,16,000,+00,000,000,AR-CUS-NUMBER 00020,00033,16,00033,+00,000,999,AR-CUS-SALESMAN-KEY 00020,00003,16,00003,+00,000,000,AR-CUS-SALESMAN 00023,00030,16,00030,+00,000,000,AR-CUS-NAME 00053,022,16,022,+00,000,999,AR-CUS-ADDRESS (etc.) AFTER (RCUST.XFD) # rcust.xfd - generated by ACUCOBOL-GT v # Generated Tue Oct 24 07:41: # # [Identification Section] XFD,04,AR-CUSTOMER-FILE,RCUST,12 ## Modified: 10/24/00 07:46:30 by SouthWare's AcuXFD Converter ## Input xfd File Name: rcust.xfd ## Output xfd File Name: rcust.xfd ## FD COPY FILE Name: ARCUSTOM.FD AR-CUSTOMER-FILE ## Data Dictionary #: AR Name: Customer File ## RM External File Name: xxxrcust 00621,00621,006 # [Key Section],0,0,000 CustomerNumber,1,020, GroupNumber CustomerNumber,1,033, SalespersonNumber CustomerName,1,030,00023 CustomerName,1,0,065 ZipCode,1,020,00200 PhoneNumber # [Condition Section] 000 # [Field Section] 0068,00072, ,00621,16,00621,+00,000,999,AR-CUSTOMER-RECORD 00000,00020,16,00020,+00,000,999,AR-CUS-GROUP-ID 00000,000,16,000,+00,000,000,GroupNumber 000,000,16,000,+00,000,999,AR-CUSTOMER-KEY 000,000,16,000,+00,000,000,CustomerNumber 00020,00033,16,00033,+00,000,999,AR-CUS-SALESMAN-KEY 00020,00003,16,00003,+00,000,000,SalespersonNumber 00023,00030,16,00030,+00,000,000,CustomerName 00053,022,16,022,+00,000,999,AR-CUS-ADDRESS (etc.) This process takes quite a while to run because of the volume of data, and it requires access to source code. That s why SouthWare runs this process so you don t need to. 3. SouthWare then releases the converted files as the SouthWare Standard XFDs for standard files. These contain the same technical information as the standard XFDs except: - the external file name reflects the file name found in each company sub-directory - the field names utilize the SouthWare Data Dictionary descriptions instead of the COBOL data names. Non-Standard XFDs 4. There are also non-standard files in SouthWare that allow you to define the descriptions and types of fields and change them at any time. These include Extended Data files, SalesMark record files, and ExecuMate II statistics files. SouthWare Excellence Series 4

6 SalesMark records SalesMark records are given a generic XFD (msupp.xfd) with data names such as: F1-30ALPHA for the 1st field (30 chars) F6-20ALPHA for the 6th field (20 chars) F13-8NUMERIC for the 13th field (8 digits) etc. The different types of records (Client, Prospect, etc.) have different field names within SouthWare, but the record types are all in the same file. This "msupp.xfd" file is distributed with the other standard XFDs. We chose not to create multiple XFDs since all records of all types will always appear when you access data with a product such as AcuODBC (since AcuODBC can t screen records). In some products you could create queries or forms with specific field names for a particular record type, then use record selection criteria to include only records that match the type. ExecuMate II statistics ExecuMate II statistics records are given a generic XFD (xmst2.xfd) with data names such as: AMOUNT-1 for statistics amount 1 AMOUNT-2 for statistics amount 2 etc. The different types of statistics have different field names within SouthWare, but the types are all in the same file. This "xmst2.xfd" file is distributed with the other standard XFDs. We chose not to create multiple XFDs since all records of all types will always appear when you access data with a product such as AcuODBC (since AcuODBC can t screen records). In some products you could create queries or forms with specific field names for a particular record type, then use record selection criteria to include only records that match the type. Extended Data files The creation of specific XFDs related to each Extended Data file is handled on your system at the same time that the SouthWare Data Dictionary is updated for these custom fields. When you define Extended Data fields you are asked if you want to update the ReportMate Data Dictionary when you exit the program. When you say "Yes" the program moves the descriptions and other information to SouthWare s Data Dictionary. If you have loaded the SouthWare Extended Data templates (xdmaster.tem, xdtrans.tem, xdhist.tem and xdusrkey.tem) into your SouthWare run directory (example: c:\swrun} the program will then try to create appropriate XFDs for your Extended Data record types. The program checks to see if there is a default configuration XFD-DIRECTORY. If there is not a default directory the converter program asks you to enter the directory for the XFDs to be created. The program then: - Removes all XFD files for Extended Data. - Creates an XFD file for each related file in the Data Dictionary based on the information in the Data Dictionary. The naming convention for the XFD matches the SouthWare filename: SouthWare Excellence Series 5

7 Install SouthWare s AcuXFD Files To use SouthWare s AcuXFD Technology you need the following components installed: Standard SouthWare XFDs should be loaded into a separate XFD directory (or directories). Because it will be necessary to manage future changes to XFD files it is suggested that only XFDs that are actually being used be loaded into the users XFD Directory. (See Note on Page 3). The distribution media has several subdirectories that correspond to different SouthWare Applications. For example: ap, ar and gl. The XFD files that correspond to each application are in that subdirectory. In addition each sub-directory includes an additional sub-directory orig.xfds that contains the XFD files that were created by the AcuCorp compiler before they were modified by replacing the field names with the ReportMate field names. The orig.xfds files should not be needed, but are available for backup and debugging purposes. A properly-installed Acucobol product (such as AcuODBC or AcuODBC Server) that utilizes XFDs should be ready to run. If you need XFDs for Extended Data files: - The xdmaster.tem, xdtrans.tem, xdhist.tem and xdusrkey.tem template files must be loaded into your run directory (example c:\swrun) Optionally you should set up the default XFD directory in your Acucobol configuration file (see separate section in this document). Here are suggested steps to accomplish this setup: 1. Create the XFD subdirectory(ies) on your system. If you will load all XFDs into a single directory Use a name such as "SWXFD" to make it easily identifiable. MKDIR C:\SWXFD or mkdir /usr/swxfd If you will load XFDs into multiple directories Be aware that the more XFD Files you have in a single directory the slower performance will be. It is recommended that you create a subdirectory that contains only those XFD Files that you will actually be using.... Anther option is to combine the xfd files for multiple applications into a single directory. Remember that the more XFD Files you have in a single sub-directory the slower the ODBC processes will execute. 2. Copy the XFD files from the SouthWare media into the new directory(ies). The distribution media for the XFD files includes application subdirectories. In addition under each subdirectory there is an additional subdirectory (orig.xfd) that contains the XFD files that were produced by the compiler before they were modified to include the ReportMate descriptions. COPY D:\ap\*.XFD C:\SWAPXFD COPY D:\ar\*.XFD C:\SWARXFD SouthWare Excellence Series 6

8 COPY D:\gl\*.XFD C:\SWGLXFD.... or corresponding UNIX commands 3. Copy the Extended Data template files to your run directory: COPY D:\*.tem C:\swrun 4. Load your AcuCorp product as per the AcuCorp documentation 5. Add the XFD-DIRECTORY directive to your Acucobol configuration file as explained in a later section of this document. Tips on Using AcuODBC AcuODBC provides ODBC drivers that allow ODBC products to access Acucobol Vision files via XFD mapping. With AcuODBC you can easily access SouthWare data from Microsoft Windows applications such as Microsoft Word, Excel, Access, and MS Query. Other Windows products may work with AcuODBC, but you should test them with AcuODBC and SouthWare files before assuming you can use them. See the "XFD Files - AcuODBC Connection Notes" section in this document for a list of errors we experienced. Limitations There is no limit of XFD files per directory, but the more XFD files that you have in a single directory the slower accessing the records will be. If you followed our suggested installation procedures you created multiple separate directories to load all the XFDs. In SouthWare s testing we encountered limitations in the ODBC standard that might prevent you from accessing large records such as Excellence Period History - the records are too large for ODBC. See the "XFD Files - AcuODBC Connection Notes" section in this document for a list of errors we experienced. You may also encounter other undocumented limitations. Tips on Setup Install AcuODBC as described in the AcuODBC documentation. You must set up Data Source Names (DSN) through the Windows Control Panel. We recommend the following setup: Open the Windows Control Panel and then open Administrative Tools and double-click on ODBC Data Sources. Depending on the version of Windows you have, ODBC Data Sources may be accessible from the control panel. Set up a Master Data Source Name for each XFD directory - Select to "Add" User DSN as the Driver - Select AcuODBC or AcuODBC Driver). - Enter a Data Source Name - Example: SouthWare IS and SV Files for DM Company" - Enter the XFD Directory - Example: C:\SWISXFD and C:\SWSVXFD - Enter the Data Directory SouthWare Excellence Series 7

9 - Example: C:\SWRUN\DM for the DM Company. If you will be accessing any AL files via ODBC, you should add C:\SWRUN to the Data Directory list. - For Data File Extention enter.fil It is not necessary to access the other tabs unless you have installed AcuODBC Server or AcuServer. NOTE: If you have multi-companies, it is easier to create a separate User DNS for each company. It is also important to create each company s XD XFD s in a separate directory to ensure that the fields defined are accurate. Security Notes With the AcuODBC driver and a compatible ODBC product you can access any SouthWare files for which you have an XFD. All SouthWare application security features are circumvented by ODBC!!! If you allow a user access to SouthWare files via AcuODBC you may only control their access by using non-southware methods such as: - removing XFDs for files they shouldn t see - removing lines from XFDs for fields they shouldn t see - creating separate XFD directories and Data Sources that contain only XFDs they should be able to use - using security or permission features available with your operating system or ODBC product The AcuODBC driver allows a user to create a Data Source that allows write permission ("N"o to Read-Only). If you write to SouthWare files via AcuODBC you are solely responsible for the validation of the data!!!! SouthWare programs are not in control of changes you make with ODBC, and you could create errors that are unrecoverable and unsupportable. WE RECOMMEND THAT YOU DO NOT USE AcuODBC TO WRITE TO SOUTHWARE FILES!!! If you find it necessary to ignore this recommendation, we strongly advise that you research the creating and updating of these records in the SouthWare source code to make sure that you are not creating problems in the SouthWare data files that will be very difficult to trace and fix!!! Example Uses Here are some notes on using AcuODBC in Microsoft Windows products. Please see the "Working with Windows Applications" chapter in the AcuODBC documentation for detailed instructuions on how to access data via other Microsoft products. Microsoft Excel (spreadsheet) Here s how to access SouthWare data from within a Microsoft Excel spreadsheet: - Position the cursor in the cell that should contain the first incoming data field Select the Data via Microsoft Query SouthWare Excellence Series 8

10 - Select Data, Import External Data, New Database Query (this calls the Microsoft Query function) - Select the appropriate SouthWare Data Source to Use ("SouthWare I/S and S/V Files for DM Company" in our example above) - A list of the SouthWare Table Names (files) then appears (see the last section in this document for a description of each file). - Select to Add the Table you want to use, then Close the list. - A scrolling list of the fields contained in the file appears within Microsoft Query. Select each field you want to send to the spreadsheet by double-clicking on the field in the list. Each field you select will appear as a column on the bottom of the screen. - After you have selected all fields to be sent to the spreadsheet you may add selection Criteria if you want to include only selected records. Send the data back to the spreadsheet - When you re ready to send the columns of data back to the spreadsheet select File, Return Data to Microsoft Excel from the menu. - The data is placed into columns of the spreadsheet. - Now you re ready to use it! To Refresh SouthWare data in a spreadsheet - If you want to get current values for the SouthWare data: - position the cursor within one of the cells containing SouthWare data - select Data, Refresh Data This will update the cells that were originally created from SouthWare data. Microsoft Query (inquiry tool) (See the "Select the Data via Microsoft Query" notes under Microsoft Excel.) Note: When you install Microsoft Office you must select to install Data Access files in order to get MS Query loaded onto your system. Optional Configuration File Entry for XFD Directory You may create a line in your Acucobol configuration file that defines the directory that contains your XFD files. This directory is used by the SouthWare Extended Data XFD build process to know where to put the XFDs. If you don t create this configuration line the process will ask you to define the directory each time you run it. Note: If you loaded your XFDs into multiple directories you should pick the directory where you want Extended Data XFDs to go. Use any text editor to edit the Acucobol configuration file (default name of "cblconfi") in the "etc" directory on your system. Enter the following line: XFD-DIRECTORY = directory where directory is the full pathname to the directory for the XFD files. For example, on a UNIX system you might add the entry: XFD-DIRECTORY = /usr/swrun/swqqxfd SouthWare Excellence Series 9

11 On a DOS/Windows system you might add the entry: XFD-DIRECTORY = C:\swrun\SWqqXFD Special Notes How to find the XFD file you need - Access SouthWare s Environment Manager (XX05) - View files for a specific application - The XFD name will match the SouthWare filename NOTE: Most SouthWare files have a corresponding XFD file. There are some applications and files where SouthWare has not created a corresponding XFD file (examples include: Notes files, TaskWise task details and certain AL files). Special Data Dictionary Fields: There may be a field that is viewable in a SouthWare program or in the SouthWare Data Dictionary that does not exist in the XFD file. Often, SouthWare has added special data dictionary fields to enhance ReportMate and other SouthWare tools. These fields are either calculated fields or fields that exist in other files. Accessing the Environment Manager (XX05) and viewing a Data Dictionary field will help you to determine if that field actually exists in a file. If a field does not exist in the file it will have a Cobol Dataname that begins with WS. This information exists in the SouthWare Data Dictionary and can be printed on a ReportMate report using RM02 as the primary file. SouthWare Excellence Series 10

Acu4GL COBOL-to-RDBMS Interface

Acu4GL COBOL-to-RDBMS Interface Acu4GL COBOL-to-RDBMS Interface EXECUTIVE OVERVIEW Acu4GL is a patented interface technology designed to bridge the worlds of third-generation COBOL and fourth-generation Structured Query Language (SQL).

More information

Acucorp and ACUCOBOL-GT are registered trademarks of Acucorp, Inc.

Acucorp and ACUCOBOL-GT are registered trademarks of Acucorp, Inc. SouthWare SQLTools NOTICE The information in this document is subject to change without notice. SouthWare Innovations, Inc. assumes no responsibility for any errors that may appear in this documentation.

More information

SouthWare Excellence Series. Rev 16 Platform Release Notice

SouthWare Excellence Series. Rev 16 Platform Release Notice SouthWare Excellence Series Rev 16 Platform Release Notice Printed 5/31/2016 Contents Introduction... 3 Deadline for Installing the Rev 16 Platform... 4 Installation Notes... 5 Before You Load the Rev

More information

extend Release Notes

extend Release Notes extend 9.2.5 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS, the Micro

More information

Dynamics ODBC REFERENCE Release 5.5a

Dynamics ODBC REFERENCE Release 5.5a Dynamics ODBC REFERENCE Release 5.5a Copyright Manual copyright 1999 Great Plains Software, Inc. All rights reserved. This document may not, in whole or in any part, be copied, photocopied, reproduced,

More information

Crystal Reports. Overview. Contents. Open Database Connectivity (ODBC)

Crystal Reports. Overview. Contents. Open Database Connectivity (ODBC) Overview Contents This document focuses on technology and how it interacts with Crystal Reports (CR) 9 or later. This document is mostly theory but it is important to understand the concepts covered as

More information

SouthWare Excellence Series. Rev 14. Upgrade Release Notice

SouthWare Excellence Series. Rev 14. Upgrade Release Notice SouthWare Excellence Series Rev 14 Upgrade Release Notice June 26, 2008 Table of Contents Highlight Summary...................................................... 5 New Modules..........................................................

More information

User s Guide. Acu4GL. Version 8.1. Micro Focus (IP) Ltd Pacific Heights Blvd, Suite 150 San Diego, CA

User s Guide. Acu4GL. Version 8.1. Micro Focus (IP) Ltd Pacific Heights Blvd, Suite 150 San Diego, CA User s Guide Acu4GL Version 8.1 Micro Focus (IP) Ltd. 9920 Pacific Heights Blvd, Suite 150 San Diego, CA 92121 858.795.1900 Copyright Micro Focus (IP) Ltd, 1998-2008. All rights reserved. Acucorp, ACUCOBOL-GT,

More information

AcuConnect Versatile Remote COBOL Listener

AcuConnect Versatile Remote COBOL Listener AcuConnect Versatile Remote COBOL Listener EXECUTIVE OVERVIEW AcuConnect is a remote COBOL listener that lets you make the most efficient and strategic use of your existing computing resources. AcuConnect

More information

Oracle FLEXCUBE Universal Banking 12.0 Upload Adapter Development Guide. Release 1.0

Oracle FLEXCUBE Universal Banking 12.0 Upload Adapter Development Guide. Release 1.0 Oracle FLEXCUBE Universal Banking 12.0 Upload Adapter Development Guide Release 1.0 May 2012 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions... 3 1.4 Hypothetical Example

More information

Unix SQL Connection Option

Unix SQL Connection Option Unix SQL Connection Option This document provides instructions for installing, setting up and using the Unix SQL Connection Option. 10/20/2008 Unix SQL Connection Option 2 Table of Contents Unix SQL Connection

More information

Technical White Paper

Technical White Paper Technical White Paper Via Excel (VXL) Item Templates This technical white paper is designed for Spitfire Project Management System users. In this paper, you will learn how to create Via Excel Item Templates

More information

Paperless Office: Period End Processing LM-1020

Paperless Office: Period End Processing LM-1020 Paperless Office: Period End Processing LM-1020 Overview This Extended Solution allows printing of MAS 90 MAS 200 Period End reports in PDF Format and provides a Viewer utility for the viewing and deleting

More information

extend Release Notes

extend Release Notes extend 9.2.1 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2013. All rights reserved. MICRO FOCUS, the Micro

More information

Cognos (R) Application Development Tools

Cognos (R) Application Development Tools QTP Reference Type the text for the HTML TOC entry Type the text for the HTML TOC entry Type the text for the HTML TOC entry QTP REFERENCE Cognos (R) Application Development Tools PowerHouse (R) 4GL VERSION

More information

Adagio ODBC. Version 9.0A Second Edition from. Adagio is a registered trademark of Softrak Systems Inc.

Adagio ODBC. Version 9.0A Second Edition from. Adagio is a registered trademark of Softrak Systems Inc. Adagio ODBC Version 9.0A Second Edition from Trademark Adagio is a registered trademark of Softrak Systems Inc. All product names mentioned are trademarks or service marks of their respective owners. Copyright

More information

PBS SQL. Installation Guide. Passport Business Solutions V 12.05

PBS SQL. Installation Guide. Passport Business Solutions V 12.05 PBS SQL Installation Guide Passport Business Solutions V 12.05 Passport Business Solutions PBS 12.05.0x SQL Edition Installation Guide Updated 01/26/2018 If you have any comments or suggestions about this

More information

Life After Migration

Life After Migration Life After Migration Migration Solutions for HP e3000 Applications Chuck Edgin Solutions Architect Acucorp, Inc. 2003 Acucorp, Inc. All Rights Reserved. Agenda Introduction to Acucorp Migration solution

More information

Attaché Server ODBC Installation and User Guide

Attaché Server ODBC Installation and User Guide Attaché Server ODBC Installation and User Guide October 2014 Publication Number Publication Date Product Version Attaché Server version 1.0.0.96 Attaché Software Australia Pty Ltd ACN 002 676 511 ABN 32002676

More information

Upgrading from BizInsight to BizInsight 5.0

Upgrading from BizInsight to BizInsight 5.0 B I Z I N S I G H T 5. 0. 3 4. 4 Upgrading from BizInsight 4.0.70 to BizInsight 5.0 This document provides upgrade information about BizInsight 5.0 to customers running the existing BizInsight V4 version.

More information

WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version

WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version 23-1 - 04-18 Summary Part 1 - Report editor 1. Introduction... 13 2. How to create a report... 23 3. Data sources of a report... 43 4. Describing

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Copying, Pasting and Renaming Reports... 4 Creating and linking a report... 6 Auto e-mailing reports...

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

EDI PROCESSING INTERFACE MODULE... 1 EDI PROCESSING OVERVIEW... 3

EDI PROCESSING INTERFACE MODULE... 1 EDI PROCESSING OVERVIEW... 3 Table of Contents... 1 EDI PROCESSING OVERVIEW... 3 SETUP AND MAINTENANCE PROGRAMS... 14 EDITPM-... EDI TRADING PARTNER MAINTENANCE... 14 EDITPVM-... EDI TRADING PARTNER VENDOR MAINTENANCE.... 26 EDISVM-...

More information

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud.

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. This tutorial walks through the installation and configuration process to access data from

More information

InsightUnlimited Upgrades Best Practices. July 2014

InsightUnlimited Upgrades Best Practices. July 2014 InsightUnlimited Upgrades Best Practices July 2014 InsightUnlimited Version: 2012.2 and above Document Version: 1.1 Last Updated: July 29, 2014 Table of Contents Introduction... 4 Overview... 4 Audience...

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

www.insightsoftware.com for JD Edwards World and EnterpriseOne Version: 3.3 Last Updated: September 2, 2011 Contents 1. Architecture... 3 Overview... 3 Deployment... 4 Database Space... 4 Using This Guide...

More information

7. Run the TRAVERSE Data Migration Utility from TRAVERSE 10.2 into TRAVERSE 10.5.

7. Run the TRAVERSE Data Migration Utility from TRAVERSE 10.2 into TRAVERSE 10.5. Overview Use the TRAVERSE Data Migration Utility to convert and append OSAS 6.1x, 6.5x or 7.0x data to TRAVERSE data. Follow these steps to import OSAS 6.1x, 6.5x or 7.0x data into TRAVERSE: 1. Make sure

More information

Configuration of trace and Log Central in RTMT

Configuration of trace and Log Central in RTMT About Trace Collection, page 1 Preparation for trace collection, page 2 Types of trace support, page 4 Configuration of trace collection, page 5 Collect audit logs, page 19 View Collected Trace Files with

More information

Data Exchange 3. The easy way to turn your data into valuable information. VERSION 3.0

Data Exchange 3. The easy way to turn your data into valuable information. VERSION 3.0 Data Exchange 3 The easy way to turn your data into valuable information. VERSION 3.0 12-21-2017 DATA EXCHANGE 3 1 TABLE OF CONTENTS SECTION 1. Overview... 6 1.1. MAIN GOALS...6 1.2. How it Works...6 Data

More information

Cost Centre Categorisation User Guide

Cost Centre Categorisation User Guide Cost Centre Categorisation User Guide Table of contents Process overview... 1 Accessing the application and downloading the spreadsheet... 2 Adding filters... 4 Using the filters... 5 Adding/updating owner

More information

REPORTING Copyright Framework Private Equity Investment Data Management Ltd

REPORTING Copyright Framework Private Equity Investment Data Management Ltd REPORTING Copyright Framework Private Equity Investment Data Management Ltd - 2016 Table of Contents Standard Reports... 3 Standard Report Pack... 4 General Data Protection and Framework... 7 Partner Bank

More information

Activant FASPAC. FasData Exchange

Activant FASPAC. FasData Exchange Activant FASPAC FasData Exchange This class is designed for FASPAC Users familiar with: FASPAC system operations Database structures Data Views Microsoft Excel and / or Microsoft Access Other ODBC data

More information

UNIVERSITY OF CENTRAL FLORIDA Finance & Accounting Offline Journal Entry

UNIVERSITY OF CENTRAL FLORIDA Finance & Accounting Offline Journal Entry UNIVERSITY OF CENTRAL FLORIDA Finance & Accounting Offline Journal Entry Overview The Spreadsheet Journal Entry feature facilitates rapid data entry using Microsoft Excel giving you the ability to arrange

More information

CDR Database Copy or Migration to Another Server

CDR Database Copy or Migration to Another Server CDR Database Copy or Migration to Another Server Document ID: 66974 Contents Introduction Prerequisites Requirements Components Used Conventions Background Supported Data Sources Topology Copy the CDR

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2009 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without

More information

Attaching Codesoft 6 to an ODBC Database

Attaching Codesoft 6 to an ODBC Database Attaching Codesoft 6 to an ODBC Database 1. From your Main Menu Options, go into Merge then Create ODBC query. The following Dialog Box will appear. 2. Select the button with 3 dots ( ) on it. 3. The Data

More information

Extracting Data From The CMT/CS1000 database

Extracting Data From The CMT/CS1000 database Extracting Data From The CMT/CS1000 database This defines the process for extracting data from the CMT/CS1000 database and using this information in Excel spreadsheets. A similar process can be used for

More information

Technical White Paper

Technical White Paper Technical White Paper On Implementing IBM InfoSphere Change Data Capture for Sybase with a Remote Database Server Awajeet Kumar Arya(awajarya@in.ibm.com) CONTENTS Trademarks...03 Introduction...04 Overview...04

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

General Ledger Updated December 2017

General Ledger Updated December 2017 Updated December 2017 Contents About General Ledger...4 Navigating General Ledger...4 Setting Up General Ledger for First-Time Use...4 Setting Up G/L Parameters...5 Setting the G/L Parameters...6 Setting

More information

Defining an ODBC data source

Defining an ODBC data source Defining an ODBC data source Cisco IPIVR and ICM Environment ALINEiT LLC alineit.com OVERVIEW This guideline document provides the steps needed to create an ODBC data source for the Cisco IPIVR application.

More information

Relativity. User s Guide. Contents are the exclusive property of Municipal Software, Inc. Copyright All Rights Reserved.

Relativity. User s Guide. Contents are the exclusive property of Municipal Software, Inc. Copyright All Rights Reserved. Relativity User s Guide Contents are the exclusive property of Municipal Software, Inc. Copyright 2006. All Rights Reserved. Municipal Software, Inc. 1850 W. Winchester, Ste 209 Libertyville, IL 60048

More information

ACE Operation Manual

ACE Operation Manual ACE Operation Manual Elecsys Director ACE Operation Manual Product Information Full information about other Elecsys products is available on our website at www.elecsyscorp.com Useful Contact Information

More information

extend Release Notes

extend Release Notes extend 9.2.4 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2014. All rights reserved. MICRO FOCUS, the Micro

More information

Lab #3 Automating Installation & Introduction to Make Due in Lab, September 15, 2004

Lab #3 Automating Installation & Introduction to Make Due in Lab, September 15, 2004 Lab #3 Automating Installation & Introduction to Make Due in Lab, September 15, 2004 Name: Lab Time: Grade: /10 Error Checking In this lab you will be writing a shell script to automate the installation

More information

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1 MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

1. About AP Invoice Wizard

1. About AP Invoice Wizard 1. About AP Invoice Wizard Welcome to AP Invoice Wizard. We have developed this tool in response to demand from Oracle Payables users for a user friendly and robust spreadsheet tool to load AP Invoices

More information

Access Office Integration for Excel

Access Office Integration for Excel Access Office Integration for Excel Introduction The following document has been designed to guide you through the process of downloading Dimensions data in to Excel via the Access Office Integration tool.

More information

CDR Database Copy or Migration to Another Server

CDR Database Copy or Migration to Another Server CDR Database Copy or Migration to Another Server Document ID: 66974 Introduction Prerequisites Requirements Components Used Conventions Background Supported Data Sources Topology Copy the CDR Database

More information

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

More information

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ (( )) (( )) [ x x ] cdc communications, inc. [ x x ] \ / presents... \ / (` ') (` ') (U) (U) Gibe's UNIX COMMAND Bible ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The latest file from the Cow's

More information

emerchant API guide MSSQL quick start guide

emerchant API guide MSSQL quick start guide C CU us st toomme er r SUu Pp Pp Oo Rr tt www.fasthosts.co.uk emerchant API guide MSSQL quick start guide This guide will help you: Add a MS SQL database to your account. Find your database. Add additional

More information

Child Care Initiative Project (CCIP)

Child Care Initiative Project (CCIP) Child Care Initiative Project (CCIP) CCIP Database Export Instructions: Professional Development Profile Data Direct Service Form & Direct Service Short Form These instructions will help you to export

More information

1. ECI Hosted Clients Installing Release 6.3 for the First Time (ECI Hosted) Upgrading to Release 6.3SP2 (ECI Hosted)

1. ECI Hosted Clients Installing Release 6.3 for the First Time (ECI Hosted) Upgrading to Release 6.3SP2 (ECI Hosted) 1. ECI Hosted Clients........................................................................................... 2 1.1 Installing Release 6.3 for the First Time (ECI Hosted)...........................................................

More information

EDI PROCESSING INTERFACE MODULE... 1

EDI PROCESSING INTERFACE MODULE... 1 Table of Contents... 1 EDI PROCESSING OVERVIEW... 3 TRANSACTIONS PROCESSED:... 3 PRODUCT REQUIREMENTS:... 3 CUSTOMER TRANSACTION FLOW:... 3 VENDOR TRANSACTION FLOW... 4 SETUP PROCEDURE... 5 TRANSFER PROCEDURE...

More information

LSSP Corporation 1 PinPoint Document Management Initial Setup Guide - Advanced

LSSP Corporation 1 PinPoint Document Management Initial Setup Guide - Advanced INTRODUCTION This guide will go over some of the more advanced topics involved with setting up your PinPoint database. Every topic discussed in this guide is completely optional none of the following is

More information

Database Manual Suite Version 2.8. Page 1 of 82. Noventri Suite Database Manual SF REV 03 3/21/14

Database Manual Suite Version 2.8. Page 1 of 82. Noventri Suite Database Manual SF REV 03 3/21/14 Database Manual Suite Version 2.8 Page 1 of 82 Database Manual Table of Contents 1 Overview... 4 2 Database Image/Text General... 5 3 Data Text... 8 4 ODBC... 12 4.4 ODBC Connect... 13 4.4.1 General...

More information

Chapter 18 Outputting Data

Chapter 18 Outputting Data Chapter 18: Outputting Data 231 Chapter 18 Outputting Data The main purpose of most business applications is to collect data and produce information. The most common way of returning the information is

More information

Application Configurator - Summary of Changes. V June No changes

Application Configurator - Summary of Changes. V June No changes Application Configurator - Summary of Changes V14.8.1 June 2018 V14.8 June 2018 - ID 11696: Install - modified to only prompt to uninstall prior version when prior version is less than V14 - ID 14890:

More information

A. Local B. Module C. Regional D. Global. 2. What is the standard size of the 4GL screen?

A. Local B. Module C. Regional D. Global. 2. What is the standard size of the 4GL screen? The following sample questions are intended to give you an idea of the format and types of questions asked on the exam. Taking this assessment test can be a useful way for you to assess your skills and

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 Installation and Setup Guide Revised on 09/25/2014 TABLE OF CONTENTS ROCK-POND REPORTING 2.1... 1 SUPPORT FROM ROCK-POND SOLUTIONS... 2 ROCK-POND REPORTING OVERVIEW... 2 INFRASTRUCTURE

More information

Configuration Configuration

Configuration Configuration Falcon Hotlink Table Of Contents Configuration...1 Configuration...1 ODBC Driver...1 Installation...1 Configuration...2 Data Sources...2 Installation...2 Configuration...4 Hotlink.xls...4 Installation...4

More information

3-8 Sage 300 CRE: Office Connector Overview/Roundtable

3-8 Sage 300 CRE: Office Connector Overview/Roundtable 3-8 Sage 300 CRE: Office Connector Overview/Roundtable Presented By: Don Bannister Biltmore Construction Co, Inc. 3-8 Sage 300 CRE: Office Connector Overview/Roundtable - 1 Review Office Connector Launch

More information

Sage Installation and Administration Guide. May 2018

Sage Installation and Administration Guide. May 2018 Sage 300 2019 Installation and Administration Guide May 2018 This is a publication of Sage Software, Inc. 2018 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product

More information

Imagine. Create. Discover. User Manual. TopLine Results Corporation

Imagine. Create. Discover. User Manual. TopLine Results Corporation Imagine. Create. Discover. User Manual TopLine Results Corporation 2008-2009 Created: Tuesday, March 17, 2009 Table of Contents 1 Welcome 1 Features 2 2 Installation 4 System Requirements 5 Obtaining Installation

More information

Oracle Sourcing Support Helpdesk: Telephone: > Option

Oracle Sourcing Support Helpdesk: Telephone: > Option esourcing FAQ s Oracle Sourcing Support Helpdesk: Telephone: 021-4534777 -> Option 2.2.2 Email: oraclesourcingsupport@ervia.ie FAQ s Forgotten Password? Logging In and Accessing Tenders Acknowledging Intent

More information

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions...

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions... SPARC S INSTRUCTIONS For Version 1.1 UNITED STATES DEPARTMENT OF AGRICULTURE Forest Service By Todd Rivas December 29, 1999 TABLE OF CONTENTS WHAT IS SPARC S?... 1 Definition And History... 1 Features...

More information

Database Connectors Net Express/Server Express 5.1 Update 16. Release Notes

Database Connectors Net Express/Server Express 5.1 Update 16. Release Notes Database Connectors Net Express/Server Express 5.1 Update 16 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2018.

More information

Server Based Repositories

Server Based Repositories Enterprise Architect User Guide Series Server Based Repositories Author: Sparx Systems Date: 19/03/2018 Version: 1.0 CREATED WITH Table of Contents Server Based Repositories 3 Create a Project in a MariaDB

More information

C CURE 800/8000 REPORTS GUIDE. Version 9.1 REVISION A0

C CURE 800/8000 REPORTS GUIDE. Version 9.1 REVISION A0 C CURE 800/8000 Version 9.1 REPORTS GUIDE REVISION A0 Software House 70 Westview Street Lexington, MA 02421 http://www.swhouse.com Fax: 781-466-9550 Phone: 781-466-6660 C CURE 800/8000, apc, Software House,

More information

SAS/ACCESS Interface to R/3

SAS/ACCESS Interface to R/3 9.1 SAS/ACCESS Interface to R/3 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS/ACCESS 9.1 Interface to R/3: User s Guide. Cary, NC: SAS Institute

More information

BMC Remedy AR System change ID utility

BMC Remedy AR System change ID utility BMC Remedy AR System change ID utility The BMC Remedy AR System change ID utility enables you to change the IDs of certain objects. This document explains the purpose and usage of the utility. The BMC

More information

LSSP Corporation 1 PinPoint Document Management Initial Setup Guide - Advanced

LSSP Corporation 1 PinPoint Document Management Initial Setup Guide - Advanced INTRODUCTION This guide will go over some of the more advanced topics involved with setting up your database. Every topic discussed in this guide is completely optional for your database none of the following

More information

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee Financial Reporting Using Microsoft Excel Presented By: Jim Lee Table of Contents Financial Reporting Overview... 4 Reporting Periods... 4 Microsoft Excel... 4 SedonaOffice General Ledger Structure...

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

(Updated 29 Oct 2016)

(Updated 29 Oct 2016) (Updated 29 Oct 2016) 1 Class Maker 2016 Program Description Creating classes for the new school year is a time consuming task that teachers are asked to complete each year. Many schools offer their students

More information

Oracle FLEXCUBE Investor Servicing BIP Report Development Guide Release 12.0 April 2012 Oracle Part Number E

Oracle FLEXCUBE Investor Servicing BIP Report Development Guide Release 12.0 April 2012 Oracle Part Number E Oracle FLEXCUBE Investor Servicing BIP Report Development Guide Release 12.0 April 2012 Oracle Part Number E51528-01 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions...

More information

WebStudio User Guide. OpenL Tablets BRMS Release 5.18

WebStudio User Guide. OpenL Tablets BRMS Release 5.18 WebStudio User Guide OpenL Tablets BRMS Release 5.18 Document number: TP_OpenL_WS_UG_3.2_LSh Revised: 07-12-2017 OpenL Tablets Documentation is licensed under a Creative Commons Attribution 3.0 United

More information

DATABASE Tuning Release 4.2 User s Guide

DATABASE Tuning Release 4.2 User s Guide DATABASE Tuning Release 4.2 User s Guide ABOUT DATABASE TUNING...4 DATABASE TUNING S TECHNICAL SUPPORT...5 ENHANCEMENTS FEATURED IN THIS 4.2 RELEASE...6 FROM INSTALLATION TO MONITORING...7 ARCHITECTURE

More information

Ecocion Facility Management System Alex Anderson Niles Hacking Ryan Shipp June 16, 2015

Ecocion Facility Management System Alex Anderson Niles Hacking Ryan Shipp June 16, 2015 Ecocion Facility Management System Alex Anderson Niles Hacking Ryan Shipp June 16, 2015 1 Table of Contents 1. Introduction 2 1.1. Client Description 1.2. Product Vision 2. Requirements. 2 2.1. Functional

More information

Microsoft Dynamics GP. Extender User s Guide Release 9.0

Microsoft Dynamics GP. Extender User s Guide Release 9.0 Microsoft Dynamics GP Extender User s Guide Release 9.0 Copyright Copyright 2005 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user.

More information

Paycode Mass Update 2013

Paycode Mass Update 2013 Paycode Mass Update 2013 An application for Microsoft Dynamics GP 2013 Furthering your success through innovative business solutions Copyright Manual copyright 2016 Encore Business Solutions, Inc. Printed

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 5/6/2016) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 Before Starting - Is your software up to date?...

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

Service Minder Plus Features/Helpful Hints

Service Minder Plus Features/Helpful Hints Service Minder Plus Features/Helpful Hints This manual covers helpful hints and use of features. Note: These items will be addressed during the training sessions. This document is meant to be used as an

More information

InSync Service User Guide

InSync Service User Guide InSync Service User Guide Matrix Logic Corporation 1 Published by Matrix Logic Corporation Copyright 2011 by Matrix Logic Corporation All rights reserved. No part of the content of this manual may be reproduced

More information

Security by General Ledger Sub Account GL-1032

Security by General Ledger Sub Account GL-1032 Security by General Ledger Sub Account GL-1032 Overview This Extended Solution controls access to certain G/L Accounts by allowing you to list which Roles are associated with each General Ledger Sub Account.

More information

This document contains brief summaries of the enhancements and issues resolved in FIMS version

This document contains brief summaries of the enhancements and issues resolved in FIMS version FIMS 14.21 Release Notes Upgrade Overview This document contains brief summaries of the enhancements and issues resolved in FIMS version 14.21. Upgrading to FIMS 14.21 Host*Net clients are scheduled to

More information

Relativity Designer 2.2

Relativity Designer 2.2 Relativity Designer 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS, the Micro Focus

More information

Cobra Navigation Release 2011

Cobra Navigation Release 2011 Cobra Navigation Release 2011 Cobra Navigation - Rev.0.2 Date: November 27 2012 jmaas@flowserve.com Page 1 of 34 Contents Contents 1 Revision History... 5 2 Introduction.... 6 3 Cobra Login... 7 3.1 Initial

More information

Product Review: James F. Koopmann Pine Horse, Inc. SoftTree s SQL Assistant. Product Review: SoftTree s SQL Assistant

Product Review: James F. Koopmann Pine Horse, Inc. SoftTree s SQL Assistant. Product Review: SoftTree s SQL Assistant Product Review: James F. Koopmann Pine Horse, Inc. SoftTree s SQL Assistant Introduction As much as database vendors would like us to believe that databases are easy to use, databases in fact become more

More information

IceWarp Server Windows Installation Guide

IceWarp Server Windows Installation Guide IceWarp Unified Communications IceWarp Server Windows Installation Guide Version 12 Published on 10/6/2017 Contents IceWarp Server Windows... 4 Pre-requisites... 4 Launch Installer Wizard... 5 Select

More information

Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK

Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK Relativity Designer Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS, the Micro Focus

More information

HYPERION SYSTEM 9 BI+ ANALYTIC SERVICES RELEASE 9.2 ANALYTIC SQL INTERFACE GUIDE

HYPERION SYSTEM 9 BI+ ANALYTIC SERVICES RELEASE 9.2 ANALYTIC SQL INTERFACE GUIDE HYPERION SYSTEM 9 BI+ ANALYTIC SERVICES RELEASE 9.2 ANALYTIC SQL INTERFACE GUIDE Copyright 1998 2006 Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion H logo, and Hyperion s product

More information

Report Writing for. Course Guide

Report Writing for. Course Guide Report Writing for Contents INTRODUCTION TO CRYSTAL REPORT WRITING USING...1 Launching Crystal Reports...2 Getting Started/Preparing to Design a Crystal Report...6 Adding Fields...10 Inserting a Text Object...11

More information

Sage 300 ERP Intelligence Reporting Connector Advanced Customized Report Writing

Sage 300 ERP Intelligence Reporting Connector Advanced Customized Report Writing Sage 300 ERP Intelligence Reporting Connector Advanced Customized Report Writing Sage Intelligence Connector Welcome Notice This document and the Sage software may be used only in accordance with the accompanying

More information

Experian Pandora ODBC Installation & User Help

Experian Pandora ODBC Installation & User Help Experian Pandora ODBC Installation & User Help Version 5.9.0, 5.8.0 THE WORD EXPERIAN AND THE GRAPHICAL DEVICE ARE TRADEMARKS OF EXPERIAN AND REGISTERED IN THE EU, USA AND OTHER COUNTRIES. THIS DOCUMENT

More information