HTML/OS Tag Reference

Size: px
Start display at page:

Download "HTML/OS Tag Reference"

Transcription

1 HTML/OS Tag Reference c Appendix This appendix summarizes the HTML/OS tags used in this book. Each tag includes a brief description and its parameters. For information on other tags and a more complete description of each tag, please refer to the Official HTML/OS Tag Reference included with purchase of HTML/OS Professional. HTML/OS Tags with No Parameters CR Returns carriage-return character (ASCII 13). HTMLOS.POPUP Returns TRUE if page was launched from HTML/OS Desktop. HTMLOS.ICONPAGE Returns HTML/OS Desktop page. HTMLOS.CLICKED Returns name of submit button last clicked. ISGOODKEY Returns TRUE if a valid product has been registered. Otherwise returns FALSE. LF Returns line-feed newline character (ASCII 10). PAGE Returns current page. SYSSERVICE Returns current Web service; HTTP or HTTPS. SYSSTARTLINK Returns URL path to Start-link. Append with entry page name to build full Start-link. TAGRESULTS Set by some HTML/OS tags. Returns last value placed in it. TODAY Returns current date. HTML/OS Tags with Parameters ADDDAYS(date,days) Returns the date offset from the specified input date by a number of days. Params: date Any valid date after days Number of days to add. Negative numbers allowed. 153

2 154 Advanced Web Software Made Easy APPEND variable TO destination /APPEND Appends a variable to a destination variable, document, or delimited file. Params: variable The source variable. destination The destination variable, document or delimited file where the document is specified as FILE=filename and delimited file is specified as FILE=filename TS=delimiter. ASCII(number) Returns character from ASCII value. GETASCII returns ASCII value of character. Params: number ASCII value. BINTOTEXT(filename) Reads binary file and loads, as text, into variable. (Maps null character to ^n and ^ character to ^d. The tag TEXTTOBIN variable back into binary file. See Aestiva Print Reference.) Params: filename Filename. COLTOLIST(variable,col,delimiter) Converts a column in variable to a delimited list. Same as SPLIT tag. Params: variable Input table. col Column number in variable to convert. delimiter Character separator. COOKIEREAD(cookie_var) Reads cookie variable from an HTML cookie. Params: cookie_var Name of cookie variable. COOKIEWRITE(cookie_var,cookie_value,expires) Writes to HTML cookie variable. Params: cookie_var Name of cookie variable. cookie_value Value to write to cookie_var. expires Expiration date of cookie. COPY source TO destination /COPY Copies a source variable, document, or delimited file to a destination variable, document, or delimited file. Params: source The source variable, document, or delimited file where document is specified as FILE=filename and delimited file is specified as FILE=filename TS=delimiter. destination The destination variable, document, or delimited file where the document is specified as FILE=filename and the delimited file is specified as FILE=filename TS=delimiter.

3 Appendix C 155 CUT(variable,pattern) Removes first match of pattern from string. Use CUTALL to remove all matches. Usage: CUT(variable,pattern). Params: variable Input text. pattern Pattern pattern being cut. DBADD(dbname) and DBADD(dbname,fieldlist) Adds a new record to a database using current variables. Returns a status result. fieldlist Specific fields to place in record. If fieldlist is specified, then only those fields in the list are placed in the record. DBBATCHADD(dbname,variable,fieldlist,flag) Import multiple records into database from array. Same as DBLOAD tag. variable Source variable. fieldlist Specific fields to change in record. If fieldlist is specified, only those fields in the list are updated. flag Set to Y or N to enable or disable import of overflow data. DBBATCHEDIT(dbname,variable,fieldlist) Edit multiple fields in database. variable Source variable. fieldlist Comma-separated list of fields to change in record. fieldlist must contain physical record, *RECORD. See DBFIND. Only those fields in the list are updated. DBBATCHDELETE(dbname,variable,recordcol) Delete multiple records in database. variable Source variable. recordcol Column position of physical record, *RECORD, in variable. See DBFIND. DBDELETE(dbname,record) Deletes a record from database. Returns a status result. Usage: DBDELETE(dbname,record). record Record number of record to remove.

4 156 Advanced Web Software Made Easy DBEDIT(dbname,record) and DBEDIT(dbname,record,fieldlist) record Record number of record to remove. fieldlist Specific fields to change in record. If fieldlist is specified, then only those fields in the list are updated. DBFIND(dbname,query,from,to,fieldlist) Retrieves records from a database. Returns the result in table. Places the status result in TAGRESULTS. query Boolean search expression. from Number of first result to return. to Number of last result to return. fieldlist Specific fields to return from database. Each record returned is placed in a different row. Each field is placed in a column based on its order in the fieldlist. Specify RECORD for logical record and *RECORD for physical record. Status: TAGRESULTS[1,1] TRUE or FALSE TAGRESULTS[2,1] Number of records returned. TAGRESULTS[3,1] First match number returned. TAGRESULTS[4,1] Llast match number returned. TAGRESULTS[5,1] Total matches in database. TAGRESULTS[1,2] OK or error message. DBFINDJ(dbname,query,from,to,fieldlist,results,field) Retrieves records from a database, joining with prior search result. Returns result in table. Places a status result in TAGRESULTS. Params: dbname Database database name. query Boolean search expression. from Number of first result to return. to Number of last result to return. fieldlist Specific fields to return from database. Each record returned is placed in a different row. Each field is placed in a column based on its order in the fieldlist. Specify RECORD for logical record and *RECORD for physical record. results Search result table. col Join column in results table. field Join field in database. Status: TAGRESULTS[1,1] TRUE or FALSE TAGRESULTS[2,1] Number of records returned. TAGRESULTS[3,1] First match number returned. TAGRESULTS[4,1] Last match number returned.

5 Appendix C 157 TAGRESULTS[5,1] Total matches in database. TAGRESULTS[1,2] OK or error message. DBFINDSORT(dbname,query,from,to,sfield,order,fieldlist) Retrieves records from a database sorted by field. Returns the result in table. Places the status result placed in TAGRESULTS. query Boolean search expression. from Number of first result to return. to Number of last result to return. fieldlist Specific fields to return from database. Each record returned is placed in a different row. Each field is placed in a column based on its order in the fieldlist. sfield Sort field. order Sort order, Y or N. Status: TAGRESULTS[1,1] TRUE or FALSE. TAGRESULTS[2,1] Number of records returned. TAGRESULTS[3,1] First match number returned. TAGRESULTS[4,1] Last match number returned. TAGRESULTS[5,1] Total matches in database. TAGRESULTS[1,2] OK or error message. DBGET(dbname,query,num) Updates current variables from a queried record in a database. Returns status result. query Boolean search expression. num Result number to return. Status: [1,1] TRUE or FALSE. [2,1] Number of records returned. [3,1] First match number returned. [4,1] Last match number returned. [5,1] Total matches in database. [1,2] OK or error message. DBGETREC(dbname,record) Updates current variables from a record in a database. Returns a status result. record Database record to remove. Status: [1,1] TRUE or FALSE. [1,2] OK or error message. Example: stat=dbgetrec( /apps/work/db/mydb,43)

6 158 Advanced Web Software Made Easy DBREMOVE(dbname,query) Deletes queried records from a database. Returns a status result. query Boolean search expression. Status: [1,1] TRUE or FALSE [2,1] Total number of records deleted. [1,2] OK or error message. DISPLAY source /DISPLAY Inserts text into an HTML document from source variable, file, or variable array. If FILE= is specified, content is loaded from a file. If NAME= is specified, data is loaded from an array and variable is repeatedly displayed, once for each row of the array. Params: source Variable, FILE=filename, or NAME=array expressions, such as: DISPLAY x /DISPLAY, or DISPLAY FILE= abc.txt /DISPLAY, or DISPLAY NAME=x [1] [2] [3]<br> /DISPLAY. EXPAND FILE=file /EXPAND Expands HTML/OS code into an Overlay from file. Params: file Filename. Contents of the file are inserted into the current Overlay from file and executed. FILESCRAMBLEKEY(domain,productcode) and FILESCRAMBLEKEY(domain,productcode,versioncode) Get registration key from target domain name, product code, and version code. Params: domain Target domain name. productcode Product code specified in Bundle Bee. versioncode Five digit code. Default is FOR NAME=name VALUE=value1 TO value2 DO instructions /FOR and FOR NAME=variable ROWNAME=rowvar DO instructions /FOR Repeats instructions as integer increments from one value to another, or repeats instructions as row increments from top row of table to bottom row of table. Params: integer Variable being changed. value1 First value of integer. value2 Last value of integer. rowvar Name of table containing one row from variable. instructions HTML/OS instructions repeated. FUNCTION otag(param,...) DO instructions RETURN var /RETURN /FUNCTION Defines a function (Overlay Tag).

7 Appendix C 159 Params: otag Name of Overlay tag (function) being defined. param Temporary name of function parameter(s). instrucs Instructions to be executed when function is run. var Value returned by function. GETCOLEQ(variable,col,pattern) Extracts from multirow variable those rows with a column entry that equals a pattern. Returns table with matching rows. Params: variable Input table. col Column to match. pattern String to match to entry in column. GETCOLNOTEQ(variable,col,pattern) Extracts from multirow variable those rows with a column entry that does not equal a pattern. Returns table with nonmatching matching rows. Params: variable Input table. col Column to search. pattern String to match to entry in column.. GOTO destination Continues the execution of code at top of specified file if the destination is a filename. Redirects the user to Web location if destination is a URL. Params: destination URL or file name. IF test -THEN instruc ELIF instruc ELSE instruc /IF Executes instructions between THEN and /IF, ELSE or ELIF, respectively if test is TRUE, otherwise skips instructions and executes instructions between ELSE and /IF (if ELSE is specified) or performs next test (if ELIF is specified). Params: test Boolean test. For example, a= TRUE. instruc HTML/OS instructions being conditionally executed. ISDATE(variable) Returns TRUE if the string is a proper HTML/OS date. Otherwise, returns FALSE. Params: variable Input variable. ISFILE(filename) Returns TRUE if a file exists. Otherwise returns FALSE. Params: file Name of file. ISINTEGER(variable) Returns TRUE if input is a valid integer. Otherwise returns FALSE. Params: variable Input variable.

8 160 Advanced Web Software Made Easy ISSTARTLINK(file) Returns TRUE if page is enabled Start-link FALSE if not. Params: file Filename LEFT(variable,number) Returns the specified leftmost number of characters of a string. number Number of leftmost characters to return. LENGTH(variable) Returns length of a character string. LISTTOCOL(variable,delimiter) Converts list to a one-column variable. Params: variable Input list. delimiter Character separator between items in list. LOCATE(variable,pattern) Returns the position of a pattern in string. Returns #0 if not found. pattern Pattern being searched. MAIL variable TO ADDRESS=address SUBJECT=subject /MAIL s message to an address. Params: variable Input message. address address. subject message subject line. MIDDLE(variable,number1,number2) Returns substring of character string. number1 Position in variable of left-most character to return. number2 Position in variable of right-most character to return. PASTETABLE(variable1,col,row,variable2) Pastes table over another. Top table s upperleft corner positioned at specified cell in first table. Params: variable1 First table. variable2 Top table. col Column position in first table for upper-left corner of top table. row Row position in first table for upper-left corner of top table.

9 Appendix C 161 REPLACE(variable,pattern1,pattern2) Returns a string with first pattern in an input string substituted for another. Use REPLACEALL to replace all patterns in input string. pattern1 Pattern being replaced (replacement done on first match only). pattern2 Pattern being substituted. RIGHT(variable,number) Returns the specified rightmost number of characters of a string. number Number of rightmost characters to return. ROW(variable,variable,variable,..) Returns one-row table with specified columns. Params: variable Column entry. ROWS(variable) Returns number of rows of specified variable. The tag COLS returns number of columns. Params: variable Specified variable. SPLIT(variable,delimiter) See LISTTOCOL. SQRT(number) Returns square root of specified number. Params: number Specified number. SYSACCESS(filename,variablelist,flag) Enables or disables direct access to document using Start-link. Params: filename Document name. variablelist Comma-separated list of Start-link variables. flag Set to ALLOW or DENY to ENABLECOOKIE enable or disable access. TIMEFROM(variable,units) Returns the number of minutes or hours since a specified time. Returns 0 if in the future. Params: variable Input date. units Output units (MINUTES, HOURS, DAYS).

10 162 Advanced Web Software Made Easy TIMETILL(variable,units) Returns the number of minutes or hours to a specified time. Returns 0 if in the past. Params: variable Input date. units Output units (MINUTES, HOURS, DAYS). UPPER(variable) Returns upper-case value of input variable. Params: variable Input string. WHILE test DO instructions /WHILE Repeats instructions as long as test returns TRUE. Params: test Boolean test. For example, a= TRUE. instructions HTML/OS instructions repeated.

Moving Data Between Access and Excel

Moving Data Between Access and Excel Moving Data Between Access and Excel This document provides basic techniques for exchanging data between Microsoft Access and Excel. Transferring from Excel to Access To bring data into Access from Excel,

More information

JAVASCRIPT AND COOKIES

JAVASCRIPT AND COOKIES JAVASCRIPT AND COOKIES http://www.tutorialspoint.com/javascript/javascript_cookies.htm Copyright tutorialspoint.com What are Cookies? Web Browsers and Servers use HTTP protocol to communicate and HTTP

More information

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 [email protected] TABLE OF CONTENTS Introduction... 1 Import Excel

More information

Importing from Tab-Delimited Files

Importing from Tab-Delimited Files January 25, 2012 Importing from Tab-Delimited Files Tab-delimited text files are an easy way to import metadata for multiple files. (For more general information about using and troubleshooting tab-delimited

More information

Google Sites. How to create a site using Google Sites

Google Sites. How to create a site using Google Sites Contents How to create a site using Google Sites... 2 Creating a Google Site... 2 Choose a Template... 2 Name Your Site... 3 Choose A Theme... 3 Add Site Categories and Descriptions... 3 Launch Your Google

More information

Microsoft Advertising adcenter Campaign Analytics Getting Started Guide

Microsoft Advertising adcenter Campaign Analytics Getting Started Guide Microsoft Advertising adcenter Campaign Analytics Getting Started Guide Contents Introduction... 3 What is Microsoft Advertising adcenter Campaign Analytics?... 3 Useful terms... 3 Overview... 4 Get Started...

More information

SerialMailer Manual. For SerialMailer 7.2. Copyright 2010-2011 Falko Axmann. All rights reserved.

SerialMailer Manual. For SerialMailer 7.2. Copyright 2010-2011 Falko Axmann. All rights reserved. 1 SerialMailer Manual For SerialMailer 7.2 Copyright 2010-2011 Falko Axmann. All rights reserved. 2 Contents 1 Getting Started 4 1.1 Configuring SerialMailer 4 1.2 Your First Serial Mail 7 1.2.1 Database

More information

Chapter 2 The Data Table. Chapter Table of Contents

Chapter 2 The Data Table. Chapter Table of Contents Chapter 2 The Data Table Chapter Table of Contents Introduction... 21 Bringing in Data... 22 OpeningLocalFiles... 22 OpeningSASFiles... 27 UsingtheQueryWindow... 28 Modifying Tables... 31 Viewing and Editing

More information

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

Perl in a nutshell. First CGI Script and Perl. Creating a Link to a Script. print Function. Parsing Data 4/27/2009. First CGI Script and Perl

Perl in a nutshell. First CGI Script and Perl. Creating a Link to a Script. print Function. Parsing Data 4/27/2009. First CGI Script and Perl First CGI Script and Perl Perl in a nutshell Prof. Rasley shebang line tells the operating system where the Perl interpreter is located necessary on UNIX comment line ignored by the Perl interpreter End

More information

How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software

How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software There are three phases to completing the transfer process. Phase I Phase II Phase III Export

More information

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data.

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. Microsoft Access A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. A Database Management System (DBMS) allows users to create a database; add,

More information

SES Project v 9.0 SES/CAESAR QUERY TOOL. Running and Editing Queries. PS Query

SES Project v 9.0 SES/CAESAR QUERY TOOL. Running and Editing Queries. PS Query SES Project v 9.0 SES/CAESAR QUERY TOOL Running and Editing Queries PS Query Table Of Contents I - Introduction to Query:... 3 PeopleSoft Query Overview:... 3 Query Terminology:... 3 Navigation to Query

More information

How to Set Up a Shared SQL Express Database with ManagePro 7 Standard version

How to Set Up a Shared SQL Express Database with ManagePro 7 Standard version How to Set Up a Shared SQL Express Database with ManagePro 7 Standard version This instruction set is provided AS IS without warranty, express or implied, including but not limited to the implied warranties

More information

LabVIEW Report Generation Toolkit for Microsoft Office User Guide

LabVIEW Report Generation Toolkit for Microsoft Office User Guide LabVIEW Report Generation Toolkit for Microsoft Office User Guide Version 1.1 Contents The LabVIEW Report Generation Toolkit for Microsoft Office provides tools you can use to create and edit reports in

More information

To export data formatted for Avery labels -

To export data formatted for Avery labels - Information used to create labels in the Client Data System (CDS) can be exported out of CDS and used to create labels in Microsoft Word, making it possible to customize the font style, size, and color.

More information

Alpha e-pay v2 Merchant User Manual (v1.9)

Alpha e-pay v2 Merchant User Manual (v1.9) Alpha e-pay v2 Merchant User Manual (v1.9) Overview NOTE: Alpha e-pay, Alpha Bank s e-commerce solution, is currently using the DeltaPAY e- commerce platform. Therefore, Alpha e-pay and DeltaPAY are used

More information

User s Guide for the Texas Assessment Management System

User s Guide for the Texas Assessment Management System User s Guide for the Texas Assessment Management System Version 8.3 Have a question? Contact Pearson s Austin Operations Center. Call 800-627-0225 for technical support Monday Friday, 7:30 am 5:30 pm (CT),

More information

DEPLOYMENT GUIDE Version 1.1. Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5

DEPLOYMENT GUIDE Version 1.1. Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5 DEPLOYMENT GUIDE Version 1.1 Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Citrix Presentation Server Prerequisites

More information

SPSS for Windows importing and exporting data

SPSS for Windows importing and exporting data Guide 86 Version 3.0 SPSS for Windows importing and exporting data This document outlines the procedures to follow if you want to transfer data from a Windows application like Word 2002 (Office XP), Excel

More information

FORM-ORIENTED DATA ENTRY

FORM-ORIENTED DATA ENTRY FORM-ORIENTED DATA ENTRY Using form to inquire and collect information from users has been a common practice in modern web page design. Many Web sites used form-oriented input to request customers opinions

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

More information

VDF Query User Manual

VDF Query User Manual VDF Query User Manual Page 1 of 25 Table of Contents Quick Start... 3 Security... 4 Main File:... 5 Query Title:... 6 Fields Tab... 7 Printed Fields... 8 Task buttons... 9 Expression... 10 Selection...

More information

Novell Identity Manager

Novell Identity Manager AUTHORIZED DOCUMENTATION Manual Task Service Driver Implementation Guide Novell Identity Manager 4.0.1 April 15, 2011 www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with

More information

Microsoft Access 3: Understanding and Creating Queries

Microsoft Access 3: Understanding and Creating Queries Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex

More information

Portals and Hosted Files

Portals and Hosted Files 12 Portals and Hosted Files This chapter introduces Progress Rollbase Portals, portal pages, portal visitors setup and management, portal access control and login/authentication and recommended guidelines

More information

Workflow Conductor Widgets

Workflow Conductor Widgets Workflow Conductor Widgets Workflow Conductor widgets are the modular building blocks used to create workflows in Workflow Conductor Studio. Some widgets define the flow, or path, of a workflow, and others

More information

Smart Web. User Guide. Amcom Software, Inc.

Smart Web. User Guide. Amcom Software, Inc. Smart Web User Guide Amcom Software, Inc. Copyright Version 4.0 Copyright 2003-2005 Amcom Software, Inc. All Rights Reserved. Information in this document is subject to change without notice. The software

More information

EXCEL IMPORT 18.1. user guide

EXCEL IMPORT 18.1. user guide 18.1 user guide No Magic, Inc. 2014 All material contained herein is considered proprietary information owned by No Magic, Inc. and is not to be shared, copied, or reproduced by any means. All information

More information

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

Forensic Analysis of Internet Explorer Activity Files

Forensic Analysis of Internet Explorer Activity Files Forensic Analysis of Internet Explorer Activity Files by Keith J. Jones [email protected] 3/19/03 Table of Contents 1. Introduction 4 2. The Index.dat File Header 6 3. The HASH Table 10 4. The

More information

Product: DQ Order Manager Release Notes

Product: DQ Order Manager Release Notes Product: DQ Order Manager Release Notes Subject: DQ Order Manager v7.1.25 Version: 1.0 March 27, 2015 Distribution: ODT Customers DQ OrderManager v7.1.25 Added option to Move Orders job step Update order

More information

1. To start Installation: To install the reporting tool, copy the entire contents of the zip file to a directory of your choice. Run the exe.

1. To start Installation: To install the reporting tool, copy the entire contents of the zip file to a directory of your choice. Run the exe. CourseWebs Reporting Tool Desktop Application Instructions The CourseWebs Reporting tool is a desktop application that lets a system administrator modify existing reports and create new ones. Changes to

More information

KPN SMS mail. Send SMS as fast as e-mail!

KPN SMS mail. Send SMS as fast as e-mail! KPN SMS mail Send SMS as fast as e-mail! Quick start Start using KPN SMS mail in 5 steps If you want to install and use KPN SMS mail quickly, without reading the user guide, follow the next five steps.

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Contents. 2 Alfresco API Version 1.0

Contents. 2 Alfresco API Version 1.0 The Alfresco API Contents The Alfresco API... 3 How does an application do work on behalf of a user?... 4 Registering your application... 4 Authorization... 4 Refreshing an access token...7 Alfresco CMIS

More information

Visualization with Excel Tools and Microsoft Azure

Visualization with Excel Tools and Microsoft Azure Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization

More information

How to Concatenate Cells in Microsoft Access

How to Concatenate Cells in Microsoft Access How to Concatenate Cells in Microsoft Access This tutorial demonstrates how to concatenate cells in Microsoft Access. Sometimes data distributed over multiple columns is more efficient to use when combined

More information

Portal Connector Fields and Widgets Technical Documentation

Portal Connector Fields and Widgets Technical Documentation Portal Connector Fields and Widgets Technical Documentation 1 Form Fields 1.1 Content 1.1.1 CRM Form Configuration The CRM Form Configuration manages all the fields on the form and defines how the fields

More information

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

More information

USB Recorder. User s Guide. Sold by: Toll Free: (877) 389-0000

USB Recorder. User s Guide. Sold by:  Toll Free: (877) 389-0000 USB Recorder User s Guide Sold by: http://www.twacomm.com Toll Free: (877) 389-0000 Table of Contents 1. Getting Started 1-1...First Login 1-2...Creating a New User 2. Administration 2-1...General Administration

More information

SharePoint List Filter Webpart User Manual

SharePoint List Filter Webpart User Manual SharePoint List Filter Webpart User Manual Version 1.1 19.09.2010 1/26 1 Inhalt 1 Inhalt...2 2 Introduction...3 2.1 Overview...3 2.2 Technical requirements...3 2.3 Features...3 3 Installation and configuration...4

More information

Using Ad-Hoc Reporting

Using Ad-Hoc Reporting Using Ad-Hoc Reporting The purpose of this guide is to explain how the Ad-hoc reporting function can be used to produce Management Information from client and product data held in the Key. The guide will

More information

IP Phone Service Administration and Subscription

IP Phone Service Administration and Subscription CHAPTER 6 IP Phone Service Administration and Subscription Cisco CallManager administrators maintain the list of services to which users can subscribe. These sections provide details about administering

More information

1 JiJi AD Bulk Manager User Manual. JiJi AD Bulk Manager - User Manual

1 JiJi AD Bulk Manager User Manual. JiJi AD Bulk Manager - User Manual 1 JiJi AD Bulk Manager User Manual JiJi AD Bulk Manager - User Manual 2 JiJi AD Bulk Manager User Manual Table of Contents 1. Introduction...4 2. Benefits...4 2.1 Export Import Data...4 2.2 Random Generator

More information

Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA

Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Page 1 Introduction The ecommerce Hub provides a uniform API to allow applications to use various endpoints such as Shopify. The following

More information

ODBC Driver Version 4 Manual

ODBC Driver Version 4 Manual ODBC Driver Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this manual

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

CowCalf5. for Dummies. Quick Reference. D ate: 3/26 / 2 0 10

CowCalf5. for Dummies. Quick Reference. D ate: 3/26 / 2 0 10 CowCalf5 for Dummies Quick Reference D ate: 3/26 / 2 0 10 Page 2 Email: [email protected] Page 3 Table of Contents System Requirement and Installing CowCalf5 4 Creating a New Herd 5 Start Entering Records

More information

SnapLogic Tutorials Document Release: October 2013 SnapLogic, Inc. 2 West 5th Ave, Fourth Floor San Mateo, California 94402 U.S.A. www.snaplogic.

SnapLogic Tutorials Document Release: October 2013 SnapLogic, Inc. 2 West 5th Ave, Fourth Floor San Mateo, California 94402 U.S.A. www.snaplogic. Document Release: October 2013 SnapLogic, Inc. 2 West 5th Ave, Fourth Floor San Mateo, California 94402 U.S.A. www.snaplogic.com Table of Contents SnapLogic Tutorials 1 Table of Contents 2 SnapLogic Overview

More information

LabVIEW Internet Toolkit User Guide

LabVIEW Internet Toolkit User Guide LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Special and Fundraising Events Masters Class. Part 2: Managing your Event and Sending Invitations

Special and Fundraising Events Masters Class. Part 2: Managing your Event and Sending Invitations Special and Fundraising Events Masters Class Part 2: Managing your Event and Sending Invitations Find Your Event Go to the Events Tab and either find the event on the Calendar, or use the Search Bar. Invitations

More information

Active Directory User Management System (ADUMS)

Active Directory User Management System (ADUMS) Active Directory User Management System (ADUMS) Release 2.9.3 User Guide Revision History Version Author Date Comments (MM/DD/YYYY) i RMA 08/05/2009 Initial Draft Ii RMA 08/20/09 Addl functionality and

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide Table Of Contents Getting Started Checklist... 1 Overview: Portal Content Management System... 3 Anatomy of a Portal Page... 3 Overview of the Content Management System...

More information

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2.

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2. Testing Dynamic Web Applications How To You can use XML Path Language (XPath) queries and URL format rules to test web sites or applications that contain dynamic content that changes on a regular basis.

More information

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

How to Create User-Defined Fields and Tables

How to Create User-Defined Fields and Tables SAP Business One How-To Guide PUBLIC How to Create User-Defined Fields and Tables Applicable Release: SAP Business One 8.8 All Countries English July 2009 Table of Contents Creating User-Defined Fields

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 Special Topics PivotTable IF Function V-Lookup Function Information Technology Services Outreach and Distance Learning Technologies Copyright 2011 KSU Department of Information Technology

More information

WS_FTP Professional 12

WS_FTP Professional 12 WS_FTP Professional 12 Tools Guide Contents CHAPTER 1 Introduction Ways to Automate Regular File Transfers...5 Check Transfer Status and Logs...6 Building a List of Files for Transfer...6 Transfer Files

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com [email protected]. Flexense Ltd.

VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com info@flexense.com. Flexense Ltd. VX Search FILE SEARCH SOLUTION User Manual Version 8.2 Jan 2016 www.vxsearch.com [email protected] 1 1 Product Overview...4 2 VX Search Product Versions...8 3 Using Desktop Product Versions...9 3.1 Product

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide IBM Unica emessage Version 8 Release 6 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 403. This edition applies to

More information

Informatica Cloud Connector for SharePoint 2010/2013 User Guide

Informatica Cloud Connector for SharePoint 2010/2013 User Guide Informatica Cloud Connector for SharePoint 2010/2013 User Guide Contents 1. Introduction 3 2. SharePoint Plugin 4 3. Objects / Operation Matrix 4 4. Filter fields 4 5. SharePoint Configuration: 6 6. Data

More information

E-mail Listeners. E-mail Formats. Free Form. Formatted

E-mail Listeners. E-mail Formats. Free Form. Formatted E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

ConvincingMail.com Email Marketing Solution Manual. Contents

ConvincingMail.com Email Marketing Solution Manual. Contents 1 ConvincingMail.com Email Marketing Solution Manual Contents Overview 3 Welcome to ConvincingMail World 3 System Requirements 3 Server Requirements 3 Client Requirements 3 Edition differences 3 Which

More information

Rochester Institute of Technology. Oracle Training: Preparing Journal Entries in the Oracle Applications

Rochester Institute of Technology. Oracle Training: Preparing Journal Entries in the Oracle Applications Rochester Institute of Technology Oracle Training: Preparing Journal Entries in the Oracle Applications 1 Table of Contents Introduction Lesson 1: Lesson 2: Lesson 3: Lesson 4: Lesson 5: Lesson 6: Logging

More information

Works. Works Quick Reference Guide. Creating and Managing Reports

Works. Works Quick Reference Guide. Creating and Managing Reports Works Quick Reference Guide Creating and Managing Reports Table of Contents Creating Reports...4 Modifying and/or Rerunning Report Templates... 12 Adding Report Output Types... 13 Changing Completed Report

More information

OpenIMS 4.2. Document Management Server. User manual

OpenIMS 4.2. Document Management Server. User manual OpenIMS 4.2 Document Management Server User manual OpenSesame ICT BV Index 1 INTRODUCTION...4 1.1 Client specifications...4 2 INTRODUCTION OPENIMS DMS...5 2.1 Login...5 2.2 Language choice...5 3 OPENIMS

More information

Exporting Client Information

Exporting Client Information Contents About Exporting Client Information Selecting Layouts Creating/Changing Layouts Removing Layouts Exporting Client Information Exporting Client Information About Exporting Client Information Selected

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: +966 12 739 894 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training is designed to

More information

USB Recorder User Guide

USB Recorder User Guide USB Recorder User Guide Table of Contents 1. Getting Started 1-1... First Login 1-2... Creating a New User 2. Administration 2-1... General Administration 2-2... User Administration 3. Recording and Playing

More information

Configuring Load Balancing. Oracle Applications Release 10.7 NCA Windows NT Edition. Gary Burch. April 15, 1998

Configuring Load Balancing. Oracle Applications Release 10.7 NCA Windows NT Edition. Gary Burch. April 15, 1998 Configuring Load Balancing Oracle Applications Release 10.7 NCA Windows NT Edition Gary Burch April 15, 1998 1 Table of Contents Table of Contents.. Introduction. Installation Manuals.. Software Requirements..

More information

1. Starting the management of a subscribers list with emill

1. Starting the management of a subscribers list with emill The sending of newsletters is the basis of an efficient email marketing communication for small to large companies. All emill editions include the necessary tools to automate the management of a subscribers

More information

How to Make Register and Make Online Bookings

How to Make Register and Make Online Bookings Contents: How to Make Register and Make Online Bookings Online Booking Website Registration Home Page Quick Links Manage Bookings Memberships Unpaid Sales Online Booking Website To book online you will

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

Call Recorder Quick CD Access System

Call Recorder Quick CD Access System Call Recorder Quick CD Access System V4.0 VC2010 Contents 1 Call Recorder Quick CD Access System... 3 1.1 Install the software...4 1.2 Start...4 1.3 View recordings on CD...5 1.4 Create an archive on Hard

More information

Settle-to-File Credit Card Driver for 3700 POS

Settle-to-File Credit Card Driver for 3700 POS Restaurant Enterprise Series Settle-to-File Credit Card Driver for 3700 POS Version 4.x August 15, 2008 Copyright 2004-2008 by MICROS Systems, Inc. Columbia, MD USA All Rights Reserved MD0003-076 ii Installation

More information

ShopWindow Integration and Setup Guide

ShopWindow Integration and Setup Guide ShopWindow Integration and Setup Guide Contents GETTING STARTED WITH SHOPWINDOW TOOLSET... 3 WEB SERVICES, CLIENT SOFTWARE, OR DIRECT?...3 SHOPWINDOW SIGNUP...4 ACCESSING SHOPWINDOW TOOLSET...4 WEB SERVICES...

More information

Working with Tables: How to use tables in OpenOffice.org Writer

Working with Tables: How to use tables in OpenOffice.org Writer Working with Tables: How to use tables in OpenOffice.org Writer Title: Working with Tables: How to use tables in OpenOffice.org Writer Version: 1.0 First edition: January 2005 First English edition: January

More information

Housekeeping & Maintenance Work Orders

Housekeeping & Maintenance Work Orders Property Management System Functional Specification Housekeeping & Maintenance Work Orders Subject: Author(s): Status: Last Updated: Maintenance Work Orders - Crete Jeff Stivers Complete 5/1/2001 12:00

More information

SonicWALL GMS Custom Reports

SonicWALL GMS Custom Reports SonicWALL GMS Custom Reports Document Scope This document describes how to configure and use the SonicWALL GMS 6.0 Custom Reports feature. This document contains the following sections: Feature Overview

More information

Microsoft Office Live Meeting Events User s Guide

Microsoft Office Live Meeting Events User s Guide Microsoft Office Live Meeting Events User s Guide Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise noted, the companies,

More information

Handling of "Dynamically-Exchanged Session Parameters"

Handling of Dynamically-Exchanged Session Parameters Ingenieurbüro David Fischer AG A Company of the Apica Group http://www.proxy-sniffer.com Version 5.0 English Edition 2011 April 1, 2011 Page 1 of 28 Table of Contents 1 Overview... 3 1.1 What are "dynamically-exchanged

More information

Web DLP Quick Start. To get started with your Web DLP policy

Web DLP Quick Start. To get started with your Web DLP policy 1 Web DLP Quick Start Websense Data Security enables you to control how and where users upload or post sensitive data over HTTP or HTTPS connections. The Web Security manager is automatically configured

More information

Web Portal User Guide. Version 6.0

Web Portal User Guide. Version 6.0 Web Portal User Guide Version 6.0 2013 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its subsidiaries

More information

Advanced BIAR Participant Guide

Advanced BIAR Participant Guide State & Local Government Solutions Medicaid Information Technology System (MITS) Advanced BIAR Participant Guide October 28, 2010 HP Enterprise Services Suite 100 50 West Town Street Columbus, OH 43215

More information

A Basic introduction to Microsoft Access

A Basic introduction to Microsoft Access A Basic introduction to Microsoft Access By Ojango J.M.K Department of Animal Sciences, Egerton University, Njoro, Kenya and International Livestock Research Institute, Nairobi, Kenya Ms Access is a database

More information

5.1 Features 1.877.204.6679. [email protected] Denver CO 80202

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202 1.877.204.6679 www.fourwindsinteractive.com 3012 Huron Street [email protected] Denver CO 80202 5.1 Features Copyright 2014 Four Winds Interactive LLC. All rights reserved. All documentation

More information

Kofax Export Connector 8.3.0 for Microsoft SharePoint

Kofax Export Connector 8.3.0 for Microsoft SharePoint Kofax Export Connector 8.3.0 for Microsoft SharePoint Administrator's Guide 2013-02-27 2013 Kofax, Inc., 15211 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to

More information

Field Properties Quick Reference

Field Properties Quick Reference Field Properties Quick Reference Data types The following table provides a list of the available data types in Microsoft Office Access 2007, along with usage guidelines and storage capacities for each

More information

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM User Guide Revision D Issued July 2014 Table of Contents About CRM Migration Manager... 4 System Requirements... 5 Operating Systems... 5 Dynamics

More information