FRAMEWORK CODE: On Error Resume Next Dim objapp As Object Dim ObjSEEC As Object

Size: px
Start display at page:

Download "FRAMEWORK CODE: On Error Resume Next Dim objapp As Object Dim ObjSEEC As Object"

Transcription

1 Here is a piece of the sample Visual Basic code for the framework. Following are the steps mentions to specify about how to use the given sample code. Prerequisite: It is assumed that the action trigger is a button on the basic form. Else, the framework code may be placed appropriately in the action handler of the custom control. In the space between the Private Sub Command1_Click () and End Sub, Please copy / paste, the FRAMEWORK CODE provided below:- FRAMEWORK CODE: On Error Resume Next Dim objapp As Object Dim ObjSEEC As Object Dim Cleanup As Boolean Set objapp = Nothing Set ObjSEEC = Nothing Cleanup = False 'Create the object Set objapp = GetObject(, "SolidEdge.Application") If objapp Is Nothing Then MsgBox ("Could not locate an already running instance of SolidEdge Application, Creating a new instance") End If If Err.Number <> 0 Then Set objapp = CreateObject("SolidEdge.Application") objapp.visible = True Cleanup = True Err.Clear End If Set ObjSEEC = objapp.solidedgetce '############################################### 'Add API Specific Code Here '############################################### If Cleanup = True Then 'kill the instance of Solid Edge created objapp.quit 'Reset the dirty flag Cleanup = False End If 'Reset the object definition Set ObjSEEC = Nothing Set objapp = Nothing Note: Before creating any automation object we authenticate the user depending on the display_alerts flag set on the application. There are two conditions: Case 1 If the display-alert flag is ON then user will see the Auto-Login dialog where he can do AutoLogin or he can directly type in his UserName and password to authenticate him. If the user provides the wrong information then the value of the hr will return as S_FALSE. Case 2 If the value of the flag is OFF, then the authentication of the user is done by silent auto login. (i.e. without showing any Login dialog)

2 1 Sample Code (Required) Since each API has sample code associated with it, the code samples are placed alongside the API details. 1.1 TeamCenter Automation APIs CheckInDocumentsToTeamCenterServer CheckInDocumentsToTeamCenterServer Purpose: For checking in the documents checked out by the user from the TeamCenter server. User can pass multiple files to be Checkin/Upload at a single time. The API also honors the DisplayAlerts flag. If the flag is TRUE then Upload dialog will be shown while uploading and if the flag is FALSE then the dialog will not show. Syntax: Call ObjSEEC.CheckInDocumentsToTeamCenterServer (varinputlist, bonlyupload) varinputlist (Input): The variant array which contains the file list to be Checked in/ Upload. bonlyupload (Input): It is a Boolean flag. It has following possible values: o TRUE In case where it is required to only upload the given file to the Teamcenter database but don t want to check it in. o FALSE In case where it is required to both upload as well as check in. Note: The case in which if the display_alerts flag is off and the CPD dialog is suppressed, then it is the responsibility of the caller to put the item id/item rev correctly into the file storage. He can use the API AssignItemID to assign the item id/item rev. If the document which is going to be uploaded is without item-id in the document number field then the value of the hr will be returned as E_INVALIDARG. Dim varinputlist(1) As Variant varinputlist (0) = "F:\ par" varinputlist (1) = "F:\ par" Dim bonlyupload As Boolean bonlyupload = False Call ObjSEEC.CheckInDocumentsToTeamCenterServer(varInputList, bonlyupload) CheckOutDocumentsFromTeamCenterServer Purpose: Syntax: CheckOutDocumentsFromTeamCenterServer To Download and CheckOut the file from the TeamCenter Server. Call ObjSEEC.CheckOutDocumentsFromTeamCenterServer (FileItemID, FileItemRevID, bonlydownload) FileItemID (Input): Specifies the item-id of the item FileItemRevID(Input): Specifies the item-rev of the item bonlydownload (Input): It is a Boolean flag. It has following possible values:

3 o o TRUE In case where it is required to only download the given item from the Teamcenter database but don t want to check it out. FALSE In case where it is required to both download as well as checkout. Dim FileItemID As String Dim bonlydownload As Boolean FileItemID = "009431" bonlydownload = False Call ObjSEEC.CheckOutDocumentsFromTeamCenterServer(FileItemID, FileItemRevID, bonlydownload) DownloadDocumentsFromServer Purpose: Syntax: DownloadDocumentsFromTeamCenterServer Only to download the file from the TeamCenter Server. Call ObjSEEC.CheckOutDocumentsFromTeamCenterServer (FileItemID, FileItemRevID, bonlydownload) FileItemID (Input): Specifies the item-id of the item FileItemRevID(Input): Specifies the item-rev of the item bonlydownload (Input): It is a Boolean flag. It has following possible values: o o Dim FileItemID As String Dim bonlydownload As Boolean FileItemID = "009431" bonlydownload = True TRUE In case where it is required to only download the given item from the Teamcenter database but don t want to check it out. FALSE In case where it is required to both download as well as checkout. Call ObjSEEC.CheckOutDocumentsFromTeamCenterServer(FileItemID, FileItemRevID, bonlydownload)

4 1.1.4 DoesTeamCenterFileExists DoesTeamCenterFileExists Purpose: This API is used to check the availability of the UID in the TeamCenter database. Syntax: Call ObjSEEC.DoesTeamCenterFileExists(FileItemItemID, FileItemRevID, bisfileexists) Parameters: FileItemItemID (Input): Specifies the item-id of the item FileItemRevID (Input): Specifies the item-rev of the item bisfileexists (Output): It is a Boolean value. It has following possible values. o True If the given UID is present on the teamcenter server. o False - If the given UID is not present on the teamcenter server. Dim FileItemItemID As String Dim bisfileexists As Boolean FileItemItemID = "009431" Call ObjSEEC.DoesTeamCenterFileExists(FileItemItemID, FileItemRevID, bisfileexists) MsgBox (bisfileexists) GetDocumentUID GetDocumentUID Purpose: Returns the UID for the local path. Syntax: Call ObjSEEC.GetDocumentUID(strFileName, FileItemItemID, FileItemRevID) Parameters: strfilename (Input) : Specifies the local cache path of the file FileItemItemID (Output) : It is an output parameter and Specifies the item-id of the item FileItemRevID (Output) : It is an output parameter and Specifies the item-rev of the item Dim strfilename As String Dim FileItemItemID As String strfilename = "F:\ par" Call ObjSEEC.GetDocumentUID(strFileName, FileItemItemID, FileItemRevID) MsgBox (FileItemItemID) MsgBox (FileItemRevID) GetPDMCachePath GetPDMCachePath Purpose: Returns the cache path of an active connection. Syntax: Call ObjSEEC.GetPDMCachePath(bstrCacheFilePath)

5 Parameters: bstrcachefilepath (OutPut): Specifies the Cache path of an active connection Dim bstrcachefilepath As String Call ObjSEEC.GetPDMCachePath(bstrCacheFilePath) MsgBox (bstrcachefilepath) GetTeamCenterMode GetTeamCenterMode Purpose: Returns a Boolean parameter to specify whether the TeamCenter Mode is ON/OFF Syntax: Call ObjSEEC.GetTeamCenterMode(bGetTeamCenterMode) Parameters: bgetteamcentermode (OutPut) :It is an output parameter which has two possible values. o True: When the Team Center Mode is ON. o False: When the Team Center Mode is OFF. Dim bgetteamcentermode As Boolean Call ObjSEEC.GetTeamCenterMode(bGetTeamCenterMode) MsgBox (bgetteamcentermode) IsTeamCenterFileCheckedOut IsTeamCenterFileCheckedOut Purpose: The purpose of this API is to check the checkout status of the given file. Syntax: icheckedout = ObjSEEC.IsTeamCenterFileCheckedOut(FileName) Parameters: FileName(Input): The local cache file path of the file Note: This API returns an integer value icheckedout specifying whether the file is checked out to current user or another user or not checked out to any user. The value of the element icheckedout can be as follows: 0 Not Checked out to any body. 1 Checked out to me (i.e. current User) 2 Checked out to other user. Dim FileName As String

6 Dim icheckedout As Integer FileName = "F:\ par" icheckedout = ObjSEEC.IsTeamCenterFileCheckedOut(FileName) MsgBox (icheckedout) SetTeamCenterMode SetTeamCenterMode Purpose: To toggle the TeamCenter Mode between ON\OFF. Syntax: Call ObjSEEC.SetTeamCenterMode(bMode) Parameters: bmode (Input): It is a boolean flag which is used to specify whether to make the TeamCenter Mode ON\OFF. It has two possible values: o True: Make TeamCenter mode ON. o False: Make TeamCenter mode OFF. Dim bmode As Boolean bmode = True Call ObjSEEC.SetTeamCenterMode(bMode) ValidateLogin ValidateLogin Purpose: This API is used to login into teamcenter. It accepts username/password if it is provided for the login purpose. Please note that from V20 the parameters required for this API have been changed. Following are the two cases for V19 and V20. Case 1. V19: Syntax: Call ObjSEEC.ValidateLogin( UserName, Password, Group) Parameters: UserName (Input): Specifies the UserName of the user to authenticate Password (Input): Specifies the password of the user to authenticate Group (Input): Specifies the group to which the user belongs. The default group is dba Note: The API actually uses the username/password if it is supplied to log in to the teamcenter. The behavior of the authentication process depends on the display_alerts flag. If the display_alerts flag is ON then user will see the Auto-Login dialog (for the login purpose) where he can do AutoLogin or he can directly type in his UserName and password to authenticate him. If the user provides the wrong information then the value of the hr will return as S_FALSE. If the value of the flag is OFF, then Validatelogin () method will use the username/password that is supplied, to login into teamcenter. But this time, no login dialog will be shown and the login will be done silently.

7 Dim UserName As String Dim Password As String Dim Group As String UserName = "mendke" Password = "mendke" Group = "dba" Call ObjSEEC.ValidateLogin(UserName, Password, Group) Case 2. V20: Syntax: Call ObjSEEC.ValidateLogin( UserName, Password, Group, Role, DBURL) Parameters: UserName (Input): Specifies the UserName of the user to authenticate Password (Input): Specifies the password of the user to authenticate Group (Input): Specifies the group to which the user belongs. The default group is dba Role (Input): Specifies the Role of the User in teamcenter. DBURL(Input): Specifies the server name to which the user wants to connect. Note: In V20 also, the behavior of the authentication process depends on the display_alerts flag. If the display_alerts flag is ON then user will see the Login dialog where he can directly type in his username, password, group, userrole and DatabaseUrl to authenticate him. If the user provides the wrong information then the value of the hr will return as S_FALSE. (Note: Please note that in V20 there is no facility of auto login.) If the value of the display_alerts flag is OFF, then Validatelogin () method will use the username, password, group, userrole and DatabaseUrl that is supplied, to login into teamcenter. But this time, no login dialog will be shown and the login will be done silently. Dim UserName As String Dim Password As String Dim Group As String Dim Role As String Dim DBURL As String UserName = "mendke" Password = "mendke" Group = "Engineering" Role = "Designer" DBURL = " Call ObjSEEC.ValidateLogin(UserName, Password, Group, Role, DBURL)

8 AssignItemID AssignItemID Purpose: This API is used to generate the new Item ID and Item Rev (i.e. GUID). Syntax: Call ObjSEEC.AssignItemID(FileItemItemID, FileItemRevID) Parameters: FileItemItemID (Output): Returns the newly created Item Id. FileItemRevID (Output): Returns the newly created Item Rev. Dim FileItemItemID As String 'Initialise the variables FileItemItemID = "" FileItemRevID = "" Call ObjSEEC.AssignItemID(FileItemItemID, FileItemRevID) MsgBox(FileItemItemID) MsgBox(FileItemRevID) UndoCheckOutDocumentsFromServer OnUndoCheckOutDocuments Purpose: To undo the check-out operation for specific files on the TeamCenter server. Syntax: Call ObjSEEC. OnUndoCheckOutDocuments (varinputlist) varinputlist (Input): The variant array which contains the file list to be UndoCheckOut. Dim varinputlist(1) As Variant varinputlist (0) = "F:\ asm" varinputlist (1) = "F:\ asm" Call ObjSEEC. OnUndoCheckOutDocuments (varinputlist) SynchronizeDocumentsInCache API Name Purpose Syntax : OnSynchronizeFile : To synchronize a list of out of date documents in local cache with server. : ObjSEEC.OnSynchronizeFile (varinputlist) Parameters varinputlist (Input): The variant array which contains the file list to be Synchronize.

9 Dim varinputlist(1) As Variant varinputlist (0) = "F:\ asm" varinputlist (1) = "F:\ asm" Call ObjSEEC.OnSynchronizeFile (varinputlist) Note: The same API can be called for SynchronizeAllDocumentsInCache DeleteFilesFromCache API Name Purpose Syntax : DeleteFilesFromCache : To delete the files present in cache. : ObjSEEC.DeleteFilesFromCache (psacachefiles) Parameters PsaCacheFiles (Input): The variant array which contains the file list to be Deleted from Cache. Dim psacachefiles (1) As Variant varinputlist (0) = "F:\ par" varinputlist (1) = "F:\ asm" Call ObjSEEC.DeleteFilesFromCache(psaCacheFiles) ImportDocumentsToServer API Name : ImportDocumentsToServer Purpose : To Import the unmanaged document to TeamCenter Server. Syntax :CallObjSEEC.ImportDocumentsToServer( NumberOfDocumentsFoldersToImport, ListOfDocumentsFoldersToImport, UserName, Password, Group, Role, DBURL) Parameters NumberOfDocumentsFoldersToImport (Input): The number of files and folders to be imported. ListOfDocumentsFoldersToImport(input) : Name of the folder of a file to be imported.

10 UserName (Input): Specifies the UserName of the user to authenticate. Password (Input): Specifies the password of the user to authenticate Group (Input): Specifies the group to which the user belongs. The default group is dba Role (Input): Specifies the Role of the User in teamcenter. DBURL(Input): Specifies the server name to which the user wants to connect. Dim NumberOfDocumentsFoldersToImport As Long Dim ListOfDocumentsFoldersToImport(0) As Variant Dim UserName As String Dim Password As String Dim Group As String Dim Role As String Dim DBURL As String NumberOfDocumentsFoldersToImport = 1 ListOfDocumentsFoldersToImport(0) = "D:\import" UserName = "shedage" Password = "shedage" Group = "Engineering" Role = "Designer" DBURL = Call ObjSEEC.ImportDocumentsToServer(NumberOfDocumentsFoldersToImport, ListOfDocumentsFoldersToImport, UserName, Password, Group, Role, DBURL) GetOutOfDateDocuments API Name Purpose Syntax : GetOutOfDateDocuments : To get out of Date Documents in cache. : ObjSEEC.GetOutOfDateDocuments (plistoffiles) Parameters plistoffiles (output): Returns the list of out of date documents from cache.

11 Dim plistoffiles As Variant ObjSEEC.GetOutOfDateDocuments (plistoffiles) GetUserLogMessages API Name Purpose Syntax : GetUserLogMessages : Get the user log messages generated during a session. : ObjSEEC.GetOutOfDateDocuments (pusermessages) Parameters pusermessages (output): Returns the user log messages generated during a session Dim pusermessages As Variant Call ObjSEEC.GetUserLogMessages(pusermessages) SaveASToTeamCenterServer Purpose: Syntax: SaveAsToTeamCenter Saves the document to the team center server with new properties. Call ObjSEEC.SaveAsToTeamCenter(FileItemID, FileItemRevID, FileDataSetName, FileRevisionRule, FolderName) FileItemID (Input): Specifies the item-id of the item FileItemRevID(Input): Specifies the item-rev of the item FileDataSetName (Input): DataSetName of the file FileRevisionRule(input): Revision Rule of the file. FolderName(input): name of the folder where the new file supposed to save. Note: - Last 2 parameters are optional

12 Dim FileItemID As String Dim FileDataSetName As String Dim FileRevisionRule As String Dim FolderName As String FileItemID = "020670" FileDataSetName = " par" FileRevisionRule = "" FolderName = "" Call ObjSEEC.SaveAsToTeamCenter(FileItemID, FileItemRevID, FileDataSetName, FileRevisionRule, FolderName) ReviseToTeamCenterServer Purpose: Syntax: ReviseToTeamCenter Saves the document to the team center server with new properties. Call ObjSEEC.ReviseToTeamCenter(FileItemID, FileItemRevID, FileDataSetName, FileRevisionRule, FolderName) FileItemID (Input): Specifies the item-id of the item FileItemRevID(Input): Specifies the item-rev of the item FileDataSetName (Input): DataSetName of the file FileRevisionRule(input): Revision Rule of the file. FolderName(input): name of the folder where the new file supposed to save. Note:- Last 2 parameters are optional Dim FileItemID As String Dim FileDataSetName As String Dim FileRevisionRule As String Dim FolderName As String FileItemID = "020670" FileDataSetName = " par" FileRevisionRule = "" FolderName = "" Call ObjSEEC.SToTeamCenter(FileItemID, FileItemRevID, FileDataSetName, FileRevisionRule, FolderName)

13 OnGetWhereUsedForAutomation Purpose: Syntax: OnGetWhereUsedForAutomation Gives the list of documents for whereused. Call ObjSEEC. OnGetWhereUsedForAutomation (FileItemID, FileItemRevID, FileDataSetName, listoffiles) FileItemID (Input): Specifies the item-id of the item FileItemRevID(Input): Specifies the item-rev of the item FileDataSetName (Input): DataSetName of the file Listoffiles(output): Returns the list of whereused results. Dim FileItemID As String Dim FileDataSetName As String Dim listoffiles As Variant FileItemID = "020670" FileDataSetName = " par" Call ObjSEEC. OnGetWhereUsedForAutomation (FileItemID, FileItemRevID, FileDataSetName, listoffiles) CreateNewProject CreateNewProject Purpose: Creates new project with the name given by the user. Syntax: Call ObjSEEC.CreateNewProject(ProjectName) ProjectName (Input): Specifies the Name of the new project which user wants to create. Dim ProjectName As String ProjectName = "TEST" Call ObjSEEC.CreateNewProject(FileItemID)

14 DeleteProject DeleteProject Purpose: This function will delete a project given by the user. Syntax: Call ObjSEEC.CreateNewProject(ProjectName) ProjectName (Input): Specifies the Name of the project which user wants to Delete. Dim ProjectName As String ProjectName = "TEST" Call ObjSEEC.DeleteProject(ProjectName) DeleteAllProjects DeleteAllProjects Purpose: This function will delete all projects created by user and after it creates a default project. Syntax: Call ObjSEEC.CreateNewProject() Call ObjSEEC.DeleteAllProjects() DownladDocumentsFromServerWithOptions Purpose: Syntax: DownladDocumentsFromServerWithOptions This function will download the document with options provided by user. ObjSEEC.DownladDocumentsFromServerWithOptions(FileItemID, FileItemRevID, FileDataSetName, FileRevisionRule, FileVariantRule, vbreadonly, vballlevel) FileItemID (Input): Specifies the Item Id of the file which user wants to download. FileItemRevID (Input): Specifies the Revision of the file to be downloaded. FileDataSetName (Input): Specifies the Data set name of the file which is to be downloaded. FileRevisionRule (Input): Revision rule of the file. FileVariantRule (Input): Variant rule of the file. vbreadonly (Input): It is a Boolean flag. It has following possible values: o o TRUE In case where it is required to only download the given item from the Teamcenter database but don t want to check it out. FALSE In case where it is required to both download as well as checkout.

15 vballleveli(input) It is the Boolean flag. Which will decide the download level of the file o TRUE - This is going to download the files for one level. o FALSE- Going to download the files for ALL levels. Dim FileItemID As String Dim FileDataSetName As String Dim FileRevisionRule As String Dim FileVariantRule As String Dim vbreadonly As Boolean Dim vballlevel As Boolean FileItemID = "020147" FileDataSetName = " par" FileRevisionRule = "latest working" FileVariantRule = "" vbreadonly = True vballlevel = False ObjSEEC.DownladDocumentsFromServerWithOptions(FileItemID, FileItemRevID, FileDataSetName, FileRevisionRule, FileVariantRule, vbreadonly, vballlevel) GetListOfIndirectFilesForGivenFile Purpose: Syntax: GetListOfIndirectFilesForGivenFile This function will Return the list of indirect file names for the given file. Call ObjSEEC.GetListOfIndirectFilesForGivenFile(FileItemID, FileItemRevID, FileDataSetName, FileRevisionRule, FileVariantRule, listoffiles) FileItemID (Input): Specifies the Item Id of the file which user wants to download. FileItemRevID (Input): Specifies the Revision of the file to be downloaded. FileDataSetName (Input): Specifies the Data set name of the file which is to be downloaded. FileRevisionRule (Input): Revision rule of the file. FileVariantRule (Input): Variant rule of the file. listoffiles (output): Returns the names of the indirect file names.

16 Dim FileItemID As String Dim FileDataSetName As String Dim FileRevisionRule As String Dim FileVariantRule As String FileItemID = "020147" FileDataSetName = " par" FileRevisionRule = "latest working" FileVariantRule = "" Call ObjSEEC.GetListOfIndirectFilesForGivenFile(FileItemID, FileItemRevID, FileDataSetName, FileRevisionRule, FileVariantRule, listoffiles) GetMappedPropertiesForGivenFile Purpose: Syntax: GetListOfIndirectFilesForGivenFile This function will Return the list of indirect file names for the given file. Call ObjSEEC.GetListOfIndirectFilesForGivenFile(FileItemID, FileItemRevID, FileDataSetName, FileRevisionRule, FileVariantRule, listoffiles) FileItemID (Input): Specifies the Item Id of the file which user wants to download. FileItemRevID (Input): Specifies the Revision of the file to be downloaded. FileDataSetName (Input): Specifies the Data set name of the file which is to be downloaded. listoffiles (output): Returns the mapped property name and values of the given file. Dim FileItemID As String Dim FileDataSetName As String Dim listoffiles As Variant FileItemID = "022456" FileDataSetName = " par" Call ObjSEEC.GetMappedPropertiesForGivenFile(FileItemID, FileItemRevID, FileDataSetName, listoffiles) InitializeNewFileDataManager. InitializeNewFileDataManager Purpose: This function will initialize the new file data manager. Initialization of New File Data Manager is required before saving or doing Save-As of any file to Teamcenter using generic automation APIs for Save or SaveAs.

17 Syntax: objseec.initializenewfiledatamanager(itemid_beforesaveas, Rev_BeforeSaveAs, strnewfilename, True, PropInfo, OldNewITemIDRevFileName) ItemID_BeforeSaveAs (Input): Specifies the Item Id of the file which user wants to SaveAs.(It is not required if user wants to do save) Rev_BeforeSaveAs (Input): Specifies the Revision of the file for which user wants to SaveAs..(It is not required if user wants to do save) strnewfilename (Input): Specifies the new file name of the file for which user wants to do Save As or save. Bool BIsCalledForSaveAs(input) For SaveAs true, For New File Save False. PropInfo (input): Object array of properties to be given for new file. OldNewITemIDRevFileName (output):this will be out in case of SaveAs only.object array of Old and new data of file such as ItemID,Rev and FileName. Dim OldNewITemIDRevFileName(,) As Object = Nothing Dim PropInfo(3, 2) As Object PropInfo(0, 0) = "Item ID" Property Display Name PropInfo(0, 1) = "Document Number" Property Internal Name PropInfo(0, 2) = strnewitemid PropInfo(1, 0) = "Revision" PropInfo(1, 1) = "Revision" PropInfo(1, 2) = strnewrev PropInfo(2, 0) = "Item Name" PropInfo(2, 1) = "Project Name" PropInfo(2, 2) = strnewitemid PropInfo(3, 0) = "Dataset Name" PropInfo(3, 1) = "Dataset Name" PropInfo(3, 2) = strnewitemid + "/" + strnewrev objseec.initializenewfiledatamanager(itemid_beforesaveas, Rev_BeforeSaveAs, strnewfilename, True, PropInfo, OldNewITemIDRevFileName)

#SEU Welcome! Solid Edge University 2016

#SEU Welcome! Solid Edge University 2016 #SEU 2016 Welcome! Solid Edge University 2016 Realize innovation. Solid Edge PDM - Teamcenter Greg Baldwin Realize innovation. Confidence Using Design Intent Table of contents Software Compatibility Active

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture Scripting Guide Version: 5.6.x Written by: Product Knowledge, R&D Date: September 2016 2015 Perceptive Software. All rights reserved. Lexmark and Perceptive Software are

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture Scripting Guide Version: 5.7.x Written by: Product Development, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

Mobile Client. User Manual. Version: 2.0.0

Mobile Client. User Manual. Version: 2.0.0 Mobile Client User Manual Version: 2.0.0 Index Sr. No. Topic Page 1 Requirement 3 2 How to use Mobile Client 4 3 Compose Message 5 4 Select Contacts 6 5 Manage Contacts 17 6 Manage Distribution List 23

More information

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

More information

Oracle WebCenter Forms Recognition

Oracle WebCenter Forms Recognition Oracle WebCenter Forms Recognition Scripting User s Guide 11g Release 1 (11.1.1.8.0) E50190-01 November 2013 WebCenter Forms Recognition 11g Release 1 (11.1.1.8.0) Copyright 2009, 2013 Oracle and/or its

More information

SIMATIC. STEP 7 PLUS TIA Portal Teamcenter Gateway. Introduction to TIA Portal Teamcenter Gateway 1. System requirements 2

SIMATIC. STEP 7 PLUS TIA Portal Teamcenter Gateway. Introduction to TIA Portal Teamcenter Gateway 1. System requirements 2 Introduction to TIA Portal Teamcenter Gateway 1 System requirements 2 SIMATIC STEP 7 PLUS Basics of working with TIA Portal Teamcenter Gateway 3 Notes on the installation sequence for the TIA Portal and

More information

Create a Login System in Visual Basic. Creating a login system. Start a new visual basic Windows Forms application project. Call it Login System

Create a Login System in Visual Basic. Creating a login system. Start a new visual basic Windows Forms application project. Call it Login System Creating a login system Start a new visual basic Windows Forms application project Call it Login System Change the form TITLE from Form1 to Login System Add the following to the form Component Text Name

More information

End User Manual. December 2014 V1.0

End User Manual. December 2014 V1.0 End User Manual December 2014 V1.0 Contents Getting Started... 4 How to Log into the Web Portal... 5 How to Manage Account Settings... 6 The Web Portal... 8 How to Upload Files in the Web Portal... 9 How

More information

Text Input and Conditionals

Text Input and Conditionals Text Input and Conditionals Text Input Many programs allow the user to enter information, like a username and password. Python makes taking input from the user seamless with a single line of code: input()

More information

Configuring Microsoft Outlook to Connect to Hosted Exchange Service

Configuring Microsoft Outlook to Connect to Hosted Exchange Service Configuring Microsoft Outlook to Connect to Hosted Exchange Service Configuring Microsoft Outlook for Hosted Exchange Service Version: 1.0 Updated on: April 27, 2011 Page 1 of 7 TABLE OF CONTENTS Configuring

More information

RouteMobile Mobile Client Manual for Android Version: 2.0

RouteMobile Mobile Client Manual for Android Version: 2.0 RouteMobile Mobile Client Manual for Android Version: 2.0 Route Mobile Limited 2018. All rights reserved 1 Contents Installation... 3 Getting Started... 5 Login Page... 6 Main Screen... 7 Send SMS... 9

More information

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6)

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) AGENDA 3. Executing VBA

More information

SHAREMONITOR SETUP GUIDE

SHAREMONITOR SETUP GUIDE SHAREMONITOR A ransomware encryption monitor for server shared folders. SETUP GUIDE Page 1 of 22 Copyright ABit Consulting 2016 TABLE OF CONTENTS Document Revisions... 4 Installation... 5 Registration...

More information

Brainware Distiller. Scripting Reference Guide. with Supervised Learning. Version 5.4 SP1 June 2012 Prepared by: Brainware Engineering

Brainware Distiller. Scripting Reference Guide. with Supervised Learning. Version 5.4 SP1 June 2012 Prepared by: Brainware Engineering Brainware Distiller with Supervised Learning Scripting Reference Guide Version 5.4 SP1 June 2012 Prepared by: Brainware Engineering Copyright 2012 by Brainware, Inc. All rights reserved. No part of this

More information

Advanced ASP.NET Identity. Brock Allen

Advanced ASP.NET Identity. Brock Allen Advanced ASP.NET Identity Brock Allen brockallen@gmail.com http://brockallen.com @BrockLAllen Advanced The complicated bits of ASP.NET Identity Brock Allen brockallen@gmail.com http://brockallen.com @BrockLAllen

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture with Supervised Learning Scripting Reference Guide Version 5.5 SP1 November 2012 Prepared by: Perceptive Engineering Copyright 1991-2012 by Perceptive Software, Inc. All

More information

00:33 Network Loses Connection. 00:30 Health Check. Sweep all files in the monitored folder regardless of when deposited (i.e., process ALL files).

00:33 Network Loses Connection. 00:30 Health Check. Sweep all files in the monitored folder regardless of when deposited (i.e., process ALL files). FOLDER SWEEP OVERVIEW A common use of EFT Server s Folder Monitor rule is to detect files and move them to a different location on the network for processing. Mission critical operations require all files

More information

8.0 Help for Community Managers Release Notes System Requirements Administering Jive for Office... 6

8.0 Help for Community Managers Release Notes System Requirements Administering Jive for Office... 6 for Office Contents 2 Contents 8.0 Help for Community Managers... 3 Release Notes... 4 System Requirements... 5 Administering Jive for Office... 6 Getting Set Up...6 Installing the Extended API JAR File...6

More information

SharePoint General Instructions

SharePoint General Instructions SharePoint General Instructions Table of Content What is GC Drive?... 2 Access GC Drive... 2 Navigate GC Drive... 2 View and Edit My Profile... 3 OneDrive for Business... 3 What is OneDrive for Business...

More information

The name of this type library is LabelManager2 with the TK Labeling Interface reference.

The name of this type library is LabelManager2 with the TK Labeling Interface reference. Page 1 of 10 What is an ActiveX object? ActiveX objects support the COM (Component Object Model) - Microsoft technology. An ActiveX component is an application or library that is able to create one or

More information

How to modify convert task to use variable value from source file in output file name

How to modify convert task to use variable value from source file in output file name Page 1 of 6 How to modify convert task to use variable value from source file in output file name The default SolidWorks convert task add-in does not have support for extracting variable values from the

More information

Open Source Digitalization Application. User s Manual

Open Source Digitalization Application. User s Manual Open Source Digitalization Application User s Manual Easyndexer by Raúl Diez This is version 1.0 of the Easyndexer user s manual. This work is licensed under the Creative Commons Attribution 3.0 Unported

More information

CATERPILLAR APPS COMMUNITY (CAC) Analytics Integration Guide

CATERPILLAR APPS COMMUNITY (CAC) Analytics Integration Guide CATERPILLAR APPS COMMUNITY (CAC) Analytics Integration Guide COPYRIGHT NOTICE This Documentation is the property of Caterpillar. All ideas and information contained in this document are the intellectual

More information

The Connector. Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual

The Connector.  Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual The Connector Version 1.2 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2008 www.the-connector.com Page 1 of 86 Copyright and Disclaimer All rights

More information

Create and Manage Partner Portals

Create and Manage Partner Portals Create and Manage Partner Portals Salesforce, Summer 18 @salesforcedocs Last updated: June 20, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Mobile Login Extension User Manual

Mobile Login Extension User Manual Extension User Manual Magento provides secured and convenient login to Magento stores through mobile number along with OTP. Table of Content 1. Extension Installation Guide 2. API Configuration 3. General

More information

Magento Survey Extension User Guide

Magento Survey Extension User Guide Magento Survey Extension User Guide Page 1 Table of Contents To Access Plugin, Activate API Key... 3 Create Questions... 5 Manage Survey... 6 Assign Question to Survey... 7 Reveal Survey In Three Ways...

More information

Building Block Installation - Admins

Building Block Installation - Admins Building Block Installation - Admins Overview To use your Blackboard Server with Panopto, you first need to install the Panopto Building Block on your Blackboard server. You then need to add Blackboard

More information

CVYS Online Registration FAQ!

CVYS Online Registration FAQ! CVYS Online Registration FAQ 1. How do I register my child, I have never registered a child with CVYS before? STEP 1: Go to the CVYS home page (www.cvyouthsoccer.org) and click REGISTER: STEP 2: Create

More information

One-Time PIN. User Guide

One-Time PIN. User Guide One-Time PIN User Guide Table of Contents Online Banking Setting up One-Time PIN Registering your device Logging in with One-Time PIN Changing One-Time PIN Delivery Method Mobile Banking Setting up One-Time

More information

Printing Achievement Series Answer Sheets

Printing Achievement Series Answer Sheets Printing Achievement Series Answer Sheets 1. Login to the designated Achievement Series computer in your building. a. Username: scantron b. Password: scantron 2. Launch the Scan Station application. Likely

More information

A Back-End Link Checker for Your Access Database

A Back-End Link Checker for Your Access Database A Back-End for Your Access Database Published: 30 September 2018 Author: Martin Green Screenshots: Access 2016, Windows 10 For Access Versions: 2007, 2010, 2013, 2016 Working with Split Databases When

More information

DHIS 2 Android User Manual 2.22

DHIS 2 Android User Manual 2.22 DHIS 2 Android User Manual 2.22 2006-2016 DHIS2 Documentation Team Revision 1925 Version 2.22 2016-11-23 11:33:56 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

PyZabbixObj Documentation

PyZabbixObj Documentation PyZabbixObj Documentation Release 0.1 Fabio Toscano Aug 26, 2017 Contents Python Module Index 3 i ii PyZabbixObj Documentation, Release 0.1 PyZabbixObj is a Python module for working with Zabbix API,

More information

Lucid Key Server. Help Documentation.

Lucid Key Server. Help Documentation. Lucid Key Server Help Documentation www.lucidcentral.org Help for the Lucid Key Server Welcome to the Lucid Key Server, one member of the Lucid family of products. For more information on other Lucid and

More information

ServiceNow Deployment Guide

ServiceNow Deployment Guide ServiceNow Deployment Guide (For Eureka release and forward) Okta Inc. 301 Brannan Street, 3 rd Floor San Francisco, CA, 94107 info@okta.com 1-888-722-7871 Contents Overview... 3 Active Directory Integration...

More information

How SMART (Secure Malware Alert and Removal Tool) Works

How SMART (Secure Malware Alert and Removal Tool) Works FAQ How SMART (Secure Malware Alert and Removal Tool) Works 1. SMART downloads a copy of the files from your server to ours. 2. SMART scans a file for any malicious code on our end. 3. From here, there

More information

unsuccessful attempts.

unsuccessful attempts. Step by Step Procedure for Resetting Transaction Password by the User. when the user has been disabled after 3 unsuccessful attempts. The following module helps the Customers in Resetting Transaction password

More information

External HTTPS Trigger AXIS Camera Station 5.06 and above

External HTTPS Trigger AXIS Camera Station 5.06 and above HOW TO External HTTPS Trigger AXIS Camera Station 5.06 and above Created: October 17, 2016 Last updated: November 19, 2016 Rev: 1.2 1 Please note that AXIS does not take any responsibility for how this

More information

Configuration Guide. Version 1.5.9

Configuration Guide. Version 1.5.9 Configuration Guide Version 1.5.9 Copyright TeamExpand 22/07/2015 1. Overview 2 Table of contents 1. Overview... 3 1.1 Purpose... 3 1.2 Preconditions... 3 1.3 Applying changes... 5 1.3.1 Sync via UI...

More information

Voice Mail User s Guide

Voice Mail User s Guide Voice Mail User s Guide Introduction The MX voice mail server configures mail boxes and accesses voice messages for users, ACD groups, and operators. This user s guide describes voice mail server procedures

More information

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

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

More information

Continuous Integration, Continuous Deployment and Continuous Testing by HP Codar using ALM and Jenkins

Continuous Integration, Continuous Deployment and Continuous Testing by HP Codar using ALM and Jenkins HP Codar Software Version 1.0 Continuous Integration, Continuous Deployment and Continuous Testing by HP Codar using ALM and Jenkins HP Codar (1.0) Page 1 of 24 Contents What is Codar?... 3 Why is Codar

More information

Migration Tool. User Guide. SHOPIFY to MAGENTO. Copyright 2014 LitExtension.com. All Rights Reserved.

Migration Tool. User Guide. SHOPIFY to MAGENTO. Copyright 2014 LitExtension.com. All Rights Reserved. SHOPIFY to MAGENTO Migration Tool User Guide Copyright 2014 LitExtension.com. All Rights Reserved. Shopify to Magento Migration Tool: User Guide Page 1 Contents 1. Preparation... 3 2. Set-up... 3 3. Set-up...

More information

Installing the WinSCP Secure FTP Client

Installing the WinSCP Secure FTP Client Draft 0.9 Page 1 of 6 Installing the WinSCP Secure FTP Client This document will instruct you to install the WinSCP application that will provide Secure FTP (SFTP) access to your website folder. So why

More information

Do It Yourself Website Editing Training Guide

Do It Yourself Website Editing Training Guide Do It Yourself Website Editing Training Guide Version 3.0 Copyright 2000-2011 Sesame Communications. All Rights Reserved. Table of Contents DIY Overview 3 What pages are editable using the DIY Editing

More information

MAGENTO Migration Tools

MAGENTO Migration Tools MAGENTO Migration Tools User Guide Copyright 2014 LitExtension.com. All Rights Reserved. Magento Migration Tools: User Guide Page 1 Contents 1. Preparation... 3 2. Set-up... 4 3. Set-up... 5 4. License

More information

NCEdCloud IAM Service Student Login Information Student Accounts Secondary (Grades 6-13) Table of Contents

NCEdCloud IAM Service Student Login Information Student Accounts Secondary (Grades 6-13) Table of Contents Table of Contents Part I Claiming Your NCEdCloud IAMS Account Pages 2-3 Part II Logging into Your NCEdCloud IAMS Account Page 4 Applications in NCEdCloud IAMS Page 5 Forgot Your Username Page 6 Forgot

More information

Virto Active Directory Service for SharePoint. Release Installation and User Guide

Virto Active Directory Service for SharePoint. Release Installation and User Guide Virto Active Directory Service for SharePoint Release 4.1.2 Installation and User Guide 2 Table of Contents OVERVIEW... 3 SYSTEM REQUIREMENTS... 4 OPERATING SYSTEM... 4 SERVER... 4 BROWSER... 5 INSTALLATION...

More information

2012 Natural Gas Conference Portland, Oregon September 24, 2012

2012 Natural Gas Conference Portland, Oregon September 24, 2012 2012 Natural Gas Conference Portland, Oregon September 24, 2012 What is SharePoint? SharePoint is a website that is accessed through a web browser (Internet Explorer, FireFox, etc) and an internet connection

More information

Sticky Notes for Cognos Analytics by Tech Data BSP Software

Sticky Notes for Cognos Analytics by Tech Data BSP Software Sticky Notes for Cognos Analytics by Tech Data BSP Software Installation Guide Sticky Notes for Cognos Analytics is an easy to install extension that allows report authors to record notes directly from

More information

DRAFT DRAFT WORKSPACE EXTENSIONS

DRAFT DRAFT WORKSPACE EXTENSIONS WORKSPACE EXTENSIONS A workspace extension extends the functionality of an entire geodatabase. IWorkspaceEditEvents : IUnknown OnAbortEditOperation OnRedoEditOperation OnStartEditing (in withundoredo:

More information

FAST TRACK. On-Line Application Instructions

FAST TRACK. On-Line Application Instructions FAST TRACK Access job openings or log in if you are a current applicant. Search Current Job Openings Click to view current job openings Existing Applicants Please Log In To access your previous applications,

More information

LaserVault DMS10 API Table of Contents

LaserVault DMS10 API Table of Contents LaserVault DMS10 API Table of Contents Overview... 2 LVDMSCore10.ClientSession... 3 Properties... 3 Methods... 5 LVDMSCore10.DocumentFile... 17 Properties... 17 LVDMSWEB API... 18 Record/Document Query...

More information

Chime for Lync High Availability Setup

Chime for Lync High Availability Setup Chime for Lync High Availability Setup Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation

More information

CS2720 Practical Software Development

CS2720 Practical Software Development Page 1 Rex Forsyth CS2720 Practical Software Development CS2720 Practical Software Development Subversion Tutorial Spring 2011 Instructor: Rex Forsyth Office: C-558 E-mail: forsyth@cs.uleth.ca Tel: 329-2496

More information

Web Ad Image Portal. User Manual

Web Ad Image Portal. User Manual Web Ad Image Portal User Manual Rev 06232008 Web Ad Image Portal User Manual Rev 06232008 Login and Home Page Access the portal via http://images.autobase.net Login with your dealer.autobase.net account

More information

The Evolved Office Assistant

The Evolved Office Assistant The Evolved Office Assistant USER GUIDE TM 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.net Release 1.0 Document Version 1 Copyright Notice Copyright 2008 Evolve IP,

More information

IFA/QFN VBA Tutorial Notes prepared by Keith Wong

IFA/QFN VBA Tutorial Notes prepared by Keith Wong IFA/QFN VBA Tutorial Notes prepared by Keith Wong Chapter 5: Excel Object Model 5-1: Object Browser The Excel Object Model contains thousands of pre-defined classes and constants. You can view them through

More information

GIGABYTE Remote Management Console User s Guide. Version: 1.0

GIGABYTE Remote Management Console User s Guide. Version: 1.0 GIGABYTE Remote Management Console User s Guide Version: 1.0 Table of Contents Using Your GIGABYTE Remote Management Console...2 Software Install...3 Prerequisites on remote management PC...3 Install Java

More information

Git. Charles J. Geyer School of Statistics University of Minnesota. Stat 8054 Lecture Notes

Git. Charles J. Geyer School of Statistics University of Minnesota. Stat 8054 Lecture Notes Git Charles J. Geyer School of Statistics University of Minnesota Stat 8054 Lecture Notes 1 Before Anything Else Tell git who you are. git config --global user.name "Charles J. Geyer" git config --global

More information

Installing the WHI Virtual Private Network (VPN) for WHIX Users Updated 12/16/2016

Installing the WHI Virtual Private Network (VPN) for WHIX Users Updated 12/16/2016 Installing the WHI Virtual Private Network (VPN) for WHIX Users Updated 12/16/2016 Note: Please read the FAQ section at the end of this document. I. Overview The way in which you connect to the WHI network

More information

Sign-in and Quitting Sendplus

Sign-in and Quitting Sendplus Sign-in and Quitting Sendplus 1 You need a registered Sendplus, nverge or Adbank 5 account to use Sendplus. Username/email address Email address used during Sendplus, nverge or Adbank registration. Password

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using SimpleCMS Overview 2 Accessing the CMS 2 Resetting Your Password 2 Pages 3 Managing Files 3 Shortcuts 4 Uploading 4 Page Options 4 Relabel 4 Duplicate 4 Google

More information

Anchor User Guide. Presented by: Last Revised: August 07, 2017

Anchor User Guide. Presented by: Last Revised: August 07, 2017 Anchor User Guide Presented by: Last Revised: August 07, 2017 TABLE OF CONTENTS GETTING STARTED... 1 How to Log In to the Web Portal... 1 How to Manage Account Settings... 2 How to Configure Two-Step Authentication...

More information

KEYWORDS DDE GETOBJECT PATHNAME CLASS VB EDITOR WITHEVENTS HMI 1.0 TYPE LIBRARY HMI.TAG

KEYWORDS DDE GETOBJECT PATHNAME CLASS VB EDITOR WITHEVENTS HMI 1.0 TYPE LIBRARY HMI.TAG Document Number: IX_APP00113 File Name: SpreadsheetLinking.doc Date: January 22, 2003 Product: InteractX Designer Application Note Associated Project: GetObjectDemo KEYWORDS DDE GETOBJECT PATHNAME CLASS

More information

BeAware Corporate Edition Admin Console. User Manual. BeAware Corporate Edition Admin Console Version 7.1. Ascentive LLC.

BeAware Corporate Edition Admin Console. User Manual. BeAware Corporate Edition Admin Console Version 7.1. Ascentive LLC. User Manual BeAware Corporate Edition Admin Console Version 7.1 Ascentive LLC User Manual 1 Copyright Notice Copyright 2008 Ascentive LLC All Rights Reserved This document is protected by copyright law

More information

CMSC 330: Organization of Programming Languages. Threads Classic Concurrency Problems

CMSC 330: Organization of Programming Languages. Threads Classic Concurrency Problems : Organization of Programming Languages Threads Classic Concurrency Problems The Dining Philosophers Problem Philosophers either eat or think They must have two forks to eat Can only use forks on either

More information

DHIS 2 Android User Manual 2.23

DHIS 2 Android User Manual 2.23 DHIS 2 Android User Manual 2.23 2006-2016 DHIS2 Documentation Team Revision 2174 2016-11-23 11:23:21 Version 2.23 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

Release Notes for Patch Release #2674. August 26, 2015

Release Notes for Patch Release #2674. August 26, 2015 August 26, 2015 Copyright notice c 2015 by Open-Xchange AG. All rights reserved. Open-Xchange and the Open-Xchange logo are trademarks or registered trademarks of Open-Xchange AG. All other company and/or

More information

owncloud ios App Manual Release 3.4.9

owncloud ios App Manual Release 3.4.9 owncloud ios App Manual Release 3.4.9 The owncloud developers January 04, 2018 Contents 1 Using the owncloud ios App 3.6.2 1 1.1 Getting the owncloud ios App...................................... 1 1.2

More information

User documentation. BEEM v1.0 January 2010

User documentation. BEEM v1.0 January 2010 User documentation BEEM v1.0 January 2010 1 Table of contents Table of contents... 2 About this paper... 3 Using this manual... 3 Navigation keys... 4 Conventions... 5 Support... 5 Installation/Uninstallation...

More information

Provision Unified CM for Unified CCX

Provision Unified CM for Unified CCX When you access Unified CCX Administration for the first time in a cluster, the system automatically initiates the cluster setup procedure once for each cluster to perform the following tasks: Identify

More information

This document is intended to help you connect to the CVS server on a Windows system.

This document is intended to help you connect to the CVS server on a Windows system. Sourceforge CVS Access Sourceforge CVS Access... 1 Introduction... 1 Tools... 1 Generate Public / Private Keys... 1 Configuring Sourceforge Account... 4 Loading Private Keys for Authentication... 7 Testing

More information

Migration Instructions for All Users

Migration Instructions for All Users Introduction: Migration Instructions for All Users Welcome to HBU s Outlook Live email system. This document provides guidance on how to migrate your emails, calendar entries, tasks and personal contacts

More information

Follow Me an Android Application

Follow Me an Android Application Follow Me an Android Application Requirements Analysis Document CIS 450: Fall 2014 September 15, 2014 Table of Contents Introduction... 3 Proposed System... 3 Functional Requirements... 3 Non-Functional

More information

Cloud Help for Community Managers...3. Release Notes System Requirements Administering Jive for Office... 6

Cloud Help for Community Managers...3. Release Notes System Requirements Administering Jive for Office... 6 for Office Contents 2 Contents Cloud Help for Community Managers...3 Release Notes... 4 System Requirements... 5 Administering Jive for Office... 6 Getting Set Up...6 Installing the Extended API JAR File...6

More information

The Dining Philosophers Problem CMSC 330: Organization of Programming Languages

The Dining Philosophers Problem CMSC 330: Organization of Programming Languages The Dining Philosophers Problem CMSC 0: Organization of Programming Languages Threads Classic Concurrency Problems Philosophers either eat or think They must have two forks to eat Can only use forks on

More information

Area Access Manager User Guide

Area Access Manager User Guide Area Access Manager User Guide Area Access Manager User Guide Table of Contents Chapter 1: Introduction...9 Conventions Used in this Documentation... 9 Getting Started... 10 Licensing Requirements...

More information

ARADIAL TECHNOLOGIES Aradial Enforcer Manual Version 7.0

ARADIAL TECHNOLOGIES Aradial Enforcer Manual Version 7.0 ARADIAL TECHNOLOGIES Aradial Enforcer Manual Version 7.0 Administration Guide A R A D I A L E N F O R C E R Administration Guide Aradial Technologies Ltd. Information in this document is subject to change

More information

Welcome to 5.0 Automation Library. Using this library you can automate the features for Excel.

Welcome to 5.0 Automation Library. Using this library you can automate the features for Excel. Introduction Welcome to the @RISK 5.0 Automation Library. Using this library you can automate the features of @RISK for Excel. Please Note: While Palisade Corporation will make every effort to maintain

More information

Saperion Version 7.5 Service Pack 6 Bug Fixes

Saperion Version 7.5 Service Pack 6 Bug Fixes Saperion Version 7.5 Service Pack 6 Bug Fixes Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other

More information

Teamcenter Appearance Configuration Guide. Publication Number PLM00021 J

Teamcenter Appearance Configuration Guide. Publication Number PLM00021 J Teamcenter 10.1 Appearance Configuration Guide Publication Number PLM00021 J Proprietary and restricted rights notice This software and related documentation are proprietary to Siemens Product Lifecycle

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

Pentaho Data Integration (PDI) Techniques - Dividing Large Repositories

Pentaho Data Integration (PDI) Techniques - Dividing Large Repositories Pentaho Data Integration (PDI) Techniques - Dividing Large Repositories This page intentionally left blank. Contents Overview... 1 Before You Begin... 1 Use Case: Divide a Large PDI Repository for Better

More information

Demonstration Instructions

Demonstration Instructions Demonstration Instructions Digital Defence Ltd. Secure Mobile Version 10.2.1 19 th July 2010 Table of Contents TABLE OF CONTENTS... 2 1. DEMONSTRATION INSTRUCTIONS... 3 1.1 PREREQUISITES... 3 1.2 PROCEDURE...

More information

DHIS2 Android user guide 2.26

DHIS2 Android user guide 2.26 DHIS2 Android user guide 2.26 2006-2016 DHIS2 Documentation Team Revision HEAD@02efc58 2018-01-02 00:22:07 Version 2.26 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

Rev X 341. Table 111. Access Levels and Descriptions

Rev X 341. Table 111. Access Levels and Descriptions 9424200994 Rev X 341 Multiple levels of security give personnel the level of access appropriate for the tasks they routinely perform while securing critical settings from unauthorized access. Access Levels

More information

PAS. Installation Guide. BG0608 Rev. A1. Copyright SATEC Ltd.

PAS. Installation Guide. BG0608 Rev. A1. Copyright SATEC Ltd. PAS Installation Guide BG0608 Rev. A1 Copyright 2011-2017 SATEC Ltd. Table of Contents Chapter 1 Installation... 3 1. Scope... 3 2. Minimal installation requirements... 3 3. Pre-installation steps... 3

More information

LABELSTAR OFFICE. Reference Manual

LABELSTAR OFFICE. Reference Manual LABELSTAR OFFICE Reference Manual Version 6.00 Build 1010 September 15, 2017 Contents Contents Getting Started...4 Using the Application Object...5 Using the Label Object...6 Using the Printer Object...8

More information

Table of contents. Pure ASP Upload 3 Manual DMXzone

Table of contents. Pure ASP Upload 3 Manual DMXzone Table of contents Table of contents... 1 About Pure ASP Upload 3... 2 Features in Detail... 3 The Basics: Uploading Files with Pure ASP Upload 3... 14 Advanced: Using Pure ASP Upload 3 with Insert Record...

More information

EMC ApplicationXtender Web Access.NET eroom Integration 6.0

EMC ApplicationXtender Web Access.NET eroom Integration 6.0 EMC ApplicationXtender Web Access.NET eroom Integration 6.0 Administrator s Guide 300-008-282 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

Creating a Dynamo with VBA Scripts

Creating a Dynamo with VBA Scripts Creating a Dynamo with VBA Scripts Creating a Dynamo with VBA 1 Table of Contents 1. CREATING A DYNAMO WITH VBA... 3 1.1 NAMING CONVENTIONS FOR DYNAMO OBJECTS...3 1.2 CREATING A DYNAMO...4 1.3 DESIGNING

More information

Chapter 3.4: Exceptions

Chapter 3.4: Exceptions Introduction to Software Security Chapter 3.4: Exceptions Loren Kohnfelder loren.kohnfelder@gmail.com Elisa Heymann elisa@cs.wisc.edu Barton P. Miller bart@cs.wisc.edu Revision 1.0, December 2017. Objectives

More information

Mobile Login extension User Manual

Mobile Login extension User Manual extension User Manual Magento 2 allows your customers convenience and security of login through mobile number and OTP. Table of Content 1. Extension Installation Guide 2. Configuration 3. API Settings

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

TeamViewer 12 Manual Management Console. Rev

TeamViewer 12 Manual Management Console. Rev TeamViewer 12 Manual Management Console Rev 12.1-201704 TeamViewer GmbH Jahnstraße 30 D-73037 Göppingen www.teamviewer.com Table of content 1 About the TeamViewer Management Console 4 1.1 About the Management

More information