WMTOOL. Technical Specification. Date: 10/2012 Version: APITechSpecv1.4CRO0512 WMTOOL 1. Technical Specification

Size: px
Start display at page:

Download "WMTOOL. Technical Specification. Date: 10/2012 Version: APITechSpecv1.4CRO0512 WMTOOL 1. Technical Specification"

Transcription

1 WMTOOL Date: 10/2012 Version: APITechSpecv1.4CRO0512 WMTOOL 1

2 Contents 1. WMTOOL Overview 4 2. How to run WMTOOL 5 3. Available Commands 6 4. Making shorter commands 7 5 Importing Jobs CSV Files JSON Files Uploading 10 WMTOOL 2

3 WorkMobile Tool (WMTOOL) WMTOOL is a stand-alone utility that provides a user interface to the WorkMobile Business API. Currently, only a command-line interface is provided for a limited set of functions. WMTOOL is a Java application. It will run on Windows, MacOS and Linux. A Java Runtime Environment must be installed first this can be downloaded at: WMTOOL Overview Your Organisation WMTOOL + WorkMobile Business API CSV Files CSV Files CSV Files Internal Databases SAP, Oracle, mysql, MS SQL, Access CRM Server FTP Server WMTOOL 3

4 2.0 How to run WMTOOL Open a command-line interface or shell. E.g. in Windows Type command from Run From the command line: java -jar wmtool.jar command [ options ] For a list of supported commands: java -jar wmtool.jar help For help on a specific command: java -jar wmtool.jar command --help The process will return 0 (zero) for success, or 1 (one) for any error. In a Windows command prompt, this is available as the ERRORLEVEL. WMTOOL 4

5 3.0 Available Commands COMMAND addform addjobtype addnotification allocatejob closejob deallocatejob describejobtype exportform exportjobs exportjobtype exportusers formdata help importjobs importjobtype importusers jobdata listforms listgroups listjobhistory listjobtypes listusers setlogonform shred uploaddatabase uploadfileattachment uploadimage DESCRIPTION Create a new form Create a new job type Create a new notification Allocate (or re-allocate) a job to a mobile user Close a job Deallocate a job Retrieve description for specified jobtype Export a Form definition as XML Display or export a list of jobs Export a job type definition as XML Display or export all mobile user details Download data for a specified form Display this help Import jobs for the specified jobtype from CSV Import a job type, as exported by exportjobtype Import mobile users from a CSV file Retrieve the data for a job Display or export a list of forms List mobile user groups Display the history for a specified job Display or export a list of job types Display or export a list of mobile users Set a mobile user group's logon form Permanently delete any data marked as downloaded for a specified form Upload data for data-linked dropdown lists(csv/xml) Upload file attachments for jobs. Upload image files for the image control. WMTOOL 5

6 4.0 Making a shorter command If you want to use WmTool extensively from the command line by hand, you might want to make a small batch file or shell script to simplify using it. A Windows example, wmtool.bat, contains one -jar c:\apps\esay\wmtool.jar %* Then run as: wmtool help Or, include any parameters you always use, to avoid keying them in each -jar c:\apps\esay\wmtool.jar --username bob@esay-mobile.co.uk %* For security reasons, you should not include the password. wmtool listusers --password esay 4.0 Batch Processing For example, create a text file with a list of Job IDs (one on each line), called "jobs.in" Then execute WmTool in a batch. for /f %j in (jobs.in) do java -jar wmtool.jar allocatejob --username bob@esay-mobile.co.uk --password esay --mobileuserid jobid %j WMTOOL 6

7 5.0 Importing Jobs Jobs are imported from either a CSV file or a JSON file. Prefix the file with the Byte Order Mark character (U+FEFF) if you want the file processed as UTF-8. Otherwise it will be processed in the operating system's "default" character encoding. Saving the file in Windows Notepad will usually put it in the right format. 5.1 CSV Files To create a blank CSV template for a specific job type: wmtool describejobtype --username bob@esay-mobile.co.uk --password esay -- jobtypeid bom --output jobtype263.csv Hint: use the "--bom" option to add the Byte Order Mark character for you. Output will resemble: ExternalJobId,JobDescription,EstimatedJobStartDate,JobAllocateToMobileUser, New_x0020_Checkbox,New_x0020_Dropdown,New_x0020_Textbox The first columns are always: ExternalJobId: you can provide any information you want in this column. It is used to report back the status of creating and allocating jobs. JobDescription: identical to the "Job Description" field when creating a job on the website. This must be supplied. EstimatedJobStartDate: in the format "YYYY-MM-DD" or "YYYY-MM-DD hh:mm". If time is omitted, midnight is assumed. You must include this. JobAllocateToMobileUser: optionally, a mobile user name to whom to allocate the job after creation. Other columns will be the job's operator-editable items. Note that spaces and some other characters will be encoded. Hint: EstimatedJobStartDate can also be in your computer's local format, such as DD/MM/YYYY or MM-DD-YYYY, according to your regional settings. WmTool will try to interpret the date in the ISO formats specified above first, then the local format if that fails. If the job's form contains subforms, you can add multiple subforms by including multiple rows in the CSV. The first row is the main row, and must contain the special job fields (listed above) and the data for the parent form. If there are subforms, this row also contains the data for the first subform. For additional subforms, add them in extra rows, with the same ExternalJobId as the parent row. And other Job fields or parent fields will be ignored in these "subform" rows. WMTOOL 7

8 5.2 JSON Files JSON (JavaScript Object Notation) files can also be used for data uploads, by adding the command line option: "--inputformat json". Like CSVs they are just simple text files, but the JSON format is more suited to storing hierarchical data. Values are included as key/value pairs, in the form "<key>": <value>. Objects are enclosed with curly brackets: <key/value pairs> }. Arrays are enclosed with square brackets, with elements separated by commas: [ <element 1>, <element 2>, <element 3> ]. JSON input files should contain an array of job objects, each of which needs to include the same set of fields as the CSV files. Here is an example of a JSON file to create two jobs: [ "ExternalJobId": 1, "JobDescription": "descriptive text for job 1", "EstimatedJobStartDate": " ", "JobAllocateToMobileUser": "bob", "New_x0020_Textbox": "blah blah blah", "New_x0020_Numberbox": 123, }, "ExternalJobId": 2, "JobDescription": "descriptive text for job 2", "EstimatedJobStartDate": " ", "JobAllocateToMobileUser": "bob", ] "New_x0020_Textbox": "your text here", "New_x0020_Numberbox": 321, }, Pre-populated subforms take the form of an array of subform objects. For example: [ "ExternalJobId": 1, "JobDescription": "descriptive text for job 1", "EstimatedJobStartDate": " ", "JobAllocateToMobileUser": "bob", "Subform": [ "Subform_New_x0020_Textbox": "a field on subform 1", "Subform_New_x0020_Numberbox": 123, WMTOOL 8

9 ] } }, "Subform_New_x0020_Textbox": "a field on subform 2", "Subform_New_x0020_Numberbox": 321, }, ], Hint: The subform array object should have the same name as the subform field on the parent form. 5.3 Uploading To upload and allocate the jobs: wmtool importjobs --username bob@esay-mobile.co.uk --password esay -- jobtypeid input jobtype263.csv Note, you must specify the job-type ID again. Hint: use the --dryrun option first, to check the validity of your data file without uploading any data to the server. Output comes in the form of a table, or (optionally) a CSV file. Specify "--output filename" to get CSV. Output columns are: ExternalJobId: as provided in the input file for this job. StatusCode: result of processing this job (see below). Status: result of processing this job (in more human-readable form). EsayJobId: the JobId in WorkMobile, if the job was uploaded (otherwise, zero). Note that this will always be zero with --dryrun. EstimatedJobStartDate: the same date you specified in the input file. This allows you to check that your date format was interpretted correctly. Comment: any diagnostic message from WmTool or from the WorkMobile server. Will be blank, unless there was a problem. Code Meaning 0 "not uploaded" - processing has not started 1 "invalid" - the job was not processed because it was not valid (see "comment" for reason) 2 "ready to upload" - the job was validated by WmTool, but has not been uploaded yet (because of -- dryrun option) 3 "failed to upload" - the job was rejected by the server (see "comment" for server's response) 4 "uploaded" - the server accepted the job 5 "failed to allocate" - the job was accepted by the server, but the server refused to allocate the job (see "comment") 6 "allocated" - the server accepted the job and allocated it successfully WMTOOL 9

How to Create Student Accounts and Assignments

How to Create Student Accounts and Assignments How to Create Student Accounts and Assignments From the top navigation, select My Classes and click My Students Carolina Science Online will allow you to either create a single student account, one at

More information

The main differences with other open source reporting solutions such as JasperReports or mondrian are:

The main differences with other open source reporting solutions such as JasperReports or mondrian are: WYSIWYG Reporting Including Introduction: Content at a glance. Create A New Report: Steps to start the creation of a new report. Manage Data Blocks: Add, edit or remove data blocks in a report. General

More information

PERFORMANCE HORIZON PUBLISHER API INTRODUCTION

PERFORMANCE HORIZON PUBLISHER API INTRODUCTION PERFORMANCE HORIZON PUBLISHER API INTRODUCTION Version 1.0 October 2016 WHY USE API S All of the features and functionality that we have developed aim to give you, the user, a greater understanding of

More information

PCCW mobile SMS Web Access 2.0 User Guide

PCCW mobile SMS Web Access 2.0 User Guide PCCW mobile SMS Web Access 2.0 User Guide Version 2.1.2 11 March 2011 Version: 2.1.2 Table of Content 1 Introduction... 4 2 General... 5 2.1 Getting started... 5 2.2 Login/Logout... 5 2.3 Switch between

More information

[301] JSON. Tyler Caraza-Harter

[301] JSON. Tyler Caraza-Harter [301] JSON Tyler Caraza-Harter Learning Objectives Today JSON differences with Python syntax creating JSON files reading JSON files Read: Sweigart Ch 14 https://automatetheboringstuff.com/chapter14/ JSON

More information

open-data-etl-tool-kit Documentation

open-data-etl-tool-kit Documentation open-data-etl-tool-kit Documentation Release 1.0.0 City of Chicago January 30, 2017 Contents 1 Installation & Configuration 1 2 Creating & Configuring an ETL 7 3 Setting-up Automation 11 4 Utilities for

More information

User Guide Using AuraPlayer

User Guide Using AuraPlayer User Guide Using AuraPlayer AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without the written

More information

IBM. Bulk Load Utilities Guide. IBM Emptoris Contract Management SaaS

IBM. Bulk Load Utilities Guide. IBM Emptoris Contract Management SaaS IBM Emptoris Contract Management IBM Bulk Load Utilities Guide 10.1.2 SaaS IBM Emptoris Contract Management IBM Bulk Load Utilities Guide 10.1.2 SaaS ii IBM Emptoris Contract Management: Bulk Load Utilities

More information

Mobile Forms Integrator

Mobile Forms Integrator Mobile Forms Integrator Introduction Mobile Forms Integrator allows you to connect the ProntoForms service (www.prontoforms.com) with your accounting or management software. If your system can import a

More information

NHBC Extranet user guide. Site management made easy

NHBC Extranet user guide. Site management made easy NHBC Extranet user guide Site management made easy 1 Contents Welcome to the NHBC Extranet 3 Getting Started 3 I can t remember my login details 3 I don t have an account 3 Main Menu 4 Extranet Administration

More information

Updating Users. Updating Users CHAPTER

Updating Users. Updating Users CHAPTER CHAPTER 18 Update the existing user information that is in the database by using the following procedure:, page 18-1 Retaining Stored Values, page 18-2 Using the BAT Spreadsheet to Create a CSV Data File

More information

Custom Import Client User Guide

Custom Import Client User Guide Custom Import Client User Guide Powerpay Ceridian HCM, Inc. Table of Contents Custom Import... 3 What Is It?... 3 Why Use It?... 3 How Does It Work?... 3 Getting Started... 5 Review the Powerpay File Import

More information

TECHNOLOGY SOLUTION EVOLUTION

TECHNOLOGY SOLUTION EVOLUTION JAR PLATFORM JORVAK TECHNOLOGY SOLUTION EVOLUTION 1990s Build Your Own Time to Production Present Time Highly Configurable Hybrid Platforms Universal Connectivity Application Screens Integrations/Reporting

More information

Importing Exporting and Publishing data

Importing Exporting and Publishing data 2 Table of Contents I. Importing resources... 1 1. DEFINITION... 1 2. CONFIGURATION... 1 Create an import context... 1 Definition of the import context... 4 Modification to an import context... 12 Delete

More information

Database Setup in IRI Workbench 1

Database Setup in IRI Workbench 1 Database Setup in IRI Workbench Two types of database connectivity are required by the IRI Workbench. They are: Microsoft Open Database Connectivity (ODBC) for data movement between the database and IRI

More information

LoiLoNote School User Registration Manual

LoiLoNote School User Registration Manual LoiLoNote School User Registration Manual BEFORE YOU START... In order to use LoiLoNote School, you must first log in to the server from the School Administrator Account and register a list of teacher

More information

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Data Management Tools 1 Table of Contents DATA MANAGEMENT TOOLS 4 IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Importing ODBC Data (Step 2) 10 Importing MSSQL

More information

How to File GSTR-1 from BUSY

How to File GSTR-1 from BUSY How to File GSTR-1 from BUSY Overview GSTR-1 is the monthly GST return to be filed by taxable person registered under GST. GSTR-1 will include the details of all outward supplies made within the given

More information

User Guide for Outward Interbank GIRO (OBG) For Direct Debit (Collections)

User Guide for Outward Interbank GIRO (OBG) For Direct Debit (Collections) User Guide for Outward Interbank GIRO (OBG) For Direct Debit (Collections) No part of this document may be reproduced, stored in a retrieval system of transmitted in any form or by any means, electronic,

More information

Enterprise Data Catalog Fixed Limitations ( Update 1)

Enterprise Data Catalog Fixed Limitations ( Update 1) Informatica LLC Enterprise Data Catalog 10.2.1 Update 1 Release Notes September 2018 Copyright Informatica LLC 2015, 2018 Contents Enterprise Data Catalog Fixed Limitations (10.2.1 Update 1)... 1 Enterprise

More information

TopView SQL Configuration

TopView SQL Configuration TopView SQL Configuration Copyright 2013 EXELE Information Systems, Inc. EXELE Information Systems (585) 385-9740 Web: http://www.exele.com Support: support@exele.com Sales: sales@exele.com Table of Contents

More information

Oracle Retail Customer Engagement Cloud Service (Relate) Installation Guide - Installer Release 11.4 E Revision 2

Oracle Retail Customer Engagement Cloud Service (Relate) Installation Guide - Installer Release 11.4 E Revision 2 Oracle Retail Customer Engagement Cloud Service (Relate) Installation Guide - Installer Release 11.4 E79512-01 Revision 2 September 2016 Oracle Retail Customer Engagement Cloud Service (Relate), Installation

More information

CHESS Access EIS Upgrade

CHESS Access EIS Upgrade CHESS Access EIS Upgrade ASX mfund Enhancements CHESS 10 Release Version: 1.0 Publication Date: 1 June 2018 Property of: ASX Operations Pty Limited Contents 1 Acronym Glossary 4 2 Introduction 5 2.1 Overview...

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

Adobe Captivate Monday, February 08, 2016

Adobe Captivate Monday, February 08, 2016 Slide 1 - Slide 1 MT+ How to export and import mobilities In this demo you will see how to export the template or the list of existing mobilities, an explanation of the format of the CSV file how to use

More information

Configuring Databases

Configuring Databases CHAPTER 6 This module describes how to configure the Cisco Service Control Management Suite (SCMS) Collection Manager (CM) to work with your database, and how to use the database infrastructure of the

More information

Importing, Exporting, and ing Data

Importing, Exporting, and  ing Data Importing, Exporting, and Emailing Data Importing Data Before importing data into the system you should create a new database backup file and make sure no other users are entering data in the system. The

More information

/ Introduction to XML

/   Introduction to XML Introduction to XML XML stands for Extensible Markup Language. It is a text-based markup language derived from Standard Generalized Markup Language (SGML). XML tags identify the data and are used to store

More information

Additional Management Tools and Interfaces

Additional Management Tools and Interfaces This chapter provides details on additional management tools and interfaces available in Cisco Service Control. The Cisco SCA BB Service Configuration Utility, page 1 The Cisco SCA BB Signature Configuration

More information

Importing to WIRED Contact From a Database File. Reference Guide

Importing to WIRED Contact From a Database File. Reference Guide Importing to WIRED Contact From a Database File Reference Guide Table of Contents Preparing the Database table for Import... 2 Locating the Field Names for the Import... 2 Importing the File to WiredContact...

More information

Essential Import Service

Essential Import Service Essential Import Service Interface Specification Version 2.0 March 2017 Contents Operation of the service Default callback listener Importing Microsoft Excel and CSV documents Operation of the service

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Edition 3.2. Tripolis Solutions Dialogue Manual version 3.2 2

Edition 3.2. Tripolis Solutions Dialogue Manual version 3.2 2 Edition 3.2 Tripolis Solutions Dialogue Manual version 3.2 2 Table of Content DIALOGUE SETUP... 7 Introduction... 8 Process flow... 9 USER SETTINGS... 10 Language, Name and Email address settings... 10

More information

ibolt V3.3 Release Notes

ibolt V3.3 Release Notes ibolt V3.3 Release Notes Welcome to ibolt V3.3, which has been designed to deliver an easy-touse, flexible, and cost-effective business integration solution. This document highlights the new and enhanced

More information

Some of the content in this documentation has been adapted from OCLC s Support & Training CONTENTdm Help files.

Some of the content in this documentation has been adapted from OCLC s Support & Training CONTENTdm Help files. Orbis Cascade Alliance Content Creation & Dissemination Program Digital Collections Service Batch Editing CONTENTdm Records Produced by the Digital Collections Working Group of the Content Creation & Dissemination

More information

Oracle. Sales Cloud Using Customer Data Management. Release 12

Oracle. Sales Cloud Using Customer Data Management. Release 12 Oracle Sales Cloud Release 12 Oracle Sales Cloud Part Number E73021-03 Copyright 2011-2017, Oracle and/or its affiliates. All rights reserved. Authors: Jesna Narayanan, Abhishek Sura, Vijay Tiwary Contributors:

More information

ForeScout CounterACT. Guest Management Portal for Sponsors. How-to Guide. Version 8.0

ForeScout CounterACT. Guest Management Portal for Sponsors. How-to Guide. Version 8.0 ForeScout CounterACT Guest Management Portal for Sponsors How-to Guide Version 8.0 Table of Contents Welcome... 3 Supported Guest Management Portal Browsers... 4 Sign In to the Guest Management Portal...

More information

Fusion Registry 9 SDMX Data and Metadata Management System

Fusion Registry 9 SDMX Data and Metadata Management System Registry 9 Data and Management System Registry 9 is a complete and fully integrated statistical data and metadata management system using. Whether you require a metadata repository supporting a highperformance

More information

Orbis Cascade Alliance Content Creation & Dissemination Program Digital Collections Service. OpenRefine for Metadata Cleanup.

Orbis Cascade Alliance Content Creation & Dissemination Program Digital Collections Service. OpenRefine for Metadata Cleanup. Orbis Cascade Alliance Content Creation & Dissemination Program Digital Collections Service OpenRefine for Metadata Cleanup Produced by the Digital Collections Working Group of the Content Creation & Dissemination

More information

Outage Scheduler User's Guide

Outage Scheduler User's Guide GUIDE 10 Outage Scheduler User's Guide September 2016 Version: 3.0 Revision Date: 09/13/2016 This document was prepared by: Scheduling, Energy Market Operations New York Independent System Operator 10

More information

SAS Event Stream Processing 5.2: Visualizing Event Streams with Streamviewer

SAS Event Stream Processing 5.2: Visualizing Event Streams with Streamviewer SAS Event Stream Processing 5.2: Visualizing Event Streams with Streamviewer Overview Streamviewer is a graphical user interface that visualizes events streaming through event stream processing models.

More information

Migrating from the Standard to the Enhanced PPW Driver

Migrating from the Standard to the Enhanced PPW Driver New Driver Announcement! The Property Pres Wizard (PPW) Enhanced Integration is now live in Pruvan. We recommend that you use the new driver over the original one. If you are already using the current

More information

Classification: Public ANZ TRANSACTIVE GLOBAL USER GUIDE

Classification: Public ANZ TRANSACTIVE GLOBAL USER GUIDE Classification: Public ANZ TRANSACTIVE GLOBAL USER GUIDE 03 2015 CONTENTS PURPOSE 3 Users in ANZ Transactive Global 4 Function Roles and Data Roles 4 GETTING STARTED IN ANZ TRANSACTIVE GLOBAL 5 ANZ Transactive

More information

How to bulk upload users

How to bulk upload users City & Guilds How to bulk upload users How to bulk upload users The purpose of this document is to guide a user how to bulk upload learners and tutors onto SmartScreen. 2014 City and Guilds of London Institute.

More information

PearsonAccess Next User Accounts Guide

PearsonAccess Next User Accounts Guide PearsonAccess Next User Accounts Guide Overview... 2 Creating New Accounts... 2 Reviewing Staff Accounts... 2 Access to Results... 2 Training Management System (TMS)... 2 Training Center... 2 Manual User

More information

Device Quotas. Administrator's Guide

Device Quotas. Administrator's Guide Device Quotas Administrator's Guide March 2015 www.lexmark.com Contents 2 Contents Overview... 4 Default configuration...4 Before you begin... 4 Configuring the application from the control panel...6 Accessing

More information

REPORTING RECLASSIFICATION RETURNS TO

REPORTING RECLASSIFICATION RETURNS TO REPORTING RECLASSIFICATION RETURNS TO THE CENTRAL BANK IN XML Explanatory information on how to report reclassification returns to the Central Bank by uploading files (in XML format) to the Online Reporting

More information

Oracle Responsys Classic Connect

Oracle Responsys Classic Connect http://docs.oracle.com Oracle Responsys Classic Connect User Guide 2018, Oracle and/or its affiliates. All rights reserved 13-Sep-2018 Contents 1 Connect 5 2 Creating Export Jobs in Classic Connect 6 2.1

More information

Importing and exporting Net2 user data

Importing and exporting Net2 user data Importing and exporting user data User data User data is defined as all the information holds about an individual cardholder. Often most of this information already exists in other databases owned by the

More information

Database to XML Wizard

Database to XML Wizard Database to XML Wizard Jitterbit Connect TM provides a fast, easy route to data transformation. This is made possible through a wizard-based integration tool built directly into Jitterbit. The wizard executes

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Anaplan Connector Guide Document Version 2.1 (updated 14-MAR-2017) Document Version 2.1

Anaplan Connector Guide Document Version 2.1 (updated 14-MAR-2017) Document Version 2.1 Document Version 2.1 (updated 14-MAR-2017) Document Version 2.1 Version Control Version Number Date Changes 2.1 MAR 2017 New Template applied Anaplan 2017 i Document Version 2.1 1 Introduction... 1 1.1.

More information

Once you log in, you'll see the Dashboard. It immediately shows the number of orders, customer accounts, and product views.

Once you log in, you'll see the Dashboard. It immediately shows the number of orders, customer accounts, and product views. Ann Gish Back End Guide 2/17/11 Site: http://dev.ispirto.us/ann/admin/ Once you log in, you'll see the Dashboard. It immediately shows the number of orders, customer accounts, and product views. To the

More information

User Guide Parser add-on. Version: September by AgileBio. &

User Guide Parser add-on. Version: September by AgileBio.   & User Guide Parser add-on Version: September 2016 2016 by AgileBio. www.agilebio.com & www.labcollector.com Summary 1- INTRODUCTION... 3 2- GETTING STARTED... 4 3- OVERVIEW... 5 4- TEMPLATE/MODEL... 6 4-1.

More information

Integration Adaptor. Release

Integration Adaptor. Release Integration Adaptor Release 14.2.00 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is for your informational

More information

User s Guide. Mass Deployment Tool. ENG Version 0

User s Guide. Mass Deployment Tool. ENG Version 0 User s Guide Mass Deployment Tool ENG Version 0 Copyright Copyright 2017 Brother Industries, Ltd. All rights reserved. Information in this document is subject to change without notice. The software described

More information

P6 Professional Reporting Guide Version 18

P6 Professional Reporting Guide Version 18 P6 Professional Reporting Guide Version 18 August 2018 Contents About the P6 Professional Reporting Guide... 7 Producing Reports and Graphics... 9 Report Basics... 9 Reporting features... 9 Report Wizard...

More information

Contents. ARSXML... 1 Purpose... 1 Syntax... 1 Description... 2 Parameters for ARSXML [add update delete]... 2 Parameters for ARSXML export...

Contents. ARSXML... 1 Purpose... 1 Syntax... 1 Description... 2 Parameters for ARSXML [add update delete]... 2 Parameters for ARSXML export... ARSXML ii ARSXML Contents ARSXML.............. 1 Purpose................ 1 Syntax................ 1 Description............... 2 Parameters for ARSXML [add update delete]... 2 Parameters for ARSXML export........

More information

Pepkor webcom Quick Reference Guide. Version Date: 2013/12 Version Number: 1.3

Pepkor webcom Quick Reference Guide. Version Date: 2013/12 Version Number: 1.3 Pepkor webcom Quick Reference Guide Version Date: 2013/12 Version Number: 1.3 Table of Contents 1 INTRODUCTION... 4 2 LOGGING IN... 4 3 NAVIGATE INSIDE WEBCOM... 5 3.1 MAIN SECTION 5 3.1.1 Home... 5 3.1.2

More information

Marketing Cloud Journeys and Automations

Marketing Cloud Journeys and Automations Marketing Cloud Journeys and Automations Salesforce, Winter 19 @salesforcedocs Last updated: December 4, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

AuraPlayer Server Manager User Guide

AuraPlayer Server Manager User Guide AuraPlayer Server Manager User Guide AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without

More information

StreamServe Persuasion SP4 PageIN

StreamServe Persuasion SP4 PageIN StreamServe Persuasion SP4 PageIN User Guide Rev A StreamServe Persuasion SP4 PageIN User Guide Rev A 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of this document

More information

KeyNavigator Book Transfer

KeyNavigator Book Transfer Created (10/2018) KeyNavigator Book Transfer User Guide Table of Contents 1. Introduction to Book Transfer... 3 Overview... 3 Features... 3 Navigation... 3 Transfer Processing Timing... 4 2. User-Level

More information

ChainBuilder Connect IDE Guide 02/04/2010

ChainBuilder Connect IDE Guide 02/04/2010 file://c:\cbdoc\ide\ideguide\index.html Page 1 of 2 ChainBuilder Connect 2.1 ChainBuilder Connect IDE Guide 02/04/2010 Copyright 2006-2010 Bostech Corporation file://c:\cbdoc\ide\ideguide\index.html Page

More information

Alameda County Objective Arts CSV upload formats

Alameda County Objective Arts CSV upload formats 11/7/2016 Alameda County Objective Arts CSV upload formats This document describes the file formats used to upload assessments into the Objective Arts (OA) system using the batch upload functionality and

More information

W h i t e P a p e r. Integration Overview Importing Data and Controlling BarTender from Within Other Programs

W h i t e P a p e r. Integration Overview Importing Data and Controlling BarTender from Within Other Programs W h i t e P a p e r Integration Overview Importing Data and Controlling BarTender from Within Other Programs Contents Contents...2 Introduction...3 Selecting the Desired Label Data...3 Why you Usually

More information

Importing Existing Data into LastPass

Importing Existing Data into LastPass Importing Existing Data into LastPass Once you have installed LastPass, you may need to impocort your existing password entries and secure data from another LastPass account or from another password manager

More information

Exactly User Guide. Contact information. GitHub repository. Download pages for application. Version

Exactly User Guide. Contact information. GitHub repository. Download pages for application. Version Exactly User Guide Version 0.1.4 2017-02-07 Contact information AVPreserve http://www.avpreserve.com/ GitHub repository https://github.com/avpreserve/uk-exactly Download pages for application Windows (32bit)

More information

Deposit Express User Guide

Deposit Express User Guide Deposit Express User Guide 877-305-7125 ColumbiaBank.com 253-123-4567 ColumbiaBank.com Table of Contents Deposit Express Support 3 Support Contact Information 3 Hours of Support 3 Logging in to Deposit

More information

How to Submit. Royalty Report Part I and. Royalty Report Part II

How to Submit. Royalty Report Part I and. Royalty Report Part II How to Submit Royalty Report Part I and Royalty Report Part II 1 Table of Contents 1. Introduction... 3 2. New User Registration... 3 3. Welcome Page... 4 4. User Settings... 5 5. Royalties... 6 6. Royalty

More information

User Guideline v 2.1. For assistance please contact Grapevine on or

User Guideline v 2.1. For assistance please contact Grapevine on or SMS Broadcast User Guideline v 2.1 Support : Feedback : For assistance please contact Grapevine on +27 21 702 3333 or email support@vine.co.za Please email info@vine.co.za with your comments and feedback

More information

Performing Administrative Tasks

Performing Administrative Tasks CHAPTER 6 This section provides information about administrative tasks. It includes these topics: Stopping and Restarting the Cisco License Manager Server, page 6-1 How to Manage Users, page 6-2 Working

More information

Updated PDF Support Manual:

Updated PDF Support Manual: Version 2.7.0 Table of Contents Installing DT Register... 4 Component Installation... 4 Install the Upcoming Events Module...4 Joom!Fish Integration...5 Configuring DT Register...6 General... 6 Display...7

More information

GEL Scripts Advanced. Your Guides: Ben Rimmasch, Yogesh Renapure

GEL Scripts Advanced. Your Guides: Ben Rimmasch, Yogesh Renapure GEL Scripts Advanced Your Guides: Ben Rimmasch, Yogesh Renapure Introductions 2 Take 5 Minutes Turn to a Person Near You Introduce Yourself Agenda 3 Accessing JAVA Classes and Methods SOAP Web Services

More information

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies CNIT 129S: Securing Web Applications Ch 3: Web Application Technologies HTTP Hypertext Transfer Protocol (HTTP) Connectionless protocol Client sends an HTTP request to a Web server Gets an HTTP response

More information

Child Items. Adding Child Items to plugin control panels. File Structure 4. Hacking childitems.html 7. Hacking childitem.html (without the s) 14

Child Items. Adding Child Items to plugin control panels. File Structure 4. Hacking childitems.html 7. Hacking childitem.html (without the s) 14 Child Items Child Items 1 Adding Child Items to plugin control panels. 1.1 1.2 1.3 File Structure 4 Hacking childitems.html 7 Hacking childitem.html (without the s) 14 Adding Child Items to plugin control

More information

SAS Data Explorer 2.1: User s Guide

SAS Data Explorer 2.1: User s Guide SAS Data Explorer 2.1: User s Guide Working with SAS Data Explorer Understanding SAS Data Explorer SAS Data Explorer and the Choose Data Window SAS Data Explorer enables you to copy data to memory on SAS

More information

The WellComm Report Wizard Guidance and Information

The WellComm Report Wizard Guidance and Information The WellComm Report Wizard Guidance and Information About Testwise Testwise is the powerful online testing platform developed by GL Assessment to host its digital tests. Many of GL Assessment s tests are

More information

Technical Note HDE TN GMSCS E TN GMSCS E HDE R3.02

Technical Note HDE TN GMSCS E TN GMSCS E HDE R3.02 Technical Note HDE Technical Note TN GMSCS0135-01E TN GMSCS0135-01E HDE R3.02 Issue 1.0 24th June 2016 Blank Page HDE Technical Note 1 Copyright and Trademark Notices 2016 Yokogawa Electric Corporation

More information

Student Std Imports Update Guide

Student Std Imports Update Guide Overview Admins can do a mass update of student accounts using the import tool. You will need administrative access to www.discoveryeducation.com. Click on My Admin to access the administrative page, and

More information

Chapter 5: Rosters. Chapter Contents 5.1

Chapter 5: Rosters. Chapter Contents 5.1 5.1 Chapter 5: Rosters Rosters connect students to educators (users) in Educator Portal. Before rosters are entered, both educators and students must be entered into Educator Portal. Rosters can be viewed,

More information

Nortel Network Resource Manager Fundamentals. Release: NRM 2.0 Document Revision: NN

Nortel Network Resource Manager Fundamentals. Release: NRM 2.0 Document Revision: NN Release: NRM 2.0 Document Revision: 02.03 www.nortel.com NN48020-300. Release: NRM 2.0 Publication: NN48020-300 Document release date: All Rights Reserved. Printed in Canada, India, and the United States

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 SP2 User Guide P/N 300-009-462 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008 2009 EMC Corporation. All

More information

Oracle. Sales Cloud Using Customer Data Management. Release 13 (update 17D)

Oracle. Sales Cloud Using Customer Data Management. Release 13 (update 17D) Oracle Sales Cloud Release 13 (update 17D) Release 13 (update 17D) Part Number E89101-01 Copyright 2011-2017, Oracle and/or its affiliates. All rights reserved. Authors: Jesna Narayanan, Abhishek Sura,

More information

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6)

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) [1]Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) E14139-06 April 2015 This document describes how to use the Domain Template Builder to create

More information

Configuring Databases

Configuring Databases CHAPTER 6 Configuring Databases Revised: August 21, 2012, Introduction This chapter describes how to configure the Cisco Service Control Management Suite (SCMS) Collection Manager (CM) to work with your

More information

Etasoft Mini Translator version 1.x

Etasoft Mini Translator version 1.x Etasoft Mini Translator version 1.x Copyright 2008-2010 Etasoft Inc. Main website http://www.etasoft.com Product website http://www.xtranslator.com Purpose...2 Requirements...2 Package Details...2 Results...3

More information

Ariba Network CIF Catalog Guide

Ariba Network CIF Catalog Guide Ariba Network CIF Catalog Guide September, 2017 Customer Agenda What is a CIF Catalog? CIF Catalog Enablement Publishing a Catalog on Ariba Network Updating CIF Catalog 2017 SAP SE or an SAP affiliate

More information

New Features Guide Sybase ETL 4.9

New Features Guide Sybase ETL 4.9 New Features Guide Sybase ETL 4.9 Document ID: DC00787-01-0490-01 Last revised: September 2009 This guide describes the new features in Sybase ETL 4.9. Topic Page Using ETL with Sybase Replication Server

More information

RELEASE NOTES. Version NEW FEATURES AND IMPROVEMENTS

RELEASE NOTES. Version NEW FEATURES AND IMPROVEMENTS S AND S Implementation of the Google Adwords connection type Implementation of the NetSuite connection type Improvements to the Monarch Swarm Library Column sorting and enhanced searching Classic trapping

More information

DigiCert User Guide (GÉANT)

DigiCert User Guide (GÉANT) DigiCert User Guide (GÉANT) Version 6.8 Table of Contents 1 User Management... 10 1.1 Roles and Account Access... 10 1.1.1 Administrator Role... 10 1.1.2 User Role... 10 1.1.3 EV Verified User... 10 1.1.4

More information

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6 Gateway Installation and Configuration Guide for On-Premises Version 17 September 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites...

More information

PowerSchool 7.6 Release Notes PowerSchool Student Information System

PowerSchool 7.6 Release Notes PowerSchool Student Information System PowerSchool Student Information System Released December 2012 Document Owner: Documentation Services This edition applies to Release 7.6 of the PowerSchool software, and to all subsequent releases and

More information

Anaplan Informatica Connector

Anaplan Informatica Connector Document Version 2.3 (updated 18-SEP-2017) Anaplan Informatica Connector Document Version 2.3 Version Control Version Number Date Changes 2.1 MAR 2017 New Template applied 2.2 AUG 2017 INTEGRA-1180 - New

More information

ecopy Quick Connect Administrator s Guide Version 4.5 for ShareScan Part Number: (1/2009)

ecopy Quick Connect Administrator s Guide Version 4.5 for ShareScan Part Number: (1/2009) ecopy Quick Connect Version 4.5 for ShareScan Administrator s Guide Part Number: 73-00326 (1/2009) Licensing, Copyright, and Trademark Information The information in this document is subject to change

More information

RulePoint Proactive PowerCenter Monitoring

RulePoint Proactive PowerCenter Monitoring Contents Informatica Corporation RulePoint Release Notes June 27, 2011 Copyright 1998-2011 Informatica Corporation Abstract... 1 RulePoint Proactive PowerCenter Monitoring... 1 Installation... 1 Enhancements...

More information

File Share Navigator Online. Release Notes

File Share Navigator Online. Release Notes File Share Navigator Online Release Notes Release Date: March 2018 File Share Navigator Online March 2018 New Features and Improvements Microsoft Azure File Storage is now a supported storage type. Special

More information

This is a known issue (SVA-700) that will be resolved in a future release IMPORTANT NOTE CONCERNING A VBASE RESTORE ISSUE

This is a known issue (SVA-700) that will be resolved in a future release IMPORTANT NOTE CONCERNING A VBASE RESTORE ISSUE SureView Analytics 6.1.1 Release Notes ================================= --------- IMPORTANT NOTE REGARDING DOCUMENTATION --------- The Installation guides, Quick Start Guide, and Help for this release

More information

User Guide for Payroll Service (APS+)

User Guide for Payroll Service (APS+) User Guide for Payroll Service (APS+) - Payment by File Upload - Payment by Preset Template No part of this document may be reproduced, stored in a retrieval system of transmitted in any form or by any

More information

GS1 US Data Hub 3.2 Location User Guide

GS1 US Data Hub 3.2 Location User Guide GS US Data Hub 3. Location User Guide Note: This document is a compilation of individual help resources. Please see the source documents in the help center for the most current versions. Table of Contents

More information