Enterprise Knowledge Platform

Size: px
Start display at page:

Download "Enterprise Knowledge Platform"

Transcription

1 Enterprise Knowledge Platform Training History Import/Export

2 Document Information Document ID: EN145 Document title: EKP Training History Import/Export Version: 1.7 Document date: 14 April 2009 This document may be revised from time to time. Please check NetDimensions Support site at for updates to this and other documents or send an to to request the most recent version. Please report any errors or feedback with this document by sending an to Copyright Information Copyright by NetDimensions Ltd. All Rights Reserved. Information in this document is subject to change without notice. The software described herein is furnished under a license agreement, and it may be copied only in accordance with the terms of that agreement. No part of this publication may be reproduced, transmitted, or translated in any form or by any means without the prior written permission of NetDimensions Ltd. All company and product names used herein may be trademarks or registered trademarks of their respective companies unless stated otherwise. How to Contact NetDimensions Support US toll-free number support@netdimensions.com General Enquiries info@netdimensions.com

3 Table of Contents Description...1 About This Guide... 1 If You Need Help... 1 Scheduling Import/Export Tasks...2 Web Services... 2 Scheduled Events... 3 Import Option 1: Import Data as External Training History (Utility)...5 Overview... 5 Data Format... 6 Import Option 2: Import Data as EKP Training History (CSV)...8 Overview... 8 Data Format... 8 Export Option 1: Export Training History (XML) Overview Data Format Transcript Historical Data Loading Speed and Option Improvements... 10

4 Description About This Guide This document describes the mechanism by which training history data may be imported from another system into EKP, as well as EKP training history data exported from EKP for use by another system. These actions may be invoked in one of two way: on demand via a Web Services API, or automatically using the EKP scheduler these two methods are explained in a later section The principal data exchange format for EKP is generally XML, but in some cases alternative methods allow flat data files (or CSV, Comma Separated Values) to be used where it is simpler to manipulate data in that form. Where there are choices, they are listed in the configuration options described later in this document. Scheduling the automatic, periodic import and export of data into EKP is managed via the EKP Event Scheduler, which routinely runs tasks at hourly, daily, weekly, and monthly intervals. Training History Import Choices Training history from non-ekp systems may be imported into EKP using one of two methods. Which one is best depends upon the intended long-term use of the training history information, and management objectives for capturing this data. The two methods are: Import as External Training History Import as EKP defined history (available in EKP Gold only) These two methods are explained in this document. If You Need Help If you cannot resolve a configuration problem using this guide or the online help, or if you should have any queries related to the technology employed within EKP, your first line of contact should be as described in your Technical Support Contract. For other queries, or if you are not sure whom to contact, NetDimensions Ltd. may be contacted at info@netdimensions.com. Please also refer to the support section of the NetDimensions web site at for the latest information regarding various services. 1

5 Scheduling Import/Export Tasks Web Services EKP provides a number of web services that can be used by other applications to query EKP for data. These web services are designed according to the REST (Representational State Transfer) architecture 1. In each case, a data-oriented document (typically XML) is sent in response to an HTTP request. Note The Web Services APIs are available in EKP Gold only. This document focuses on the manipulation of training history data, but for more information about other import/export functions, please refer to the document EKP APIs and Web Services Overview (EN049_EKP_APIs_and_Web_Services_Overview.pdf). You may use this API on an on-demand basis, as well as part of machine-to-machine communications that are automated via scripts or other processes. To make use of these services: Step 1 Authentication Setup Configure a password in ekp.properties like this: authentication.key=mysecretpassword This is not linked to a standard user account, since this is designed primarily for integration with other systems, not for direct access by users. When one of the APIs is invoked manually, the system will prompt for the authentication password to be entered. Step 2 Invoke required URI To retrieve a document via the web services API, you would enter a request containing the URI defined below, relative to the site in question. So, for example, if EKP was running on a host named ekp.example.com, using the default port for HTTP (port 80), with the default context path of /ekp, the URI to retrieve an XML representation of the student with user ID joestudent would be as shown below. An example to retrieve training history data: where traininghistoryxml is listed in the chart below as the URI for training history data.. 1 See 2

6 For a full list of the services provided, please refer to the EKP APIs and Web Services Overview document. Scheduled Events EKP has an event manager that schedules background tasks at predefined points, typically: Hourly; Daily; Weekly; Monthly; The execution time for the daily, weekly, monthly tasks are determined by the following ekp.properties setting: system.handlerstarttime=3 This setting indicates that the daily processes are run at 3:00am, which is also the EKP default task startup time. Weekly and monthly tasks are run after the daily tasks at the same time, with weekly events run on Sunday, and Monthly events run on the 1 st of the month. To invoke the import/export tasks for training history, there are a series of configuration files in WEB-INF/conf for the different intervals: imports-hourly.opml imports-daily.opml imports-weekly.opml imports-monthly.opml exports-hourly.opml exports-daily.opml exports-weekly.opml exports-monthly.opml Note Scheduled imports and exports are available in EKP Gold only. The contents of an opml configuration file appear as follows: <opml version="1.0"> <head/> <body> <outline type="traininghistorycsv" xmlurl="file:/c:/path/to/file.csv" /> </body> 3

7 </opml> The URL can point to a directory instead of a specific file when the file: scheme is used. In this case, the importer will scan the directory for all files that do not have the file name extension.imported; every matching file will be processed and then renamed to add the.imported extension to the file name. Target location would be specified as a URL, with the following schemes supported: - file: (exported data is written to a file on the local file system) - ftp: (exported data is uploaded to a file on an FTP server) - (exported data is submitted using HTTP POST) A sample file might look like this: <opml version="1.0"> <head/> <body> <outline type="users200510xml" xmlurl="file:/c:/temp/out/users.xml"/> <outline type="traininghistoryxml" xmlurl="ftp://uname:pwd@ftp.abc.com/data/traininghistory.xml"/> <outline type="csuserscsv" xmlurl=" </body> </opml> It is also possible to trigger imports on-demand using a web services API. Both the scheduler mechanism and the web services APIs are described in more detail in the document EKP APIs and Web Services Overview (EN049_EKP_APIs_and_Web_Services_Overview.pdf). 4

8 Import Option 1: Import Data as External Training History (Utility) Overview Each user s transcript shows information for both EKP-defined courses as well as for externally defined historical records. The difference between these two is that the externally defined history has no corresponding course or tracking data defined in EKP, so only basic information from the external history may be captured and reported. This is the cleanest and simplest way to store historical data from another system. This external training history for a specific user may be reviewed in their training history, or a report on many users may be created using the Report Wizard. Important Note This import technique currently based on an external database utility mechanism, and so is not available as an EKP Web Service or scheduled task. Summary of Use Within EKP Only the external_training database table is updated; Imported data appears to users and management in the Training History screen labeled as External Training History ; Reporting must be done using the Report Wizard, as most canned reports are focused on EKP tracking details and so do not reference the external training history data. 5

9 Data Format To perform a bulk import of external training data, a file containing the following fields is prepared and then imported using the relevant external data loader associated with the database (for Microsoft and Sybase this is bcp, hence this is used in the example below). RecordID nvarchar(15) not null UserID nvarchar(85) not null Title nvarchar(255) not null Startdate datetime null Enddate datetime null Grade nvarchar(30) null Score nvarchar(30) null Comments nvarchar(1024) null training_hours float default 0, not null course_type nvarchar(100) null subject nvarchar(100) null duration float default 0, not null duration_unit nvarchar(50) null language int default 0, not null cost numeric(15,2) default 0, not null currency nvarchar(15) null vendor_info1 nvarchar(255) null vendor_info2 nvarchar(255) null other_info nvarchar(255) null venue nvarchar(512) null studentstatus int default 0, not null Example Command Statement for Microsoft SQL Server: bcp external_training in c:\history.dat c t; -Undadmin -Pndadmin where: - external_training is the name of the database table; - in implies import (as opposed to out for export) - c:\history.dat is the name of the data file; - -c implies that this is an ascii data file; - -t; specifies a semi-colon as the delimiter - -Undadmin is the userid (which should point to the EKP database) - -Pndadmin is the password to the database Please refer to the database utility reference manual for additional details regarding the use of the utility, as you have some flexibility as to the options to present on the command line. The example command as shown is adequate for most scenarios. 6

10 Example Import Data File The following file illustrates how this information may be packaged in a file: 1; ray;project Management Workshop; ; ;;Passed;Completed;0.0;;;0.0;;1;0.00;;;;;;4 2; rob;java Security; ; ;;Passed;Completed;0.0;;;0.0;;1;0.00;;;;;;4 3; cathy;courseware Standards; ; ;;PASS;Completed;0.0;;;0.0;;1;0.00;;;;;;4 Note 1. It is necessary to enter values for the "default 0 not null" and "not null" columns - at least 0 for int,0.0 for float and 0.00, for the numeric (15,2) values. Empty fields lead to an error during the import, at least with the bcp utility.when running the data import utility, you may specify the delimiter to be used between the fields (e.g. tab, comma or semi-colon). 2. In this file, the recordid in the first column must be a unique identifier not already in the external_training table. This is a requirement of the bcp process- 7

11 Import Option 2: Import Data as EKP Training History (CSV) Overview A training history importer is built into EKP that is also capable of storing imported data as an EKP transcript and course data. The advantage of doing this is that more reporting options are available to administrators. The disadvantage is that the Catalog Editor now contains more dummy courses that are tied to the users new transcript entries. Note The training history importer described in this section is available in EKP Gold only. Summary of Use Within EKP Multiple tables are updated; these include transcript, learningobject, course, and cschedule. This import process creates course entries similar to that done directly by an administrator using the Catalog Editor. Data appears to user and management in the Training History screen labeled as normal EKP data; nothing identifies it as historical data different from standard EKP training history data. Reporting may be done using both the Report Wizard and canned reports; This import process may be scheduled using the EKP Event Scheduler, or invoked on-demand using a web services API these mechanisms are described in detail in the document EKP APIs and Web Services Overview (EN049_EKP_APIs_and_Web_Services_Overview.pdf). Configuration includes the location of the data file to be imported; this could be the path of a file on the local file system, or a URL (allowing import from FTP servers and web services for example). The schedule for import is also configurable and could be hourly, daily, weekly or monthly. In addition, the import can be triggered on-demand using a web services API. Data Format The importer reads data in CSV format. The first row in the CSV file will be a header row; each subsequent row will represent one training record (or, if no user ID is specified, a course session with no associated training records). Each non-header row in the CSV file will contain the columns specified in the table below. (N.B. The order of the columns is not significant; the order can be changed provided the order of the column headers is changed accordingly.) 8

12 CSV Column Name USERID LEARNINGID LOTITLE STARTDATE ENDDATE STUDENTSTATUS CREATESESSION Remarks Corresponds to EKP s User ID; if blank, a classroom and session will be created with no associated training record. Corresponds with EKP s Learning ID; a classroom and session will be created even if there is no USERID tagged to this code Corresponds with EKP s Learning Module Title; a classroom and session will be created even there is no USERID tagged to this name The format of this field in the CSV file will be DD-MM-YYYY The format of this field in the CSV file will be DD-MM-YYYY If the value is Pass, the Overall Status of the training record will be set to COMPLETED; otherwise, the Overall Status of the training record will be set to INCOMPLETE Determines what happens if there is no existing session for the specified module with the specified start and end dates. If the value is true then a new session will be added, otherwise any existing session(s) will have their start and end dates updated. If this column is omitted, the default behavior is to update the start and end dates of existing sessions. Note that if the module currently has no sessions, then a new session is always created regardless of the value of this column. This setting applies only to modules of types Classroom, Virtual Classroom and Workshop/Seminar. Notes: If there is no existing learning module with the specified Learning ID, a new learning module of type Classroom will be created with the specified ID and title; otherwise, the title field of the existing learning module will be updated. 9

13 If the learning module created or updated in the step above has no existing sessions, a new session will be created with the specified start and end dates; otherwise, the behavior will depend on the value of the CREATESESSION column. - If the value of the CREATESESSION column is true, a new session will be added. - Otherwise, the existing session(s) will have their start and end dates updated. (N.B. This is the default behavior if the CREATESESSION column is omitted.) The importer will then check whether the student with the specified ID currently has any training records associated with the learning module created or updated in the first step. If so, these records will be updated with the specified start date, end date and Overall Status (COMPLETED if the STUDENTSTATUS field contains the value Pass ; INCOMPLETE otherwise). If not, a new training record will be created with the specified start date, end date and Overall Status. Example Import Data File The following file illustrates how this information may be packaged in a file: USERID,LEARNINGID,LOTITLE,STARTDATE,ENDDATE,STUDENTSTATUS,CREATESESSION ray,prj101,project Management Workshop, , ,Pass,true rob,jav188,java Security, , ,Pass,true cathy,crs77,courseware Standards, , ,Fail,true in this file, the first line identifies the fields contained in the file. Transcript Historical Data Loading Speed and Option Improvements In the OPML batch scheduler, a new loader type of turbotraininghistory has been added that enables training records from an external system to be loaded into EKP. This loader has the same file format as the previous traininghistory loader (which is still supported), with the following two improvements: A new LOTYPE column allows an entry to be designated ONLINE or CLASSROOM to indicate the type of record represented. The load data rate is now many, many times better (approximately 8000 records per minute on test system). 10

14 Export Option 1: Export Training History (XML) Overview Training History data may be extracted from the EKP database and written to an external file in XML format. This data may then be fed into other systems, facilitating data warehouse loading or HR systems personnel reporting. Note The Training History data export mechanisms described in this section are available in EKP Gold only. To export all student records: Web Services URI: Scheduler OPML type label: contentgenerator/traininghistoryxml traininghistoryxml To export student records for completed activities only: Web Services URI: Scheduler OPML type label: contentgenerator/completedtrainingrecordsxml completedtrainingrecordsxml Data Format The data fields included in each <trainingrecord> entry of the training history export are: Id - an EKP internal identifier for the record. UserId - The learner ID; LearningModule id - Course ID; title - Course title; enrolldate - Learner enroll date; overallstatus - Final status; 11

15 lastattempdate - Last attempt date; attemptcount -# times launched; isselfenrolled - true/false; A sample exported file fragment is: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <traininghistory xmlns=" <datecreated> t19:34: :00</datecreated> <trainingrecord id="ekp "> <userid>looslesr</userid> <learningmodule> <id>ek-2163</id> <title>it Project + : A CompTIA Certification</title> </learningmodule> <enrollmentdate> t13:40: :00</enrollmentdate> <overallstatus>enrolled</overallstatus> <lastattemptdate> t13:40: :00</lastattemptdate> <attemptcount>0</attemptcount> <isselfenrolled>true</isselfenrolled> </trainingrecord> </traininghistory> The XSD file which describes this format is: <?xml version="1.0" encoding="utf-8"?> <xsd:schema targetnamespace=" xmlns:xsd=" xmlns=" elementformdefault="qualified"> <xsd:element name="traininghistory"> <xsd:complextype> <xsd:sequence> <xsd:element name="datecreated" type="xsd:datetime"/> <xsd:element name="trainingrecord" type="trainingrecord" minoccurs="0" maxoccurs="unbounded"/> </xsd:sequence> </xsd:complextype> </xsd:element> <xsd:complextype name="trainingrecord"> <xsd:sequence> <xsd:element name="userid" type="xsd:string"/> <xsd:element name="learningmodule" type="learningmodule"/> <xsd:element name="enrollmentdate" type="xsd:datetime" minoccurs="0"/> <xsd:element name="startdate" type="xsd:datetime" 12

16 minoccurs="0"/> <xsd:element name="enddate" type="xsd:datetime" minoccurs="0"/> xsd:element name="overallstatus" type="overallstatus"/> <xsd:element name="score" type="xsd:decimal" minoccurs="0"/> <xsd:element name="lastattemptdate" type="xsd:datetime" minoccurs="0"/> <xsd:element name="attemptcount" type="xsd:nonnegativeinteger"/> <xsd:element name="isselfenrolled" type="xsd:boolean"/> </xsd:sequence> <xsd:attribute name="id" use="required" type="xsd:id"/> </xsd:complextype> <xsd:complextype name="learningmodule"> <xsd:sequence> <xsd:element name="id" type="xsd:string"/> <xsd:element name="title" type="xsd:string"/> </xsd:sequence> </xsd:complextype> <xsd:simpletype name="overallstatus"> <xsd:restriction base="xsd:ncname"> <xsd:enumeration value="administrativeentry"/> <xsd:enumeration value="cancelled"/> <xsd:enumeration value="completed"/> <xsd:enumeration value="enrolled"/> <xsd:enumeration value="finishedusing"/> <xsd:enumeration value="incomplete"/> <xsd:enumeration value="pendingapproval"/> <xsd:enumeration value="resource"/> <xsd:enumeration value="shared"/> <xsd:enumeration value="unknown"/> <xsd:enumeration value="waitlisted"/> <xsd:enumeration value="withdrawn"/> </xsd:restriction> </xsd:simpletype> </xsd:schema> 13

Enterprise Knowledge Platform

Enterprise Knowledge Platform Enterprise Knowledge Platform Global English Integration Document Information Document ID: EN050 Document title: EKP Global English Integration Version: 1.2 Document date: 13 April 2009 This document may

More information

Enterprise Knowledge Platform. Books24x7 Integration Guide

Enterprise Knowledge Platform. Books24x7 Integration Guide Enterprise Knowledge Platform Books24x7 Integration Guide Document Information Document ID: EN133 Document title: EKP Books24x7 Integration Guide Version: 1.2 Document date: 15 April 2009 This document

More information

SuccessMaker Data Services API Guide

SuccessMaker Data Services API Guide SuccessMaker 7.0.1 Data Services API Guide Document last updated August 2014 Copyright 2011 2014 Pearson Education, Inc. or one or more of its direct or indirect affiliates. All rights reserved. Pearson

More information

Data Services API Guide SuccessMaker 10

Data Services API Guide SuccessMaker 10 Document last updated July 26, 2017 Copyright 2017 Pearson Education, Inc. or one or more of its direct or indirect affiliates. All rights reserved. Pearson and SuccessMaker are registered trademarks,

More information

Data Services API Guide SuccessMaker 9

Data Services API Guide SuccessMaker 9 Document last updated September 22, 2016 Copyright 2016 Pearson Education, Inc. or one or more of its direct or indirect affiliates. All rights reserved. Pearson and SuccessMaker are registered trademarks,

More information

Enterprise Knowledge Platform 5.6

Enterprise Knowledge Platform 5.6 Enterprise Knowledge Platform 5.6 The Enterprise Knowledge Platform API i Document Information Document ID: EN049 Document title: EKP 5.6 The Enterprise Knowledge Platform API Version: 4.6 Document date:

More information

Enterprise Knowledge Platform Adding the Login Form to Any Web Page

Enterprise Knowledge Platform Adding the Login Form to Any Web Page Enterprise Knowledge Platform Adding the Login Form to Any Web Page EKP Adding the Login Form to Any Web Page 21JAN03 2 Table of Contents 1. Introduction...4 Overview... 4 Requirements... 4 2. A Simple

More information

ENTSO-E ACKNOWLEDGEMENT DOCUMENT (EAD) IMPLEMENTATION GUIDE

ENTSO-E ACKNOWLEDGEMENT DOCUMENT (EAD) IMPLEMENTATION GUIDE 1 ENTSO-E ACKNOWLEDGEMENT DOCUMENT (EAD) 2014-01-16 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 Table of Contents 1 OBJECTIVE... 5 2 THE ACKNOWLEDGEMENT

More information

DBMaker. XML Tool User's Guide

DBMaker. XML Tool User's Guide DBMaker XML Tool User's Guide CASEMaker Inc./Corporate Headquarters 1680 Civic Center Drive Santa Clara, CA 95050, U.S.A. www.casemaker.com www.casemaker.com/support Copyright 1995-2003 by CASEMaker Inc.

More information

How to Make Your Data Available through the EN Browser

How to Make Your Data Available through the EN Browser How to Make Your Data Available through the EN Browser 1 Overview Making your data available through the EN Browser can be completed in 3 steps. This document guides you through these steps. 2 Step 1:

More information

Atlas WFS Recordings Service

Atlas WFS Recordings Service Version EN160212 1.12 Final Date: 12 February 2016 2 Version history Version Status Date Details of change Author(s) 1.0 Final 15 Oct 2010 Initial version 1.1 Final 1 Nov 2011 Version 1.1 of schema: support

More information

SID Archive Cookbook

SID Archive Cookbook SID Archive Cookbook January 29, 2015 Table of Contents Introduction...2 Nomenclature...2 Preparing Data for Archiving...3 Determine the Submission Type...3 Create the Readme.xml File...4 Helpful Hints

More information

CA Data Protection. Account Import XML Schema Guide. Release 15.0

CA Data Protection. Account Import XML Schema Guide. Release 15.0 CA Data Protection Account Import XML Schema Guide Release 15.0 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation

More information

Your leads. Your way. Lead delivery options for BuyerZone clients and partners.

Your leads. Your way. Lead delivery options for BuyerZone clients and partners. Your leads. Your way. Lead delivery options for BuyerZone clients and partners. Lead delivery from BuyerZone We know how important quality and timely leads are for your business. That s why we offer a

More information

EKP 7.1 New Features Guide

EKP 7.1 New Features Guide EKP 7.1 New Features Guide Document Information Document ID: EKP7103 Document title: EKP 7.1 New Features Guide Version: 1.0 Document date: 6 May 2011 This document may be revised from time to time. Please

More information

ZENworks Reporting System Reference. January 2017

ZENworks Reporting System Reference. January 2017 ZENworks Reporting System Reference January 2017 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights, patent

More information

WORKFLOW BUILDER TM FOR MICROSOFT ACCESS

WORKFLOW BUILDER TM FOR MICROSOFT ACCESS WORKFLOW BUILDER TM FOR MICROSOFT ACCESS Application Guide Version 06.05.2008 This document is copyright 2007-2008 OpenGate Software. The information contained in this document is subject to change without

More information

PanelView Plus and Text Historian Guide

PanelView Plus and Text Historian Guide PanelView Plus and Text Historian Guide Version 12.4 SyTech, Inc. The Complete Reporting Solution Information in this document is subject to change without notice. SyTech, Inc. assumes no responsibility

More information

A namespace prefix is defined with a xmlns attribute using the syntax xmlns:prefix="uri".

A namespace prefix is defined with a xmlns attribute using the syntax xmlns:prefix=uri. Question 1 XML Syntax and Basics (a) What are 'namespaces' used for in relation to XML and how are they applied to an XML document?(2 marks) Namespaces are used to avoid element name conflicts when using/mixing

More information

Interstage Business Process Manager Analytics V12.0 Studio Guide

Interstage Business Process Manager Analytics V12.0 Studio Guide Interstage Business Process Manager Analytics V12.0 Studio Guide Windows/Linux January 2012 Studio Guide Trademarks Trademarks of other companies are used in this documentation only to identify particular

More information

Reporting Guide V7.0. iprism Web Security

Reporting Guide V7.0. iprism Web Security V7.0 iprism Web Security 800-782-3762 www.edgewave.com 2001 2012 EdgeWave. All rights reserved. The EdgeWave logo, iprism and iguard are trademarks of EdgeWave Inc. All other trademarks and registered

More information

File Management Utility User Guide

File Management Utility User Guide File Management Utility User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held

More information

Product Feed for Magento 2

Product Feed for Magento 2 Product Feed for Magento 2 Magento 2 Extension User Guide Official extension page: Product Feed for Magento 2 Page 1 Table of contents: 1. How to modify original attributes..3 2. Creation of product feeds...5

More information

CRD - Crystal Reports Scheduler. Software Features. This document only outlines the main features of CRD

CRD - Crystal Reports Scheduler. Software Features. This document only outlines the main features of CRD CRD - Crystal Reports Scheduler Software Features This document only outlines the main features of CRD please contact us to arrange a demo to see every feature in action. Call +1 888 781 8966 or email

More information

iprism Reports Glossary Index

iprism Reports Glossary Index Table Of Contents Starting the Reports Manager... 2 Using the Reports Manager... 5 Quick start shortcuts... 6 Navigation menu... 6 Creating and editing reports... 7 Creating a new report... 7 About reports...

More information

Sticky and Proximity XML Schema Files

Sticky and Proximity XML Schema Files APPENDIX B Sticky and Proximity XML Schema Files This appendix describes how you can use the two XML schema files, included with the GSS, to describe and validate the sticky XML and proximity XML output

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

Batch Scheduler. Version: 16.0

Batch Scheduler. Version: 16.0 Batch Scheduler Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from, through

More information

OASIS SECURITY SERVICES DYNAMIC SESSION SPECIFICATION WORKING DRAFT

OASIS SECURITY SERVICES DYNAMIC SESSION SPECIFICATION WORKING DRAFT OASIS SECURITY SERVICES DYNAMIC SESSION SPECIFICATION WORKING DRAFT Last Updated: 05/10/01 SSTC filename: draft-sstc-sessions-dynamic-00.doc [Submitter s version of original submission: 0.51] Editor(s):

More information

OpenSplice RMI over DDS Version 6.x. Getting Started Guide

OpenSplice RMI over DDS Version 6.x. Getting Started Guide OpenSplice RMI over DDS Version 6.x Getting Started Guide OpenSplice RMI over DDS GETTING STARTED GUIDE Part Number: OS-RMIGSG Doc Issue 01, 28 Oct 11 ii Getting Started Guide CONTENTS Table of Contents

More information

TIBCO ActiveMatrix BPM Hawk Plug-in User's Guide

TIBCO ActiveMatrix BPM Hawk Plug-in User's Guide TIBCO ActiveMatrix BPM Hawk Plug-in User's Guide Software Release 3.0 May 2014 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

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

BPS 17 - Eclipse Chart Engine Scale/Axis/Grouping Enhancements

BPS 17 - Eclipse Chart Engine Scale/Axis/Grouping Enhancements BPS 17 - Eclipse Chart Engine Scale/Axis/Grouping Enhancements Draft 10: Dec 4 th, 2006 Abstract This document describes the enhancements for scale/axis/grouping support in the Eclipse Chart Engine. Document

More information

Orgnazition of This Part

Orgnazition of This Part Orgnazition of This Part Table of Contents Tutorial: Organization of This Part...1 Lesson 1: Starting JReport Enterprise Server and Viewing Reports...3 Introduction...3 Installing JReport Enterprise Server...3

More information

SAP HR Organizational Charting Interface (HR-OCI) Version 1.0. Customer Configuration Guide

SAP HR Organizational Charting Interface (HR-OCI) Version 1.0. Customer Configuration Guide SAP HR Organizational Charting Interface (HR-OCI) Version 1.0 Customer Configuration Guide CONFIGURATION GUIDE FOR THE SAP HR ORGANIZATIONAL CHARTING INTERFACE (HR-OCI)...4 PURPOSE...4 INTENDED AUDIENCE...4

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

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-RDWR]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr Getting Started Guide

SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr Getting Started Guide SILWOOD TECHNOLOGY LTD Safyr Metadata Discovery Software Safyr Getting Started Guide S I L W O O D T E C H N O L O G Y L I M I T E D Safyr Getting Started Guide Safyr 7.1 This product is subject to the

More information

Oracle B2B 11g Technical Note. Technical Note: 11g_005 Attachments. Table of Contents

Oracle B2B 11g Technical Note. Technical Note: 11g_005 Attachments. Table of Contents Oracle B2B 11g Technical Note Technical Note: 11g_005 Attachments This technical note lists the attachment capabilities available in Oracle B2B Table of Contents Overview... 2 Setup for Fabric... 2 Setup

More information

Importing Career Standards Benchmark Scores

Importing Career Standards Benchmark Scores Importing Career Standards Benchmark Scores The Career Standards Benchmark assessments that are reported on the PIMS Student Fact Template for Career Standards Benchmarks can be imported en masse using

More information

The main problem of DTD s...

The main problem of DTD s... The main problem of DTD s... They are not written in XML! Solution: Another XML-based standard: XML Schema For more info see: http://www.w3.org/xml/schema XML Schema (W3C) Thanks to Jussi Pohjolainen TAMK

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

MySciLEARN Student Update Administrator Guide. For system administrators managing the Fast ForWord and Reading Assistant programs

MySciLEARN Student Update Administrator Guide. For system administrators managing the Fast ForWord and Reading Assistant programs MySciLEARN Student Update Administrator Guide For system administrators managing the Fast ForWord and Reading Assistant programs September 2017 Copyright 1996 through 2017 Scientific Learning Corporation.

More information

HR-XML Schema Extension Recommendation, 2003 February 26

HR-XML Schema Extension Recommendation, 2003 February 26 HR-XML Schema Extension Recommendation, 2003 February 26 This version: HRXMLExtension.doc Previous version: HRXMLExtension-1_0.doc Editor: Paul Kiel, HR-XML, paul@hr-xml.org Authors: Paul Kiel, HR-XML,

More information

KYOCERA Net Admin User Guide

KYOCERA Net Admin User Guide KYOCERA Net Admin User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Scheduled Automatic Search using Dell Repository Manager

Scheduled Automatic Search using Dell Repository Manager Scheduled Automatic Search using Dell Repository Manager A Dell Technical White Paper Dell, Inc. Dell Repository Manager Team THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN TYPOGRAPHICAL

More information

Administration. STILOG IST, all rights reserved

Administration. STILOG IST, all rights reserved 2 Table of Contents I. Admin Center... 1 1. ACCESS... 1 Starting the Admin Center application... 1 2. General Settings... 2 Home page... 3 Client... 4 Application... 5 VPPortal... 6 3. Password Configuration...

More information

Cisco IOS XML-PI Command Reference

Cisco IOS XML-PI Command Reference Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 2017 Cisco Systems, Inc. All rights

More information

NETWRIX GROUP POLICY CHANGE REPORTER

NETWRIX GROUP POLICY CHANGE REPORTER NETWRIX GROUP POLICY CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 7.2 November 2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute

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

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-DPAD]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

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

XML. XML Namespaces, XML Schema, XSLT

XML. XML Namespaces, XML Schema, XSLT XML XML Namespaces, XML Schema, XSLT Contents XML Namespaces... 2 Namespace Prefixes and Declaration... 3 Multiple Namespace Declarations... 4 Declaring Namespaces in the Root Element... 5 Default Namespaces...

More information

Creating Coverage Zone Files

Creating Coverage Zone Files APPENDIXC The following sections describe the Coverage Zone file elements and provide several Coverage Zone file examples: Coverage Zone File Elements, page C-1 Zero-IP Based Configuration, page C-2 Coverage

More information

A NOVEL MECHANISM FOR MEDIA RESOURCE CONTROL IN SIP MOBILE NETWORKS

A NOVEL MECHANISM FOR MEDIA RESOURCE CONTROL IN SIP MOBILE NETWORKS A NOVEL MECHANISM FOR MEDIA RESOURCE CONTROL IN SIP MOBILE NETWORKS Noël CRESPI, Youssef CHADLI, Institut National des Telecommunications 9, rue Charles Fourier 91011 EVRY Cedex FRANCE Authors: N.Crespi,

More information

[MS-WORDLFF]: Word (.xml) Co-Authoring File Format in Document Lock Persistence Structure

[MS-WORDLFF]: Word (.xml) Co-Authoring File Format in Document Lock Persistence Structure [MS-WORDLFF]: Word (.xml) Co-Authoring File Format in Document Lock Persistence Structure Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes

More information

[MS-DPAD]: Alert Definition Data Portability Overview. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-DPAD]: Alert Definition Data Portability Overview. Intellectual Property Rights Notice for Open Specifications Documentation [MS-DPAD]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

IDOL Site Admin. Software Version: User Guide

IDOL Site Admin. Software Version: User Guide IDOL Site Admin Software Version: 11.5 User Guide Document Release Date: October 2017 Software Release Date: October 2017 Legal notices Warranty The only warranties for Hewlett Packard Enterprise Development

More information

Integrate Saint Security Suite. EventTracker v8.x and above

Integrate Saint Security Suite. EventTracker v8.x and above EventTracker v8.x and above Publication Date: June 6, 2018 Abstract This guide provides instructions to configure Saint Security Suite to send crucial events to EventTracker Enterprise by means of syslog.

More information

BEA WebLogic. Adapter for Siebel. Release Notes

BEA WebLogic. Adapter for Siebel. Release Notes BEA WebLogic Adapter for Siebel Release Notes Release 7.0 Document Date: December 2002 Copyright Copyright 2002 BEA Systems, Inc. All Rights Reserved. Copyright 2002 iway Software. All Rights Reserved.

More information

XDS Connector. Installation and Setup Guide. Version: 1.0.x

XDS Connector. Installation and Setup Guide. Version: 1.0.x XDS Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: November 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc.,

More information

Desk Tracker User Guide

Desk Tracker User Guide Desk Tracker User Guide Compendium Library Services LLC PO Box 82 Bellvue, CO 80512 Phone: (970) 472-7979 Email: info@compendiumlib.com Web: www.compendiumlib.com Contents Terms. 2 Basic Use. 2 Reports.

More information

PowerSchool Student and Parent Portal User Guide. https://powerschool.gpcsd.ca/public

PowerSchool Student and Parent Portal User Guide. https://powerschool.gpcsd.ca/public PowerSchool Student and Parent Portal User Guide https://powerschool.gpcsd.ca/public Released June 2017 Document Owner: Documentation Services This edition applies to Release 11.x of the PowerSchool software

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

Sage HRMS Sage 100 Advanced ERP G/L Link User Guide. April 2014

Sage HRMS Sage 100 Advanced ERP G/L Link User Guide. April 2014 Sage HRMS Sage 100 Advanced ERP G/L Link User Guide April 2014 This is a publication of Sage Software, Inc. Document version: April 11, 2014 Copyright 2014. Sage Software, Inc. All rights reserved. Sage,

More information

Publishing and Subscribing to Cloud Applications with Data Integration Hub

Publishing and Subscribing to Cloud Applications with Data Integration Hub Publishing and Subscribing to Cloud Applications with Data Integration Hub 1993-2015 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Blackboard 5. Instructor Manual Level One Release 5.5

Blackboard 5. Instructor Manual Level One Release 5.5 Bringing Education Online Blackboard 5 Instructor Manual Level One Release 5.5 Copyright 2001 by Blackboard Inc. All rights reserved. No part of the contents of this manual may be reproduced or transmitted

More information

VMware vcenter AppSpeed User s Guide AppSpeed 1.0 EN

VMware vcenter AppSpeed User s Guide AppSpeed 1.0 EN VMware vcenter AppSpeed User s Guide AppSpeed 1.0 EN-000213-01 VMware vcenter AppSpeed User s Guide You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/

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

Payflow Implementer's Guide FAQs

Payflow Implementer's Guide FAQs Payflow Implementer's Guide FAQs FS-PF-FAQ-UG-201702--R016.00 Fairsail 2017. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced, disclosed, or used

More information

Import Export CMS Blocks

Import Export CMS Blocks Import Export CMS Blocks User Manual https://www.magebees.com/magento-import-export-cmsblocks.html Import Export CMS Blocks By Support Ticket: - https://support.magebees.com, Support Email :- support@magebees.com

More information

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE SERVICE PACK 1 PART NO. E

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE SERVICE PACK 1 PART NO. E ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6.1 SERVICE PACK 1 PART NO. E17383-01 MARCH 2010 COPYRIGHT Copyright 1998, 2010, Oracle and/or its affiliates. All rights

More information

WHITE PAPER. Query XML Data Directly from SQL Server Abstract. DilMad Enterprises, Inc. Whitepaper Page 1 of 32

WHITE PAPER. Query XML Data Directly from SQL Server Abstract. DilMad Enterprises, Inc. Whitepaper Page 1 of 32 WHITE PAPER Query XML Data Directly from SQL Server 2000 By: Travis Vandersypen, President of DilMad Enterprises, Inc. Abstract XML is quickly becoming the preferred method of passing information, not

More information

Enterprise Reporting Solution. Argos 5.2 Release Guide. Product version 5.2

Enterprise Reporting Solution. Argos 5.2 Release Guide. Product version 5.2 Enterprise Reporting Solution Argos 5.2 Release Guide Product version 5.2 Last updated 11/9/2016 Trademark, Publishing Statement, and Copyright Notice 1998-2016 Evisions, Inc. All rights reserved. This

More information

User Manual. SmartLite WebQuiz SQL Edition

User Manual. SmartLite WebQuiz SQL Edition User Manual SmartLite WebQuiz SQL Edition SmartLite WebQuiz SQL All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

A Case Study: A Distributed Web Application

A Case Study: A Distributed Web Application E L E V E N A Case Study: A Distributed Web Application Internet technology has been changing people s lifestyles and business practice models. Now, the Internet itself is experiencing a paradigm shift.

More information

AvePoint Meetings Pro for ipad. User Guide

AvePoint Meetings Pro for ipad. User Guide AvePoint Meetings Pro 4.2.3 for ipad User Guide Issued April 2017 Table of Contents About AvePoint Meetings Pro for ipad... 3 Installing AvePoint Meetings Pro for ipad... 4 Getting Started... 5 Logging

More information

THOMSON REUTERS Tick History MARCH 2017 QUICK START GUIDE

THOMSON REUTERS Tick History MARCH 2017 QUICK START GUIDE THOMSON REUTERS Tick History MARCH 07 QUICK START GUIDE Thomson Reuters 07. All Rights Reserved. Thomson Reuters, by publishing this document, does not guarantee that any information contained herein is

More information

Adapter for Manugistics

Adapter for Manugistics BEA WebLogic Adapter for Manugistics Release Notes Release 7.0.3 Document Date: April 2003 Copyright Copyright 2003 BEA Systems, Inc. All Rights Reserved. Copyright 2003 iway Software. All Rights Reserved.

More information

Report Commander 2 User Guide

Report Commander 2 User Guide Report Commander 2 User Guide Report Commander 2.5 Generated 6/26/2017 Copyright 2017 Arcana Development, LLC Note: This document is generated based on the online help. Some content may not display fully

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

Generating Reports CHAPTER. Manual Reports

Generating Reports CHAPTER. Manual Reports CHAPTER 16 Cisco Prime CM enables you to generate comprehensive usage reports to: Identify problem areas and helps you to prevent future outages. Facilitate capacity planning for future deployment. It

More information

HP Intelligent Management Center Branch Intelligent Management System (BIMS) User Guide

HP Intelligent Management Center Branch Intelligent Management System (BIMS) User Guide HP Intelligent Management Center Branch Intelligent Management System (BIMS) User Guide Abstract This guide contains basic information for network administrators, engineers, and operators who use the Branch

More information

Chapter 12: Kansas Assessment Program (KAP) Appendix

Chapter 12: Kansas Assessment Program (KAP) Appendix 12.1 Chapter 12: Kansas Assessment Program (KAP) Appendix This Appendix contains information specific to the Kansas Assessment Program (KAP). This information may not apply to you if you are a member of

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

VMware AirWatch Integration with F5 Guide Enabling secure connections between mobile applications and your backend resources

VMware AirWatch Integration with F5 Guide Enabling secure connections between mobile applications and your backend resources VMware AirWatch Integration with F5 Guide Enabling secure connections between mobile applications and your backend resources Workspace ONE UEM v9.6 Have documentation feedback? Submit a Documentation Feedback

More information

HP Intelligent Management Center v7.1 Branch Intelligent Management System Administrator Guide

HP Intelligent Management Center v7.1 Branch Intelligent Management System Administrator Guide HP Intelligent Management Center v7.1 Branch Intelligent Management System Administrator Guide Abstract This document describes how to administer the HP IMC Branch Intelligent Management System. HP Part

More information

Perceptive Data Transfer

Perceptive Data Transfer Perceptive Data Transfer User Guide Version: 6.5.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

Documentation Connector for SLM 1.00

Documentation Connector for SLM 1.00 Connector for SLM 1.00 Home Release notes Get an insight of the latest features and everything that is new in this version. Get started Initiate your understanding on the concepts of Operations Connector

More information

ETSI TS V1.1.1 ( )

ETSI TS V1.1.1 ( ) TS 102 344 V1.1.1 (2004-07) Technical Specification Application session services 2 TS 102 344 V1.1.1 (2004-07) Reference DTS/ECMA-00290 Keywords CSTA, service 650 Route des Lucioles F-06921 Sophia Antipolis

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

Netsweeper Reporter Manual

Netsweeper Reporter Manual Netsweeper Reporter Manual Version 2.6.25 Reporter Manual 1999-2008 Netsweeper Inc. All rights reserved. Netsweeper Inc. 104 Dawson Road, Guelph, Ontario, N1H 1A7, Canada Phone: +1 519-826-5222 Fax: +1

More information

Application Server Release 2015

Application Server Release 2015 Application Server Release 2015 Disclaimer This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without notice.

More information

Vyapin Virtualization Management Suite

Vyapin Virtualization Management Suite Vyapin Virtualization Management Suite Last Updated: June 2016 Copyright 2016 Vyapin Software Systems Private Limited. All rights reserved. This document is being furnished by Vyapin Software Systems Private

More information

Nexio G-Scribe Data Source Wizard

Nexio G-Scribe Data Source Wizard Nexio G-Scribe Data Source Wizard 6/17/2014 175-100330-00 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

asexml SCHEMA CHANGE REQUEST

asexml SCHEMA CHANGE REQUEST asexml SCHEMA CHANGE REQUEST PREPARED BY: DOCUMENT REF: SCOTT MASKIEL CR55 VERSION: 1.5 DATE: 5 DECEMBER 2013 DRAFT/FINAL DRAFT Am,ttolion l:nergy 1\_.n,ketOperctor Ltd AeN 94 on Ol'J 327 Wv'IW.oemo.oom.ou

More information

Getting Started with Your Instructor Access License

Getting Started with Your Instructor Access License Getting Started with Your Instructor Access License The objective of this document is to provide an overview of your Moderator Access license and provide you with best practices and resources as you and

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

<!-- type definitions -->

<!-- type definitions --> User upload Batch filing schema for eflex batch filing.

More information