ALMComplete QAComplete DevComplete
|
|
|
- Bernard Hubbard
- 10 years ago
- Views:
Transcription
1 Web Service User s Guide ALMComplete QAComplete DevComplete This document explains how to use the for ALMComplete, QAComplete, and DevComplete SoftwarePlanner Release October 2011 ALMComplete QAComplete DevComplete
2 1 Table of Contents Narrative... 5 Preparing to use the Web Service... 6 Sample Program for using the Web Service... 8 psws Web Service... 9 AuthenticationData...10 Working with Releases...11 Releases Methods...11 Releases Object...12 Working with Requirements...13 Requirements (FunctionalSpecs) Methods...13 Requirements (FunctionalSpecs) Object...15 Working with Defects...15 Defects (Bugs) Methods...15 Defects (Bugs) Object...16 Working with Test Management (Tests)...18 Tests Methods...18 Tests Object...19 Working with Test Steps...20 TestSteps Methods...20 TestSteps Object...21 Working with Test Sets...21 TestSets Methods...21 TestSets Object...22 Working with Test Set Items...24 TestSetItems Methods...24 TestSetItems object...24
3 2 Working with Test Configurations...26 TestConfiguration Methods...26 Test Configurations Object...27 Working with Test Runs...28 Test Runs Methods TestRuns Object...28 Working with Test Run Items...29 Test Run Items Methods...29 TestRunItems Object...30 Working with Test Run Results...30 TestRunResults Methos...31 TestRunResults Object...31 Working with Test Cases (Release 9.6 and prior)...31 TestCases Methods...32 TestCase Object...33 Working with Automation Hosts...34 AutomationHosts Methods...34 AutomationHosts Object...35 Working with Automation Runs...35 AutomationRuns Methods...35 AutomationRuns Object...36 Working with Automation Test Items...37 AutomationTestItems Methods...37 AutomationTestItems Object...38 Working with Automation Test Schedules...39 AutomationSchedules Methods...39 AutomationSchedules Object...40 Working with Project Plan Tasks...41
4 3 ProjectPlanTasks Methods...41 ProjectPlanTask Object...42 Working with Agile Tasks (ProjectTasks)...43 Agile Tasks (ProjectTasks) Methods...43 Agile Tasks (ProjectTasks) Object...44 Working with Contacts...45 Contacts Methods...45 Contacts Object...46 Working with Folders...47 Folders Methods...47 Folders Object...48 Working with SCM Change Lists...48 SCMChangeLists Methods...48 SCMChangeLists Object...49 Working with SCM Change List Files...49 SCMChangeListFiles Methods...49 SCMChangeListFiles Object...50 Working with Attachments...51 Attachments Methods...51 Attachment Object...52 Working with Traceability...52 Traceability Methods...52 TraceabilityLink Object...53 Web Service Helpers...54 WebService Helper Methods...54 Audit Object...55 Notes Object...55 PerfLog Object...56
5 4 DbLog Object...56 Send Parameters...56 LoadByCriteria Rules...57 Tutorial Source Code Examples... 1 Loading elements... 1 Updating elements... 2 Adding elements... 2 Deleting elements... 3 Loading elements by criteria... 3 Example LoadByCriteria Conditions... 4 Index of Methods... 6
6 5 Narrative For ALMComplete, QAComplete, and DevComplete users that would like to programmatically access information stored in the SoftwarePlanner database, we offer a web service that can be accessed via.net applications via the web. The web service is named psws and encapsulates the business objects for the base areas of the framework. The web service provides these objects: Releases Allows loading, adding, updating and deleting Releases (Release / Iteration /Build). Requirements (FunctionalSpecs) - Allows loading, adding, updating and deleting requirements. When items are added, updated or deleted, audits are automatically generated. Defects (Bugs) - Allows loading, adding, updating and deleting defects. When items are added, updated or deleted, audits are automatically generated. Contacts - Allows loading, adding, updating and deleting contacts. When items are added, updated or deleted, audits are automatically generated. Project Tasks - Allows loading, adding, updating agile tasks. When items are added, updated or deleted, audits are automatically generated. Project Plan Tasks - Allows loading, adding, updating and deleting project plan tasks. When items are added, updated or deleted, audits are automatically generated. Project Plans with Tasks Allows loading, adding Project Plans with hierarchical Project Plan Tasks, retrieve a list of Project Plans, and retrieve a list of Project Plan Resources. Tests Allows loading, adding, updating and deleting Tests. Test Steps Allows loading, adding, updating and deleting Test Steps. Test Sets Allows loading, adding updating and deleting Test Sets. Test Set Items Allows loading, adding, updating and deleting Test Set Items. Test Configurations Allows loading, adding, updating and deleting Test Configurations. Test Runs Allows loading, adding and updating Test Runs. Test Run Items- Allows loading and updating Test Run Items. Test Run Results Allows loading and updating Test Run Results. Test Cases - Allows loading, adding, updating and deleting test cases. When items are added, updated or deleted, audits are automatically generated. Automation Allows loading, adding, updating and deleting test automation hosts, runs, and test items. Automation Schedules Allows loading, adding, updating and deleting automation schedules. Folders Allows loading, adding, updating and deleting folders. Attachments - If you wish to add attachments to an entity (like test cases), use the Attachment object. The FK of the Attachment record is the foreign key (e.g. TestCaseId) and the EntityCode should be set to the entity name (e.g. TestCases).
7 6 Traceability If you wish to work with Traceability, use the TraceabilityLinks object. You will need the unique identifier and Entity of the items being linked. Audits - If you wish to add additional audits, use the Audits object. The FK of the Audits record is the TestCaseId and the EntityCode should be set to TestCases. Notes - If you wish to add notes to an entity (like test cases), use the Notes object. The FK of the Notes record is the foreign key (e.g. TestCaseId) and the EntityCode should be set to the entity name (e.g. TestCases). A good use of notes would be to store the results from the test run. The notes are unlimited in size. PerfLogs If you wish to record timings for how long it takes to run actions, use PerfLog (Performance Logs) to do this. It can take an action, the date/time started and the date/time ended and calculates the average response time. DbLogs If you wish to record errors that occur, use DbLogs. This can be used to later evaluate issues that arose. Send If you wish to send an when you launch actions, use Send We strongly encourage you to contact us for in-depth training: Web Service Training This document includes the objects for ALMComplete. If you are a QAComplete or DevComplete user and are interested in additional functionality, please contact us at Preparing to use the Web Service Before you can use the web service, you must have proper authentication. To authenticate, you need your SoftwarePlanner department id, project id, user Id and password. You must have security rights to the area and project being accessed (e.g. read/add/update rights to test cases to view, add and update test cases in the project authenticating against). To find the DeptId and ProjId in SoftwarePlanner, go to Setup / Projects (Open & Create). Use Choose Fields to add ID (Project Id) and Dept Id (Department Id) to the list.
8 7 Do the same under Security / Users to view your User Id.
9 8 Sample Program for using the Web Service To speed up the learning process for using the web service, we created a test application called TestWebService. This application provides a user interface for connecting to the web service and testing each method of each object in the web service. You can use the source code of TestWebService as a learning tool and for comparison. You can download the Test Application here: SoftwarePlanner Downloads
10 9 psws Web Service The web service is named psws. For Software as a Service customers, it resides on the SoftwarePlanner server. You can view the service here: For our On-premises / Enterprise clients, change the URL above to the location of psws.asmx on your server, typically: The following sections illustrate how to use the web service for different areas of the software that you may wish to interact with. On-Premises Troubleshooting Note: If you need to verify the web service for any reason, there are two methods you can run directly on your server with no authentication or coding. First, log into your SoftwarePlanner web server (where psws.asmx resides). Then start a browser and navigate to: Use GetVersion, GetLoginInfo, or GetLoginInfoByEntity described below.
11 10 AuthenticationData Before accessing any web service method, you must first authenticate. The AuthenticationData object specifies Authentication parameters. All of the Web Methods require it. Below is the object information: Field Type Description AppCode String Application Code: For SaaS customers, this is agsp For Enterprise, this is typically agspent DeptId Your Department Id (DeptId, numeric) ProjId Your Project Id (Id or ProjId, numeric) UserId Your SoftwarePlanner User Id (UserId, numeric) Password String Your SoftwarePlanner log in password
12 11 Working with Releases The web service allows loading, adding, updating and deleting of Releases. The database stores Release, Iteration and Build information in the Releases table. All of the web service methods refer to Releases, Iterations and Builds as Releases. When interfacing with Release, Iterations and Builds you will use the Releases object. Below are the methods of this object. Releases Methods Web Method Releases_Load Releases_LoadByCriteria Releases_Add Releases_Update Releases_Delete Description This method is used to return an individual Release record into the Releases object. Once an item is returned, you can use the other objects to work with it (to update or delete the Release). Input: AuthenticationData and ReleaseId Output: Returns a Releases object with data Security Needed: Must have READ access to Releases security entity This method is used to return Release records into the array of Releases objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of Releases objects with data Security Needed: Must have READ access to Defects security entity This method is used to add a Release into the database. Once done, it returns the ReleaseId of the new record. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, Releases object NewNotes (string) Output: ReleaseId Security Needed: Must have ADD access to the Releases security entity This method is used to update a Release in the database. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, Release Object, Send Alert (Y/N) Security Needed: Must have UPDATE access to the Releases security entity This method is used to delete a Release from the database. Input: AuthenticationData, ReleaseId, (string) Security Needed: Must have DELETE access to the Releases security entity
13 12 Releases Object Column Name Type Required Width Description Id integer 4 Id ProjId integer Y 4 Project Id FolderId integer 4 Folder Id ReleaseId integer 4 Release Id FullReleaseName nvarchar 604 Combined Release, Iteration and Build Names ReleaseName nvarchar 200 Name of Parent Release ParentId int 4 Release Id of parent Release or Iteration ParentName nvarchar 200 Release Name of Parent Release or Iteration ReleaseType nvarchar Y 200 Release, Iteration or Build Title nvarchar 200 Title of This Release, Iteration or Build Description ntext Max Description OwnerUserId integer 4 User Id of the Owner of this item AssigneeUserId integer 4 UserId of the Assignee on this item IsAutoAdjust nvarchar 2 Auto Adjust Dates Checkbox EstDates DateCreated datetime 16 Date this item was created DateUpdated datetime 16 Date this item was last updated CreateUserId integer 4 UserId of the person who created this item UpdateUserId integer 4 UserId of the person who last updated this item StatusCode nvarchar 200 Status SeqNum integer 4 Sequence ParentSeqNum integer 4 Sequence number of parent item IsActive nvarchar 2 Is Active Checkbox EstStartDate datetime 16 Estimated Start Date EstFinishDate datetime 16 Estimated Finish Date Custom1-10 ntext Max Custom Fields 1 through 10 FolderName varchar 511 Folder Name AssignedToName varchar 78 Name of assignee in lastname, firstname format OwnerName varchar 78 Name of owner in lastname, firstname format UserName varchar 78 NbrNotes integer 4 Number of Notes NbrFiles integer 4 Number of Attachments NotesDescription text max Latest Note NbrEscalations integer 4 Number of times escalated DateLastEscalated datetime 16 Date of last escalation LastEscalation integer 4 Id of the last escalation rule RuleId LastEscalationRule varchar 100 Name of last escalation rule
14 13 NbrFilesNot integer 4 Reserved Secured Custom11-90 varchar 100 Custom fields 11 through 90 NbrProjectPlans integer 4 Number of Project Plans NbrProjectPlan integer 4 Number of Project Plan Tasks Tasks NbrQuickTasks integer 4 Number of Agile Tasks NbrRequirements integer 4 Number of Requirements NbrTestSets integer 4 Number of Test Sets NbrTests integer 4 Number of Tests NbrTestCases integer 4 Reserved NbrDefects integer 4 Number of Defects EstStart datetime 16 Estimated Start Date EstFinish datetime 16 Estimated Finish Date ActStart integer 4 Actual Start Date ActFinish integer 4 Actual Finish Date pctcomplete integer 4 Percent Complete ProjectedVariance integer 4 Projected Hours Variance Hrs ProjectedVariance integer 4 Projected Percent Variance Pct EstHrs integer 4 Estimated Hours ActHrs integer 4 Actual Hours EstHrsRemaining integer 4 Estimated Hours Remaining NbrIterations integer 4 Number of Iterations NbrBuilds integer 4 Number of Builds Working with Requirements The web service allows loading, adding, updating, and deleting of requirements. The database stores requirements in the FunctionalSpecs table and all of the webservice methods refer to Requirements as FunctionalSpecs. When interfacing with requirements, you will use the FunctionalSpecManager object. Below are the methods of this object Requirements (FunctionalSpecs) Methods Web Method Description FunctionalSpecs_Load This method is used to return an individual Functional Spec record into the FunctionalSpec object. Once an item is returned, you can use the other objects to work with it (to update or delete an item). Input: AuthenticationData, FunctSpecId
15 14 FunctionalSpecs_LoadBy Criteria FunctionalSpecs _Add FunctionalSpecs _Update FunctionalSpecs _Delete Output: Returns a FunctionalSpec object with data Security Needed: Must have READ access to Requirements security entity This method is used to return Functional Spec records into the array of FunctionalSpec objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of FunctionalSpec objects with data Security Needed: Must have READ access to Requirements security entity This method is used to add an item into the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. You pass the FunctionalSpec object t to the routine and it creates a new record. If you also pass NewNotes, it will store the Notes and associate those notes with the item. Once done, it returns the FunctSpecId of the new record. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, FunctionalSpec object, Send Alert (Y/N), NewNotes (string) Output: FunctSpecId Security Needed: Must have ADD access to the Requirement security entity This method is used to update a record in the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, FunctSpecId, Send Alert (Y/N) Security Needed: Must have UPDATE access to the Requirements security entity This method is used to delete a record from the database. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, FunctSpecId Security Needed: Must have DELETE access to the Requirements security entity
16 15 Requirements (FunctionalSpecs) Object FunctionalSpec object is used for retrieving and providing information about FunctionalSpec. Required by FunctionalSpecs_Load, FunctionalSpecs_Update, FunctionalSpecs_Add, FunctionalSpecs_Delete and FunctionalSpecsManager. Field Type Required Max Length Description FunctSpecId Unique Identifier Title String Y 100 Short description StatusCode String Y 100 Status Keywords String 200 Grouping String 50 SubGrouping String 50 Description String (max) BusinessRule String (max) EstHrs Decimal ActHrs Decimal EstFinish ActFinish Comments String 8000 OwnerUserId AssigneeUserId FolderId EstStart ActStart PctComplete EstHrsRemaining Decimal Custom1 Custom10 String 8000 Custom11 Custom90 String 100 Working with Defects The web service allows loading, adding, updating, and deleting of Defects. The database stores defects in the Bugs table and all of the webservice methods refer to Defects as Bugs. When interfacing with defects, you will use the BugManager object. Below are the methods of this object: Defects (Bugs) Methods Web Method Description Bugs_Load This method is used to return an individual Bug record into the Bug object. Once an item is returned, you can use the other objects to work with it (to update or delete the bug). Bugs_LoadByCriteria Input: AuthenticationData and BugId Output: Returns a Bug object with data Security Needed: Must have READ access to Defects security entity This method is used to return Bug records into the array of Bug objects that meet the condition.
17 16 Bugs_Add Bugs_Update Bugs_Delete Bugs_GetStatuses Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of Bug objects with data Security Needed: Must have READ access to Defects security entity This method is used to add a bug into the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. You pass the Bug object t to the routine and it creates a new bug record. If you also pass NewNotes, it will store the Notes and associate those notes with the Bug. Once done, it returns the BugId of the new record. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, Bug object, Send Alert (Y/N), NewNotes (string) Output: BugId Security Needed: Must have ADD access to the Defects security entity This method is used to update a bug in the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, Bug Object, Send Alert (Y/N) Security Needed: Must have UPDATE access to the Bugs security entity This method is used to delete a bug from the database. Input: AuthenticationData, BugId, (string) Security Needed: Must have DELETE access to the Defects security entity This method retrieve a list of the Status values in Defects. Input: AuthenticationData, EntityCode Bugs Output: String Security Needed: Must have READ access to the Defects security entity and Manage Choice Lists Defects (Bugs) Object Bugs object is used for retrieving and providing information about defects. Required by Bugs_Load, Bugs_Update, Bugs_Add, Bugs_Delete and BugManager. Field Type Required Max Length Description BugId Unique identifier Title String Y 100 Short description StatusCode String Y 100 Status SeverityCode String 100 Severity PriorityCode String 100 Priority SoftwareVersionCode String 100 HowFoundCode String 100 ModuleCode String 100 FunctionalAreaCode String 100
18 17 IssueCode String 100 ResolutionCode String 100 AssigneeUserId OpenedBy ClosedBy ResolvedBy Description String (max) StepsToRepro String (max) ExpectedResults String (max) Resolution String (max) OwnerUserId TypeCode String 100 OriginCode String 100 TestCaseId FolderId EstHrs Decimal EstStart EstFinish PctComplete ActHrs Decimal ActStart ActFinish EstHrsRemaining Decimal Custom1 Custom10 String 8000 Custom11 Custom90 String 100
19 18 Working with Test Management (Tests) The web service allows loading, adding, updating and deleting of Tests, Test Steps, Test Sets, Test Set Items, Test Configurations, Test Runs and Test Run Results. The Tests object is used for retrieving and providing information about the Test header. Required by Test_Add, Test_Delete, Tests_Load, Tests_LoadByCriteria and Tests_Update. Each Tests item is associated with one or more Test Steps. Tests Methods Web Method Tests_Load Tests_LoadByCriteria Tests_Add Tests_Update Tests_Delete Description This method is used to return an individual Test record into the Test object. Once an item is returned, you can use the other objects to work with it (to update or delete the Test). Input: AuthenticationData and TestId Output: Returns a Test object with data Security Needed: Must have READ access to Tests security entity This method is used to return Test records into the array of Test objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of Tests objects with data Security Needed: Must have READ access to Tests security entity This method is used to add a Test into the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. You pass the Test object t to the routine and it creates a new Test record. Once done, it returns the TestId of the new record. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, Tests object, Send Alert (Y/N) Output: TestId Security Needed: Must have ADD access to the Tests security entity This method is used to update a Test in the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, Test Object, Send Alert (Y/N) Security Needed: Must have UPDATE access to the Tests security entity This method is used to delete a Test from the database. Input: AuthenticationData, TestId, (string) Security Needed: Must have DELETE access to the Tests security entity
20 19 Tests Object The Tests object is used for retrieving and providing information about a Test.. Required by Tests_Load, Test_LoadbyCriteria, Tests_Update, Tests_Add, and Test_Delete. Column Name Type Required Width Description FolderName varchar 511 Folder Name AssignedToName varchar 78 Assigned to name in lastname, firstname format UserName varchar 78 User name in lastname, firstname format OwnerName varchar 78 Owner name in lastname, firstname format LastRunByName nvarchar 100 Last run by user name in lastname, firstname format TestId integer 10 Test Identifier Version integer 10 Test Version Number ProjId integer Y 10 Project Id FolderId integer 10 Folder Id Title nvarchar 100 Title IsActive nvarchar 1 Is Active Checkbox StatusCode nvarchar 100 Status ExecutionType nvarchar 100 Manual TestType nvarchar 100 Test Type Priority nvarchar 100 Priority Description ntext max Description DateCreated datetime 16 Date this item was created DateUpdated datetime 16 Date this item was last updated CreateUserId integer 4 User id of the person who created this item UpdateUserId integer 4 User id of the person who last updated this item AssigneeUserId integer 4 User id of the person assigned to this item OwnerUserId integer 4 User id of the owner of this item OriginalId integer 4 Reserved ImportId integer 4 Import batch number ScriptSourceId integer 4 Reserved Custom1-10 ntext max Custom fields 1 through 10 NbrFailStatus integer 4 Number of times this item was failed NbrPassStatus integer 4 Number of times this item was passed AvgRunTime integer 4 Average run time in plain integer format AvgRunTime integer 100 Average run time in 00:00:00 format Formatted NbrTimesRun integer 4 Number of times this was run LastRunByUserId integer 4 User Id of the person who last ran this item LastRunTestSet integer 4 Last run with this test set LastRunTestSet nvarchar 100 The title of the last run test set Title LastRunDate datetime 16 Last run on this date LastRunStatus nvarchar 100 Last run ending status NbrSteps integer 4 Number of steps on this test NotesDescription text max Notes / Description NbrEscalations integer 4 Number of times this was handled with an escalation rule DateLastEscalated datetime 16 Date of the last escalation
21 20 LastEscalation integer 4 Id of the escalation rule RulId LastEscalationRule varchar 100 Title of the last escalation rule NbrFiles integer 4 Reserved NotSecured NbrFiles integer 4 Number of files attached NbrNotes integer 4 Number of notes attached NbrEvents integer 4 Reserved ScriptName nvarchar 255 Reserved Custom11-90 varchar 100 Custom fields 11 through 90 Working with Test Steps The web service allows loading, adding, updating and deleting Test Steps. The database stores Test Steps in the TestSteps table. When interfacing with Test Steps, you will use the TestSteps object. Below are the methods of this object. TestSteps Methods Web Method TestSteps_Load TestSteps_LoadByCriteria TestSteps_Add Description This method is used to return an individual Test Step record into the TestSteps object. Once an item is returned, you can use the other objects to work with it (to update or delete the Test Step). Input: AuthenticationData and TestStepId Output: Returns a TestSteps object with data Security Needed: Must have READ access to Tests security entity This method is used to return TestSteps records into the array of TestSteps objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of TestSteps objects with data Security Needed: Must have READ access to Tests security entity This method is used to add a TestSteps into the database. Once done, it returns the TestStepId of the new record. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, TestSteps object, Send Alert (Y/N), NewNotes (string) Output: TestStepId Security Needed: Must have ADD access to the Tests security entity
22 21 TestSteps_Update TestSteps_Delete This method is used to update a Test Step in the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. Input: AuthenticationData, TestSteps object Security Needed: Must have UPDATE access to the Tests security entity This method is used to delete a Test Step from the database. Input: AuthenticationData, TestStepsId Security Needed: Must have DELETE access to the Tests security entity TestSteps Object Column Name Type Required Width Description TestStepId Integer Y 4 Unique identifier TestId integer Y 4 Test Identifier Seq Integer Y 4 Test Step Sequence Number IsStoppedOnFail nvarchar 1 Stop at Fail checkbox Step nvarchar max Step Instruction ExpectedResult nvarchar max Expected Result for this Step DateCreated datetime 16 Date this item was created DateUpdated datetime 16 Date this item was updated CreateUserId integer 4 User Id of the person who created this item UpdateUserId Integer 4 User Id of the person who updated this item ScriptSourceId Integer 4 Reserved NbrFiles integer 4 Number of files attached CreateUserName varchar 78 Created By person in lastname, firstname format UserName varchar 78 Update By person in lastname, firstname format Working with Test Sets The web service allows loading, adding, updating and deleting of Test Sets. The database stores Test Sets in the TestSets table and all of the methods refer to Test Sets as TestSets. When interfacing with Test Sets, you will use the TestSet object. Below are the methods of this object. Each Test Set is associated with one or more Test Set Items. TestSets Methods Web Method TestSets_Load Description This method is used to return an individual Test Set record into the TestSets object. Once an item is returned, you can use the other objects to work with it (to update or delete the Test Step).
23 22 TestSets_LoadByCriteria TestSets_Add TestSets_Update TestSets_Delete Input: AuthenticationData and TestSetId Output: Returns a TestSets object with data Security Needed: Must have READ access to Tests security entity This method is used to return TestSets records into the array of TestSets objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of TestSets objects with data Security Needed: Must have READ access to Tests security entity This method is used to add a TestSets into the database. Once done, it returns the TestSetsId of the new record. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, TestSets object Output: TestSetId Security Needed: Must have ADD access to the Tests security entity This method is used to update a Test Step in the database. Input: AuthenticationData, TestSets object Security Needed: Must have UPDATE access to the Tests security entity This method is used to delete a Test Step from the database. Input: AuthenticationData, TestSetsId Security Needed: Must have DELETE access to the Tests security entity TestSets Object Column Name Type Required Width Description TestSetId integer Y 4 Unique Identifier ProjId integer Y 4 Project Id FolderId integer 4 Folder Id CreateUserId integer 4 User Id of the person who created this item UpdateUserId integer 4 User Id of the person who last updated this item OriginalId integer 4 Reserved ImportId integer 4 Import batch Id number OwnerUserId integer 4 User Id of the person who owns this item AssigneeUserId integer 4 User Id of the person assigned to this item Title nvarchar 100 Test Set Title IsActive nvarchar 1 Is Active checkbox IsSequential nvarchar 1 Is Sequential checkbox StatusCode nvarchar 100 Test Set Status
24 23 PriorityCode nvarchar 100 Priority ExecutionType nvarchar 100 Manual Description ntext max Description DateCreated datetime 16 Date this item was created DateUpdated datetime 16 Date this item was last updated EstStart datetime 16 Estimated Start Date EstFinish datetime 16 Estimated Finish Date ActStart datetime 16 Actual Start Date ActFinish datetime 16 Actual Finish Date FolderName varchar 511 Folder Name AssignedToName varchar 78 Assigned to person in lastname, firstname format UserName varchar 78 Updated by person in lastname, firstname format OwnerName varchar 78 Owned by person in lastname, firstname format NbrTests integer 10 Number of tests in this set LastRunStatus nvarchar 100 Last Run Status LastRunDate datetime 16 Last Run Date LastRunByUserId integer 4 User id of the person who last ran this set LastRunByUser nvarchar 100 Person who last ran this set in lastname, firstname format Name NbrTimesRun integer 4 Number of times this set was run AvgRunTime integer 4 Average Run Time AvgRunTime varchar 100 Average Run Time in 00:00:00 format Formated NotesDescription text max Latest Note NbrEscalations integer 4 Number of times this item was escalated DateLastEscalated datetime 16 Date this item was last escalated LastEscalation inteer 4 Id of the Escalation Rule last used RuleId LastEscalationRule varchar 100 Title of the last Escalation Rule used NbrFilesNot integer 4 Reserved Secured NbrFiles integer 4 Number of attachments NbrNotes integer 4 Number of notes on this item NbrEvents integer 4 Reserved PctComplete tinyint 3 Percent Complete EstHrs decimal 20 Estimated Hours ActHrs decimal 20 Actual Hours EstHrsRemaining decimal 20 Estimated Hours Remaining Custom1-10 ntext max Custom fields 1 through 10 Custom11-90 varchar 100 Custom fields 11 through 90
25 24 Working with Test Set Items The web service allows loading, adding, updating, and deleting Test Set Items. The database stores Test Set Items in the TestSetItems table. When interfacing with Test Set Items, you will use the TestSetItems object. Below are the methods of this object. TestSetItems Methods Web Method TestSetItems_Load TestSetItems_LoadByCriteria TestSetItems_Add TestSetItems_Update TestSetItems_Delete Description This method is used to return an individual Test Set Item record into the TestSetItems object. Once an item is returned, you can use the other objects to work with it. Input: AuthenticationData and TestSetItemId Output: Returns a TestSetItems object with data Security Needed: Must have READ access to Tests security entity This method is used to return Test Set Item records into the array of TestSetItems objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of TestSetItems objects with data Security Needed: Must have READ access to Tests security entity This method is used to add a Test Set Item into the database. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, TestSetItems object Output: TestSetItemId Security Needed: Must have ADD access to the Tests security entity This method is used to update a Test Step in the database Input: AuthenticationData, TestSetItems object Security Needed: Must have UPDATE access to the Tests security entity This method is used to delete a Test Step from the database. Input: AuthenticationData, TestSetItemId Security Needed: Must have DELETE access to the Tests security entity TestSetItems object Column Name Type Required Width Description TestSetItemId integer Y 4 Unique identifier TestSetId integer Y 4 Test Set Id TestId integer Y 4 Test Id Seq integer Y 4 Test Set Item Sequence Number
26 25 IsActive nvarchar 2 Is Active Checkbox IsStoppedOnFail nvarchar 2 Stop on Fail Checkbox DateCreated datetime 16 Date this item was created DateUpdated datetime 16 Date this item was updated CreateUserId integer 4 User Id of the person who created this item UpdateUserId integer 4 User Id of the person who last updated this item FolderName varchar 511 Folder Name AssignedToName varchar 78 User assigned to the test in lastname, firstnam format UserName varchar 78 User who last updated the test in lastname, firstname format OwnerName varchar 78 User who owns the test in lastname, firstname format LastRunByName nvarchar 200 User who last ran the test in lastname, firstname format Version integer 4 Test Version Number ProjId integer 4 Project Id FolderId integer 4 Folder Id Title nvarchar 200 Test Title TestIsActive nvarchar 2 Test is Active StatusCode nvarchar 200 Test Design Status ExecutionType nvarchar 200 Manual TestType nvarchar 200 Test Type Priority nvarchar 200 Priority Description ntext max Description TestDateCreated datetime 16 Date the Test was created TestDateUpdated datetime 16 Date the Test was last updated TestCreateUserId int 4 User Id of the person who created the Test TestUpdateUserId integer 4 User Id of the person who last updated the Test AssigneeUserId integer 4 User Id of the person assigned to the test OwnerUserId integer 4 User Id of the person who owns the test OriginalId integer 4 Reserved ImportId integer 4 Import batch Id ScriptSourceId integer 4 Reserved Custom1-10 ntext max Custom Fields 1 through 10 NbrFailStatus integer 4 Number of times the test has failed NbrPassStatus integer 4 Number of times the test has passed AvgRunTime integer 4 Average Run Time AvgRunTime varchar 100 Average Run Time in 00:00:00 format Formated NbrTimesRun integer 4 Number of times the test was run LastRunByUserId integer 4 User Id of the person who last ran the test LastRunTestSet integer 4 Test Set Id where the test was last run
27 26 LastRunTestSet nvarchar 200 Test Set Title where the test was last run Title LastRunDate datetime 16 Date the test was last run LastRunStatus nvarchar 200 Test Run Status the last time the test was run NbrSteps integer 4 Number of steps in the test NotesDescription text max Latest Test Note NbrEscalations integer 4 Number of times the test was escalated DateLastEscalated datetime 16 Date of last escalation LastEscalation integer 4 Id of the last escalation rule RuleId LastEscalationRule varchar 100 Title of the last escalation rule NbrFilesNot integer 4 Reserved Secured NbrFiles integer 4 Number of attachments NbrNotes integer 4 Number of Notes NbrEvents integer 4 Reserved ScriptName nvarchar 510 Reserved Custom11-90 varchar 100 Custom fields 11 through 90 Working with Test Configurations The web service allows loading, adding, updating and deleting of Configurations. The database stores configurations in the TestConfiguration table. When interfacing with configurations, you will use the TestConfiguration object. Below are the methods of this object. TestConfiguration Methods Web Method TestConfigurations_Load TestConfigurations_LoadByCriteria Description This method is used to return an individual Test Configuration record into the TestConfigurations object. Once an item is returned, you can use the other objects to work with it (to update or delete the Test Step). Input: AuthenticationData and TestConfigurationId Output: Returns a TestConfigurations object with data Security Needed: Must have READ access to Tests security entity This method is used to return Test Configuration records into the array of TestConfigurations objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of TestConfigurations objects with data Security Needed: Must have READ access to Tests security entity
28 27 TestConfigurations_Add TestConfigurations_Update TestConfigurations_Delete This method is used to add a Test Configuration into the database. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, TestConfigurations object Output: TestConfigurationId Security Needed: Must have ADD access to the Tests security entity This method is used to update a Test Step in the database. Input: AuthenticationData, TestConfigurations object Security Needed: Must have UPDATE access to the Tests security entity This method is used to delete a Test Step from the database. Input: AuthenticationData, TestConfigurationId Security Needed: Must have DELETE access to the Tests security entity Test Configurations Object Column Name Type Required Width Description ConfigId integer 4 Unique identifier ProjId integer Y 4 Project Id FolderId integer 4 Folder Id Configuration nvarchar 200 Configuration Name Name Description ntext max Description IsActive nvarchar 2 Is Active Checkbox CreateUserId integer 4 User Id of the person who created this item UpdateUserId integer 4 User Id of the person who last updated this item DateCreated datetime 16 Date this item was created DateUpdated datetime 16 Date this item was last updated Custom1-10 ntext max Custom Fields 1 through 10 OwnerUserId integer 4 User Id of the person who owns this item OwnerName varchar 78 Owner name in lastname, firstname format NbrFilesNot integer 4 Reserved Secured FolderName varchar 511 Folder Name UserName varchar 78 Name of the person who last updated this item in lastname, firstname format NbrFiles integer 4 Number of attachments NbrNotes integer 4 Number of Notes
29 28 NotesDescription text max Latest Note Custom11-90 varchar 100 Custom Fields 11 through 90 OriginalId integer 4 Reserved ImportId integer 4 Import Batch Number Working with Test Runs The web service allows loading, adding, updating, and deleting of Test Runs. The database stores Test Runs in the TestRuns table. When interfacing with TestRuns, you will use the TestRuns object. Below are the methods of this object. A Test Run is associated with one or more Test Run Items. Test Runs Methods. Web Method TestRuns_Load TestRuns_LoadByCriteria TestRuns_Add TestRuns_Update Description This method is used to return an individual Test Run record into the TestRuns object. Once an item is returned, you can use the other objects to work with it. Input: AuthenticationData and TestRunId Output: Returns a TestRuns object with data Security Needed: Must have READ access to Tests security entity This method is used to return Test Run records into the array of TestRuns objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of TestRuns objects with data Security Needed: Must have READ access to Tests security entity This method is used to add a Test Run into the database. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, TestRuns object Output: TestRunId Security Needed: Must have ADD access to the Tests security entity This method is used to update a Test Step in the database. Input: AuthenticationData, TestRuns object Security Needed: Must have UPDATE access to the Tests security entity TestRuns Object Column Name Type Required Width Description TestRunId Integer 4 Unique identifier
30 29 TestSetId integer Y 4 Test Set Id TestSetName nvarchar 100 Test Set Title TestConfigId integer 4 Configuration Id Configuration nvarchar 100 Configuration Name Name ReleaseId integer 4 Release Id ProjId integer Y 4 Project Id RunByUserId integer 4 User Id of the person who ran this item RunByUserName varchar 78 User who ran this item in lastname, firstname format IsSequential nvarchar 2 Is Sequential Checkbox StatusCode nvarchar 100 Status ExecutionType nvarchar 100 Manual DateStarted datetime 16 Date this run was started DateFinished datetime 16 Date this run was finished NbrTests integer 4 Number of Test in this run NbrPassed integer 4 Number of tests that passed NbrFailed integer 4 Number of test that failed NbrBlocked integer 4 Number of test that are blocked NbrAwaitingRun integer 4 Number of tests awaiting run RunTime integer 4 Run Time RunTimeFormated varchar 100 Run Time in 00:00:00 format ReleaseName nvarchar 100 Release / Iteration / Build Name Working with Test Run Items The web service allows loading, adding, updating and deleting Test Run Items. The database stores Test Run Items in the TestRunItems table. When interfacing with Test Run Items, you will use the TestRunItems object. Below are the methods of this object. Test Run Items Methods Web Method TestRunItems_Load TestRunItems_LoadByCriteria Description This method is used to return an individual Test Run Item record into the TestRunItems object. Once an item is returned, you can use the other objects to work with it (to update or delete the Test Run Item). Input: AuthenticationData and TestRunItemId Output: Returns a TestRunItems object with data Security Needed: Must have READ access to Tests security entity This method is used to return Test Run Item records into the array of TestRunItems objects that meet the condition.
31 30 TestRunItems_Update Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of TestRunItems objects with data Security Needed: Must have READ access to Tests security entity This method is used to update a Test Step in the database. Input: AuthenticationData, TestRunItems object Security Needed: Must have UPDATE access to the Tests security entity TestRunItems Object Column Name Type Required Width Description TestRunItemId Integer 4 Unique identifier TestSetId integer Y 4 Test Set Id ProjId integer Y 4 Project Id TestRunId integer Y 4 Test Run Id TestId integer Y 4 Test Id TestName nvarchar 100 Test Title Version integer Y 4 Test Run Item Version Seq integer Y 4 Test Run Item Sequence StatusCode nvarchar 100 Test Run Item Status DateStarted datetime 16 Date Started DateFinished datetime 16 Date Finished RunTime int 4 Run Time RunTimeFormated varchar 100 Run Time in 00:00:00 format IsStoppedOnFail nvarchar 1 Is Stopped on Fail Checkbox RunByUserName varchar 78 User who ran this in lastname, firstname format ReleaseId integer 4 Release / Iteration / Build Id ReleaseName nvarchar 100 Release / Iteration / Build Name TestConfigId integer 4 Configuration Id Configuration nvarchar 100 Configuration Name Name TestSetName nvarchar 100 Test Set Name AvgRunTime integer 4 Average Run Time AvgRunTime Formated varchar 100 Average Run Time in 00:00:00 format Working with Test Run Results The web service allows loading and updating Test Run Results. The database stores Test Run Results in the TestRunResults table. When interfacing with Test Run Results, you will use the TestRunResults object. Below are the methods of this object.
32 31 TestRunResults Methos Web Method TestRunResults_Load TestRunResults_LoadByCriteria TestRunResults_Update Description This method is used to return an individual Test Run Result Item record into the TestRunResults object. Input: AuthenticationData and TestRunResultId Output: Returns a TestRunResults object with data Security Needed: Must have READ access to Tests security entity This method is used to return Test Run Result records into the array of TestRunResults objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of TestRunResults objects with data Security Needed: Must have READ access to Tests security entity This method is used to update a Test Run Result in the database. Input: AuthenticationData, TestRunResults object Security Needed: Must have UPDATE access to the Tests security entity TestRunResults Object Column Name Type Required Width Description TestRunResultId integer Y 4 Unique identifier TestRunItemId integer Y 4 Test Run Item Id Seq integer Y 4 Sequence IsStoppedOnFail nvarchar 1 Is Stopped on Fail checkbox StatusCode nvarchar 100 Status Step ntext Y max Step ExpectedResult ntext max Expected Result ActualResult ntext max Actual Result TestStepId integer 4 Test Step Id ProjId integer 4 Project Id Working with Test Cases (Release 9.6 and prior) The web service allows loading, adding, updating, and deleting of Test Cases. The database stores Test Cases in the TestCases table and all of the webservice methods refer to Test Cases as TestCases.
33 32 When interfacing with Test Cases, you will use the TestCaseManager object. Below are the methods of this object: TestCases Methods Web Method TestCases_Load TestCases_LoadByCriteria TestCases_LoadByUNC TestCases_Add Description This method is used to return an individual Test Case record into the TestCase object. Once an item is returned, you can use the other objects to work with it (to update or delete the TestCase). Input: AuthenticationData and TestCaseId Output: Returns a TestCase object with data Security Needed: Must have READ access to Test Cases security entity This method is used to return TestCase records into the array of TestCase objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of TestCase objects with data Security Needed: Must have READ access to Test Cases security entity This method is used to return a list of test cases into the TestCase object based on the Script UNC. Once an item is returned, you can use the other objects to work with it (to update or delete the TestCase). Input: AuthenticationData and AutomationScriptUNC Output: Returns a TestCase object with data Security Needed: Must have READ access to Test Cases security entity This method is used to add a TestCase into the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. If you wish to automatically generate a defect upon failing a test cases, set CreateDefectUponFailedTestCase = Y, otherwise, set it to N. You pass the TestCase object t to the routine and it creates a new TestCase record. If you also pass NewNotes, it will store the Notes and associate those notes with the TestCase. Once done, it returns the TestCaseId of the new record. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, TestCase object, Send Alert (Y/N), NewNotes (string) Output: TestCaseId Security Needed: Must have ADD access to the Test Cases security entity
34 33 TestCases_Update TestCases_Delete This method is used to update a TestCase in the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. If you wish to automatically generate a defect upon failing a test cases, set CreateDefectUponFailedTestCase = Y, otherwise, set it to N. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, TestCase object, Send Alert (Y/N), CreateDefectUponFailedTestCase (Y/N) Security Needed: Must have UPDATE access to the TestCases security entity This method is used to delete a TestCase from the database. Input: AuthenticationData, TestCaseId Security Needed: Must have DELETE access to the Test Cases security entity TestCase Object TestCase object is used for retrieving and providing information about TestCase. Required by TestCases_Load, TestCases_LoadByUNC, TestCases_Update, TestCases_Add, TestCases_Delete and TestCaseManager. Field Type Required Max Length Description TestCaseId Unique identifier Title String Y 100 Short description StatusCode String Y 100 Status FunctSpecId Grouping String 50 SubGrouping String 50 Keywords String 200 Steps String 8000 ExpectedResults String 8000 OwnerUserId AssigneeUserId FolderId LinkedBugId EstHrs Double EstStart EstFinish PctComplete ActHrs Double ActStart ActFinish EstHrsRemaining Double Custom1 Custom10 String 8000
35 34 Custom11 Custom90 String 100 Working with Automation Hosts The web service allows loading, adding, updating, and deleting of Automation Hosts. The database stores Automation Hosts in the AutomationHosts table. When interfacing with Automation Hosts, you will use the AutomationHosts object. Below are the methods of this object. AutomationHosts Methods Web Method Description AutomationHosts_Load This method is used to return an individual AutomationHosts record that provides information about the Host. AutomationHosts_LoadBy Criteria AutomationHosts_Add AutomationHosts_Update AutomationHosts_Delete Input: AuthenticationData and AutomationHostsId Output: Returns an AutomationHost object with data Security Needed: Must have full access to Test Cases This method is used to return AutomationHosts records into the array of Automation Host objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of AutomationHosts objects with data Security Needed: Must have full access to Test Cases This method is used to an an AutomationHosts record into the database. Input: AuthenticationData, AutomationHosts object Output: AutomationHostsId Security Needed: Must have full access to Test Cases This method is used to update an AutomationHosts record in the database. Input: AuthenticationData, AutomationHostsId Security Needed: Must have full access to Test Cases This method is used to delete an AutomationHosts record from the database. Input: AuthenticationData, AutomationHostsId Security Needed: Must have full access to Test Cases
36 35 AutomationHosts Object AutomationHosts object is used for retrieving and providing information about Automation Hosts. Required by AutomationHosts_Load, AutomationHosts_Update, AutomationHosts_Add, AutomationHosts_Delete and AutomationHostsManager. Field Type Required Max Length Description AutomationHostId Unique Identifier HostName String Y (max) Description String Y (max) DeptId Y Department Id CreateUserId UpdateUserId DateUpdated DateCreated Working with Automation Runs The web service allows loading, adding, updating and deleting of Automation Runs. AutomationRuns Methods Web Method Description AutomationRuns_Load This method is used to return an individual AutomationRuns record that provides information about the Run AutomationRuns_LoadBy Criteria AutomationRuns_Add AutomationRuns_Update Input: AuthenticationData and AutomationRunsId Output: Returns an AutomationRuns object with data Security Needed: Must have full access to Test Cases This method is used to return AutomationRuns records into the array of Automation Runs objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of AutomationRuns objects with data Security Needed: Must have full access to Test Cases This method is used to an Add an AutomationRuns record into the database. Input: AuthenticationData, AutomationRuns object Output: AutomationRunsId Security Needed: Must have full access to Test Cases This method is used to update an AutomationRuns record in the database. Input: AuthenticationData, AutomationRunsId
37 36 AutomationRuns_Delete Security Needed: Must have full access to Test Cases This method is used to delete an AutomationRuns record from the database. Input: AuthenticationData, AutomationRunsId Security Needed: Must have full access to Test Cases AutomationRuns Object AutomationRuns object is used for retrieving and providing information about AutomationRuns. Required by AutomationRuns_Load, AutomationRuns_Update, AutomationRuns_Add, AutomationRuns_Delete and AutomationRunsManager. Field Type Required Max Length Description AutomationRunId Unique Identifier AutomationTestItemId Y Test Item Id AutomationHostId Y Host Id Status String Y 100 FullTestName String Y (max) Test Name NbrTests Y Number of tests run NbrPassed Y Number of tests passed NbrFailed Y Number of test failed StartTime EndTime DurationInSecs ProjId Project Id FileId CreateUserId UpdateUserId DateUpdated DateCreated
38 37 Working with Automation Test Items The web service allows loading, adding, updating and deleting of Automation Test Items. The database stores Automation Test Items in the AutomationTestItems table. AutomationTestItems Methods Web Method Description AutomationTestItems_Load This method is used to return an individual AutomationItems record that provides information about the Run AutomationTestItems_LoadBy Criteria AutomationTestItems_LoadBy HostName AutomationTestItems_Add AutomationTestItems_Update Input: AuthenticationData and AutomationItemsId Output: Returns an AutomationTestItems object with data Security Needed: Must have full access to Test Cases This method is used to return AutomationTestItems records into the array of Automation Test Items objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns an array of AutomationTestItems objects with data Security Needed: Must have full access to Test Cases This method is used to return AutomationTestItems records into the array of Automation Test Items objects that meet the condition for Host Name. Input: AuthenticationData, Host Name Output: Returns an array of AutomationTestItems objects for the Host Name with data Security Needed: Must have full access to Test Cases This method is used to an Add an AutomationTestItems record into the database. Input: AuthenticationData, AutomationTestItems object Output: AutomationTestItemsId Security Needed: Must have full access to Test Cases This method is used to update an AutomationTestItems record in the database. Input: AuthenticationData, AutomationTestItemsId Security Needed: Must have full access to Test Cases
39 38 AutomationTestItems_Delete This method is used to delete an AutomationTestItems record from the database. Input: AuthenticationData, AutomationTestItemId Security Needed: Must have full access to Test Cases AutomationTestItems Object AutomationTestItems object is used for providing information about Automation Test Items. Required by AutomationTestItems_Load, AutomationTestItems_Update and AutomationTestItems_Delete. Field Type Required Max Length Description AutomationTestItemId Unique identifier AutomationHostId Y TestName String Y (max) FullPath String (max) TestType String 100 AutomationTestParentId Description String (max) AutomationType String (max) ProjId Project Id CreateUserId UpdateUserId DateUpdated DateCreated
40 39 Working with Automation Test Schedules The web service allows loading, adding, updating and deleting Automation Schedules. The database stores Automation Test Schedules in the AutomationSchedules table. AutomationSchedules Methods Web Method Description AutomationSchedules_Load This method is used to return an individual Automation Schedule record AutomationSchedules_LoadBy Criteria AutomationSchedules_Add AutomationSchedules_Update AutomationSchedules_Delete Input: AuthenticationData and AutomationItemsId Output: Returns an AutomationSchedules object with data Security Needed: Must have full access to Test Cases and Automation Runs This method is used to return Automation Schedule records into the array of Automation Schedule objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns an array of AutomationTestItems objects with data Security Needed: Must have full access to Test Cases This method is used to an Add an Automation Schedule record into the database. Input: AuthenticationData, AutomationSchedule object Output: AutomationSchedule Id Security Needed: Must have full access to Test Cases and Automation This method is used to update an AutomationSchedule record in the database. Input: AuthenticationData, AutomationScheduleId, AutomationTestItemId Security Needed: Must have full access to Test Cases and Automation This method is used to delete an AutomationSchedule record from the database. Input: AuthenticationData, AutomationScheduleId Security Needed: Must have full access to Test Cases and Automation
41 40 AutomationSchedules_IsTests bytimespanexist AutomationSchedules_Load TestsByTimeSpan This method is used to verify AutomationSchedules for a time span. Input: Authentication data, Sutomation Type, Host Name, Start and end date/time Output: Boolean Security Needed: Must have full access to Test Cases and Automation This method is used to return Automation Schedule records into the array of Automation Schedule objects that meet the condition. Input: AuthenticationData, AutomationType, Host Name, start and end date/time Output: Returns an array of AutomationTestItems objects with data Security Needed: Must have full access to Test Cases and Automation AutomationSchedules Object AutomationSchedules object is used for providing information about Automation Schedules. Required by AutomationSChedules_Add, AutomationSchedules_Delete, AutomationSChedules_Load, AutomationSchedules_LoadByCriteria, AutomationSchedules_Update, AutomationSchedules_IsTestByTimeSpanExist and AutomationSchedules_LoadTestsByTimeSpan. Field Type Required Max Length Description AutomationScheduleId Y Unique identifier AutomationTestItemId Y DateBegin Y Schedule Begin Date DateEnd Y Schedule End Date DaysRun Integer TimeRun String Status String Status ProjId Y Project Id CreateUserId Y UpdateUserId Y DateUpdated Y DateCreated Y
42 41 Working with Project Plan Tasks The web service allows loading, adding, updating, and deleting of Project Plan Tasks (these are tasks that reside on a Project Plan). The database stores Project Plan Tasks in the ProjectPlanTasks table. When interfacing with Project Plan Tasks, you will use the ProjectPlanTasks object. ProjectPlanTasks Methods Web Method ProjectPlanTasks_Load ProjectPlanTasks_LoadByCriteria ProjectPlanTasks_Add Description This method is used to return an individual ProjectPlanTask record into the ProjectPlanTask object. Once an item is returned, you can use the other objects to work with it (to update or delete the ProjectPlanTask). Input: AuthenticationData and TaskId Output: Returns a ProjectPlanTask object with data Security Needed: Must have READ access to Team Member Tasks security entity This method is used to return ProjectPlanTask records into the array of ProjectPlanTask objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of ProjectPlanTask objects with data Security Needed: Must have READ access to Team Member Tasks security entity This method is used to add a ProjectPlanTask into the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. You pass the ProjectPlanTask object t to the routine and it creates a new ProjectPlanTask record. If you also pass NewNotes, it will store the Notes and associate those notes with the ProjectPlanTask. Once done, it returns the TaskId of the new record. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, ProjectPlanTask object, Send Alert (Y/N), NewNotes (string) Output: TaskId Security Needed: Must have ADD access to the Team Member Tasks security entity
43 42 ProjectPlanTasks_Update ProjectPlanTasks_Delete This method is used to update a ProjectPlanTask in the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, ProjectPlanTask object, Send Alert (Y/N) Security Needed: Must have UPDATE access to the Team Member Tasks security entity This method is used to delete a ProjectPlanTask from the database. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, TaskId Security Needed: Must have DELETE access to the Team Member Tasks security entity ProjectPlanTask Object ProjectPlanTask object is used for retrieving and providing information about ProjectPlanTask. Required by ProjectPlanTasks_Load, ProjectPlanTasks_Update, ProjectPlanTasks_Add, ProjectPlanTasks_Delete and ProjectPlanTaskManager. Field Type Required Max Length Description TaskId Unique identifier TaskName String Y 100 Task Name ProjPlanId Y Project Plan Identifier Indent IsParent String 1 IsExpanded String 1 SeqNum PredNum String 50 EstStart EstFinish EstHrs Decimal EstCostInt Decimal EstCostExt Decimal ActStart ActFinish ActHrs Decimal ActCostInt Decimal ActCostExt Decimal RequestedBy String 30 AssigneeUserId
44 43 PriorityCode String 100 PctComplete Description String 8000 FunctSpecId IsBillable String 1 EstHrsRemaining Decimal LinkedItemCode String 100 LinkedItemId Custom1 Custom10 String 8000 Custom11 Custom90 String 100 Working with Agile Tasks (ProjectTasks) The web service allows loading, adding, updating, and deleting of Agile Tasks (formerly Quick Tasks). The database stores Agile Tasks in the ProjectTasks table and all of the web service methods refers to Agile Tasks as Project Tasks. When interfacing with Project Tasks, you will use the ProjectTasks object. Agile Tasks (ProjectTasks) Methods Web Method Description ProjectTasks_Load This method is used to return an individual ProjectTask record into the ProjectTask object. Once an item is returned, you can use the other objects to work with it (to update or delete the ProjectTask). ProjectTask_LoadByCriteria Input: AuthenticationData and TaskId Output: Returns a ProjectTask object with data Security Needed: Must have READ access to Agile Tasks security entity This method is used to return ProjectTask records into the array of ProjectTask objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of ProjectTask objects with data Security Needed: Must have READ access to Agile Tasks security entity
45 44 ProjectTasks_Add ProjectTasks_Update ProjectTasks_Delete This method is used to add a ProjectTask into the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. You pass the ProjectTask object t to the routine and it creates a new ProjectTask record. If you also pass NewNotes, it will store the Notes and associate those notes with the ProjectTask. Once done, it returns the TaskId of the new record. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, ProjectTask object, Send Alert (Y/N), NewNotes (string) Output: TaskId Security Needed: Must have ADD access to the Agile Tasks security entity This method is used to update a ProjectTask in the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, ProjectTask object, Send Alert (Y/N) Security Needed: Must have UPDATE access to the Agile Tasks security entity This method is used to delete a ProjectTask from the database. Input: AuthenticationData, TaskId Security Needed: Must have DELETE access to the Agile Tasks security entity Agile Tasks (ProjectTasks) Object Tasks object is used for retrieving and providing information about Project Tasks. Required by ProjectTasks_Load, ProjectTasks_Update, ProjectTasks_Add, ProjectTasks_Delete and ProjectTaskManager. Field Type Required Max Length Description TaskId Unique identifier TaskTypeCode String Y 100 Task Type Title String Y 100 Short description MLSId DateBegin DateEnd PctComplete EstHrs Decimal
46 45 ActualHrs Decimal EstCost Decimal ActualCost Decimal RequestedBy String 30 OwnerUserId PriorityCode String 100 StatusCode String 100 Grouping String 50 SubGrouping String 50 Keywords String 200 SortOrder OtherReminder s String 1000 DateOtherReminder Description String 8000 IsOnActivityRpt String 1 TaskUnits TaskDuration String 10 ShowTimeAs String 30 IsRecurring String 1 IsMeeting String 1 FirstRecurTaskId FirstMeetingTaskId FolderId OutlookId String 255 Custom1 Custom10 String 8000 Custom11 Custom90 String 100 Working with Contacts The web service allows loading, adding, updating, and deleting of Contacts. The database stores Contacts in the Contacts table. When interfacing with Contacts, you will use the Contacts object. Contacts Methods Web Method Contacts_Load Contacts_LoadByCriteria Description This method is used to return an individual Contact record into the Contact object. Once an item is returned, you can use the other objects to work with it (to update or delete the Contact). Input: AuthenticationData and ContactId Output: Returns a Contact object with data Security Needed: Must have READ access to Contacts security entity This method is used to return Contact records into the array of Contact objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of Contact objects with data Security Needed: Must have READ access to Test Cases security entity
47 46 Contacts_Add Contacts_Update Contacts_Delete This method is used to add a Contact into the database. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, Contact object Output: ContactId Security Needed: Must have ADD access to the Contacts security entity This method is used to update a Contact in the database. If Send Alert = Y, it will send alerts for the update. If N, no alerts are sent. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, Contact object, Send Alert (Y/N) Security Needed: Must have UPDATE access to the Contacts security entity This method is used to delete a Contact from the database. Input: AuthenticationData, ContactId Security Needed: Must have DELETE access to the Contacts security entity Contacts Object Contact object is used for retrieving and providing information about Contact. Required by Contacts_Load, Contacts_Update, Contacts_Add, Contacts_Delete and ContactManager. Field Type Required Max Length Description ContactId Unique identifier ContactPerson String Y 50 Contact name CompanyName String Y 50 Contact Company String Y 255 Contact address Title String 100 Contact Title WorkPhone String 25 HomePhone String 25 CellPhone String 25 OtherPhone String 25 Pager String 25 Fax String 25 WebSite String 255 Status String 100 ContactType String 100 Description String 1000 Date1stContact DateCallBack
48 47 AssigneeUserId OwnerUserId PrimaryAddress String FolderId OutlookId String 255 Custom1 Custom10 String 8000 Custom11 Custom90 String 100 Working with Folders The web service allows loading, adding, updating, and deleting of Folders. The database stores Folders in the Folders table. When interfacing with Contacts, you will use the Folders object. Folders Methods Web Method Folders_Load Folders_LoadByCriteria Folders_Add Folders_Update Description This method is used to return an individual Folders record that provides information about the Folder. Input: AuthenticationData and FolderId Output: Returns a Folders object with data Security Needed: Must have READ access to Folder Maintenance for the Entity This method is used to return Folders records into the array of Folders objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of Folders objects with data Security Needed: Must have READ access to Folder Maintenance for the Entity This method is used to add a Folder record into the database. Input: AuthenticationData, Folders object Output: FolderId Security Needed: Must have ADD access to Folder Maintenance for the Entity This method is used to update a Folders record in the database. Input: AuthenticationData, FolderId Security Needed: Must have UPDATE access to Folder Maintenance for the Entity
49 48 Folders_Delete This method is used to delete a Folders record from the database. Input: AuthenticationData, FolderId Security Needed: Must have DELETE access to Folder Maintenance for the Entity Folders Object Folders object is used for retrieving and providing information about Folders. Required by Folders_Load, Folders_Add, Folders_Update, Folders_Delete and Folders Management. Field Type Required Max Length Description FolderId Unique Identifier ProjId Y Project Id FolderName String Y 255 Description String 1000 EntityCode String Y 100 Entity where the Folder resides IsPublic String Y 1 DateCreated DateUpdated UpdateUserId OwnerUserId DeptId ParentName String 255 IsActive String 1 IsVersion String 1 Working with SCM Change Lists The web service allows the updating of Source Control Management Change List objects. The database stores Source Control Files in the in the SCMChangeLists object. SCMChangeLists Methods Web Method Description SCMChangeLists_Load This method is used to return an individual ChangeLists record that provides information about the Folder. SCMChangeLists_ LoadByCriteria Input: AuthenticationData and SCMChangeListsId Output: Returns an SCMChangeLists object with data Security Needed: Must have READ access to SCM Change Lists. This method is used to return SCMChangeLists records into the array of objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize,
50 49 SCMChangeLists_Add SCMChangeLists_ Delete PageNumber Output: Returns array of SCMChangeLists objects with data Security Needed: Must have READ access to SCM Change Lists This method is used to add an SCMChangeLists record into the database. Input: AuthenticationData, SCMChangeLists object Output: SCMChangeListId Security Needed: Must have ADD access to SCM Change Lists. This method is used to delete an SCMChangeLists record from the database. Input: AuthenticationData, SCMChangeListsId Security Needed: Must have DELETE access to SCM Change Lists SCMChangeLists Object SCMChangeLists Object is used for retrieving SCMChangeList information. Required by SCMChangeLists_Load, SCMChangeList_LoadbyCriteria, SCMChangeLists_Add and SCMChangeLists_Delete. Field Type Required Max Length Description ChangeListId Unique Identifier Description varchar 255 ProjId Integer Project Identifier UpdateUserId Updated by user Id DateCreated Date Created DateUpdated Date last updated Working with SCM Change List Files The web service allows the updating of Source Control Management Change List File objects. The database stores Source Control Management in the SCMChangeListFiles object. When interfacing with Source Control Management, you will use the SCMChangeListFiles object. SCMChangeListFiles Methods Web Method Description SCMUpdate This method is used to update an SCMUpdate record in the database. Input: AuthenticationData, ChangeListFileId Security Needed: Must have full access to SCM Change Lists.
51 50 SCMChangeListFiles_ Load SCMChangeListFiles_ LoadByCriteria SCMChangeListFiles_ Add SCMChangeListFiles_ Delete This method is used to return an individual SCMChangeListFiles record that provides information about the Folder. Input: AuthenticationData and SCMChangeListFileId Output: Returns an SCMChangeListFiles object with data Security Needed: Must have READ access to SCM Change Lists. This method is used to return SCMChangeListFiles records into the array of objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of SCMChangeListFiles objects with data Security Needed: Must have READ access to SCM Change Lists This method is used to add an SCMChangeListFiles record into the database. Input: AuthenticationData, SCMChangeLists object Output: SCMChangeListFilesId Security Needed: Must have ADD access to SCM Change Lists. This method is used to delete an SCMChangeListFiles record from the database. Input: AuthenticationData, SCMChangeListFileId Security Needed: Must have DELETE access to SCM Change Lists SCMChangeListFiles Object SCMChangeListFiles Object is used for retrieving SCMChangeListFiles information. Required by SCMUpdate, SCMChangeListFiles_Load, SCMChangeListFiles_LoadbyCriteria, SCMChangeListFiles_Add and SCMChangeListFiles_Delete. Field Type Required Max Length Description ChangeListFileId Unique Identifier ChangeListId Y Change List Id Comment String Y 4000 Comment Revision String 255 Revision Information Author String 255 Author FilePath String 255 Object path UpdateUserId Updated by user DateCreated Date Created DateUpdated Date Last Updated
52 51 Working with Attachments The web service allows loading list of attachments, loading attachment s data, adding and deleting of attachment. The database stores Attachments in the Attachments table. When interfacing with Attachments, you will use the Attachment object. Attachments Methods Web Method Attachments_GetAttachmentsList Attachments_GetAttachment Description This method is used to return a list of Attachment objects. Input: AuthenticationData, EntityCode, FKId Output: Returns array of Attachments Security Needed: Must have READ access to EntityCode security entity This method is used to return attachment s data. Input: AuthenticationData, AttachmentId Output: Returns array of file s bytes Security Needed: Must have READ access to Attachment s EntityCode of security entity Attachments_Add This method is used to add a Attachment. If SaveOriginal = True, it will save old version of this file if it exist already. If SaveOriginal = False, it will replace old version of this file if it exist already. Attachments_Delete Input: AuthenticationData, Attachment object(required next fields: EntityCode, FKId, FileName), File as array of file s bytes, SaveOriginal(True/False) Output: AttachmentId Security Needed: Must have ADD access to the Attachment s EntityCode security entity This method is used to delete an Attachment. Input: AuthenticationData, AttachmentId Security Needed: Must have DELETE access to the Attachment s EntityCode security entity
53 52 Attachment Object Attachment object is used for retrieving and providing information about Attachment. Required by Attachments_GetAttachmentsList, Attachments_GetAttachment, Attachments_Add, Attachments_Delete and AttachmentManager. Field Type Required Max Length Description AttachmentId Unique identifier FKId Y Foreign key (e.g. TestCaseId) EntityCode String Y 100 Entity name (e.g. TestCases) AttachmentTypeCode String Y 100 Seq FileName String Y 255 File name FileNameZipped String Y 255 Zip archive s file name Title String Y 100 Title Comments String 8000 FileFormatCode String Y 100 DateCreated DateUpdated UpdateUserId Working with Traceability The Web Service allows loading, adding, and deleting of Traceability links. The database stores Traceability Links in the TraceabilityLinks table. When interfacing with Traceability, you will use the TraceabilityLinks object. Traceability Methods Web Method TraceabilityLinks_Load TraceabilityLinks_LoadBy Criteria Description This method is used to return an individual Traceability Link record into the TraceabilityLinks object. Input: AuthenticationData and LinkId Output: Returns a TraceabilityLink object with data Security Needed: Must have Manage and View access to Traceability Links security entity and Read/Add/Update to the entities This method is used to return Traceability Link records into the array of TraceabilityLink objects that meet the condition. Input: AuthenticationData, Condition, Sorting, PageSize, PageNumber Output: Returns array of TraceabilityLink objects with data Security Needed: Must have Manage and View access to Traceability Links security entity and Read/Add/Update to the entities
54 53 TraceabilityLinks_Add TraceabilityLinks_Delete This method is used to add an item into the database. It validates all data and will spawn an error if data is invalid. Input: AuthenticationData, TraceabilityLink object Output: TraceabilityLinkId Security Needed: Must have Manage and View access to Traceability Links security entity and Read/Add/Update to the entities This method is used to delete a Traceability Link from the database. Input: AuthenticationData, LinkId Security Needed: Must have Manage and View access to Traceability Links security entity and Read/Add/Update to the entities TraceabilityLink Object TraceabilityLink object is used for cross referencing related objects in other tables. Required by TraceabilityLinks_Add, TraceabilityLinks_Delete, TraceabilityLinks_Load and TraceabilityLinks_LoadByCriteria. Field Type Required Max Length Description LinkId Unique identifier of link ProjId Y Project Id EntityCode1 String Y 106 Entity Name FKId1 Y FK Identifier EntityCode2 String Y 106 Entity Name FKId2 Y FK Identifier DateUpdated UpdateUserId
55 54 Web Service Helpers The web service provides helper methods for sending s, adding audit records, adding peformance log records, and adding s notes to records. Audits are already written automatically when using the ADD/UPDATE/DELETE methods, but in certain circumstances, you may find the need to add audits manually. WebService Helper Methods Web Method Description Audits_Add This method allows you to add Audit records. Audits are already written automatically when using the ADD/UPDATE/DELETE methods, but in certain circumstances, you may find the need to add audits manually. The Audits are stored in the Audits table. Notes_Add Perflogs_Add Dblogs_Add Send GetLoginInfo Input: AuthenticationData, Audit object Output: none This method allows you to add Notes to existing records (notes to a requirement, test case, defect, project plan task, agile task, contact record, etc). The Note records are stored in the Notes table. Input: AuthenticationData, Notes object Output: none This method allows you to add Performance Log records to track timings for specific programatic actions, etc. The Performance Logs are stored in the PerfLogs table. Input: AuthenticationData,Perflog object Output: none This method allows you to add error logs records to track errors for specific programatic actions, etc. The Error Logs are stored in the DbLogs table. Input: AuthenticationData, Dblog object Output: none This method allows you to send an . You might want to do this after performing specific actions, etc. Input: AuthenticationData, Send parameters Output: none This method retrieves your Authentication Data for the AuthenticationData object. Input: AppCode, , and Password Output: returns UserId, AppCode, ProjId, DeptId
56 55 Locks_CheckLock This method retrieves the Is Locked status as a Boolean. Input: Authentication data, EntityCode, Id number Output: Boolean CheckLock results, AppCode, DeptId, ProjeId, UserId, PassCode GetLoginInfo ByEntity GetVersion This method retrieves the UserId, DeptId and ProjIds for the user and password Input: Appcode, , Passowrd and EntityCode Output: returns UserId, DeptId and ProjIds On-Premises / Enterprise Only: This method can be run on the server where psws.asmx resides. It returns the current SoftwarePlanner version. Audit Object Audit is used to add an audit to an existing record (requirement, test case, defect, project plan task, agile task, contact, etc). This is accessed from the AuditManager object. Field Type Required Max Length Description FKId Y ID of associated object EntityCode String Y 30 EntityCode of associated object Valid Values: Defects, Contacts, FunctionalSpecs, ProjectPlanTasks, ProjectTasks, TestCases. Title String Y 100 Description of changes OldValue String 1000 Old value of field NewValue String 1000 New value of field Notes Object Notes are used to add a note to an existing record (requirement, test case, defect, project plan task, agile task, contact, etc). This is accessed from the NotesManager object. Field Type Required Max Length Description FKId Y ID of associated object (TestCaseId, BugId, FunctSpecId, TaskId, ContactId, etc). EntityCode String Y 30 EntityCode of associated object Valid Values: Defects, Contacts, FunctionalSpecs, ProjectPlanTasks, ProjectTasks, TestCases. Description String Y Unlimited Note
57 56 PerfLog Object PerfoLog object allows you to add Performance Log records to track timings for specific programatic actions, etc. This is accessed from the PerfLogManager object. Field Type Required Max Length Description Task String Y 100 Task being performed Begin Date/time it started End Date/time it ended DbLog Object DbLog object allows you to add error logs records to track errors for specific programatic actions, etc. This is accessed from the DbLogManager object. Field Type Required Max Length Description SeverityCode String Y 100 Severity of error ErrSource String Y 64 Source of error ErrNumber Y Number of error Description String Y 500 Description of error Send Parameters Send parameters allow you to send an . You might want to do this after performing specific actions, etc. This is accessed from the Manager object. Field Type Required Max Length Description From String Y 255 address being sent from To String Y 255 address being sent o CC String Y 255 address(es) to CC Subject String Y 100 subject Body String Y 8000 Body of the
58 57 LoadByCriteria Rules When invoking the LoadByCriteria methods (e.g. Bugs_LoadByCriteria, TestCases_LoadByCriteria, Contacts_LoadByCriteria, FunctionalSpecs_LoadByCriteria, ProjectTasks_LoadByCriteria, ProjectPlanTasks_LoadByCriteria, etc), the following rules must be followed: PageSize must be > 0 and <= 200, PageNumber must be > 0, Length of Sort string must be < 512, Length of Condition XML must be < 65536, Format of Sort string must be correct, Field names in Sort string must belong to loadable object, Format of Condition XML must be correct, Field names in Condition XML must belong to loadable object, If PageNumber > count of page then empty array returned. Valid Operands opand opor opnot oplt oplte opequ opnotequ opgt opgte opin opnotin oplike opnotlike opnull opnotnull Field types tconst tstring tsqlstring tfield tdate tarray tconditionitem
59 1 Tutorial Source Code Examples Below are some.net examples of how to load/update/add/delete and load items by criteria. Loading elements Try 'Get WebReference srv = New WebRef.Service 'Load Bug Bug = srv.bugs_load(authenticationdata:=getauth(), _ BugId:=intBugId) 'Print Bug Title Console.Write("Defect" & Bug.Title & "loaded") 'Error handler Catch ex As SoapException InfoMessage = ex.actor & ":" & vbcrlf & ex.detail("description").attributes("text").value Catch ex As Exception InfoMessage = "Application Error" End Try
60 2 Updating elements Try 'Get WebReference srv = New WebRef.Service 'Function GetBug return filled from form object Bug srv.bugs_update(authenticationdata:=getauth(), _ Bug:=GetBug(), Send Alert:= "Y") Console.Write("Defect" & Bug.BugId & "successfully updated") 'Error handler Catch ex As SoapException InfoMessage = ex.actor & ":" & vbcrlf & ex.detail("description").attributes("text").value Catch ex As Exception InfoMessage = "Application Error" End Try Adding elements Try 'Get WebReference srv = New WebRef.Service 'Function GetBug return filled from form object Bug intbugid = srv.bugs_add(authenticationdata:=getauth(),_ Bug:=GetBug(), Send Alert:= "Y", _ NewNotes:= "New note added") Console.Write("Defect" & intbugid & "successfully added") 'Error handler Catch ex As SoapException InfoMessage = ex.actor & ":" & vbcrlf & ex.detail("description").attributes("text").value Catch ex As Exception InfoMessage = My.Resources.Messages.ApplicationError End Try
61 3 Deleting elements Try 'Get WebReference srv = New WebRef.Service 'Delete Bug srv.bugs_delete(authenticationdata:=getauth(), _ BugId:=intBugId) Console.Write("Defect " & intbugid & "successfully deleted") 'Error handler Catch ex As SoapException InfoMessage = ex.actor & ":" & vbcrlf & ex.detail("description").attributes("text").value Catch ex As Exception InfoMessage = My.Resources.Messages.ApplicationError End Try Loading elements by criteria Try 'Get WebReference srv = New WebRef.Service 'Load Bugs by criteria in XML objbugs =srv.bugs_loadbycriteria( _ AuthenticationData:=GetAuth(), _ Condition:=strXML, _ Sorting:= "BugId",_ PageSize:=intPageSize, _ PageNumber:=intPageNumber) 'Print Id and Title of Bugs If Not objentity Is Nothing Then For i = 1 To objbugs.length 1 Console.Write("Defect " & objbugs(i).bugid & _ ", Title " & objbugs(i).title) Next Else Console.Write("Returned 0 records") End If 'Error handler Catch ex As SoapException InfoMessage = ex.actor & ":" & vbcrlf & ex.detail("description").attributes("text").value Catch ex As Exception InfoMessage = My.Resources.Messages.ApplicationError End Try
62 4 Example LoadByCriteria Conditions Example of retrieving Requirement (FunctionalSpec) using AssignedToName field: <?xml version='1.0' encoding='utf-16'?> <Conditions xmlns:xsi=' xmlns:xsd=' Operation='opEQU'> <Items Type='tField'> <Value xsi:type='xsd:string'>assignedtoname</value> </Items> <Items Type='tString'> <Value xsi:type='xsd:string'>wilson, Michael</Value> </Items> </Conditions> Example of retrieving Requirements (FunctionalSpec) where the title starts with NEWS <?xml version='1.0' encoding='utf-16'?> <Conditions xmlns:xsi=' xmlns:xsd=' Operation='opLIKE'> <Items Type='tField'> <Value xsi:type='xsd:string'>title</value> </Items> <Items Type='tString'> <Value xsi:type='xsd:string'>news%</value> </Items> </Conditions>
63 5 Example of retrieving Requirements (FunctionalSpec) where Status <> Closed and AssigneeUserId = <?xml version='1.0' encoding='utf-16'?> <Conditions xmlns:xsi=' xmlns:xsd=' Operation='opAND'> <Conditions Operation='opEQU'> <Items Type='tField'> <Value xsi:type='xsd:string'>assigneeuserid</value> </Items> <Items Type='tString'> <Value xsi:type='xsd:string'>123456</value> </Items> </Conditions> <Conditions Operation='opNOTEQU'> <Items Type='tField'> <Value xsi:type='xsd:string'>statuscode</value> </Items> <Items Type='tString'> <Value xsi:type='xsd:string'>closed</value> </Items> </Conditions> </Conditions> We also provide in-depth training: SoftwarePlanner Training
64 6 Index of Methods Attachments_Add Attachments_Delete Attachments_GetAttachment Attachments_GetAttachmentsList Audits_Add AutomationHosts_Add AutomationHosts_Delete AutomationHosts_Load AutomationHosts_LoadByCriteria AutomationHosts_Update AutomationRuns_Add AutomationRuns_Delete AutomationRuns_Load AutomationRuns_LoadByCriteria AutomationRuns_Update AutomationSchedules_Add AutomationSchedules_Delete AutomationSchedules_IsTestsbyTimeSpanExist AutomationSchedules_Load AutomationSchedules_LoadByCriteria AutomationSchedules_LoadTestsByTimeSpan 40 AutomationSchedules_Update AutomationTestItems_Add AutomationTestItems_Delete AutomationTestItems_Load AutomationTestItems_LoadByCriteria AutomationTestItems_LoadByHostName AutomationTestItems_Update Bugs_Add Bugs_Delete Bugs_GetStatuses Bugs_Load Bugs_LoadByCriteria Bugs_Update Contacts_Add Contacts_Delete Contacts_Load Contacts_LoadByCriteria Contacts_Update Dblogs_Add Folders_Add Folders_Delete Folders_Load Folders_LoadByCriteria...47 Folders_Update...47 FunctionalSpecs_Add...14 FunctionalSpecs_Delete...14 FunctionalSpecs_Load...13 FunctionalSpecs_LoadByCriteria...14 FunctionalSpecs_Update...14 GetLoginInfo...54 GetLoginInfoByEntity...55 GetVersion...55 Locks_CheckLock...55 Notes_Add...54 Perflogs_Add...54 ProjectPlanTasks_Add...41 ProjectPlanTasks_Delete...42 ProjectPlanTasks_Load...41 ProjectPlanTasks_LoadByCriteria...41 ProjectPlanTasks_Update...42 ProjectTasks_Add...44 ProjectTasks_Delete...44 ProjectTasks_Load...43 ProjectTasks_LoadByCriteria...43 ProjectTasks_Update...44 Releases_Add...11 Releases_Delete...11 Releases_Load...11 Releases_LoadByCriteria...11 Releases_Update...11 SCMChangeListFiles_Add...50 SCMChangeListFiles_Delete...50 SCMChangeListFiles_Load...50 SCMChangeListFiles_LoadByCriteria...50 SCMChangeLists_Add...49 SCMChangeLists_Delete...49 SCMChangeLists_Load...48 SCMChangeLists_LoadByCriteria...48 SCMUpdate...49 Send TestCases_Add...32 TestCases_Delete...33 TestCases_Load...32 TestCases_LoadByCriteria...32 TestCases_LoadByUNC...32 TestCases_Update...33
65 7 TestConfigurations_Add TestConfigurations_Delete TestConfigurations_Load TestConfigurations_LoadByCriteria TestConfigurations_Update TestRunItems_Load TestRunItems_LoadByCriteria TestRunItems_Update TestRunResults_Load TestRunResults_LoadByCriteria TestRunResults_Update TestRuns_Add TestRuns_Load TestRuns_LoadByCriteria TestRuns_Update Tests_Add Tests_Delete Tests_Load Tests_LoadByCriteria Tests_Update TestSetItems_Add...24 TestSetItems_Delete...24 TestSetItems_Load...24 TestSetItems_LoadByCriteria...24 TestSetItems_Update...24 TestSets_Add...22 TestSets_Delete...22 TestSets_Load...21 TestSets_LoadByCriteria...22 TestSets_Update...22 TestSteps_Add...20 TestSteps_Delete...21 TestSteps_Load...20 TestSteps_LoadByCriteria...20 TestSteps_Update...21 TraceabilityLinks_Add...53 TraceabilityLinks_Delete...53 TraceabilityLinks_Load...52 TraceabilityLinks_LoadByCriteria...52 Tutorial Source Code Examples... 1
On-Premises Feature Creating Custom Reports and Dashboards
User s Guide 1 Contents Overview... 2 Creating Custom Crystal Reports... 2 Reporting Groups... 2 Managing Your Crystal Reports... 3 Uploading a New Crystal Report... 5 Working with Crystal Report Parameters...
Using SQL Server Management Studio
Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases
Test Automation Integration with Test Management QAComplete
Test Automation Integration with Test Management QAComplete This User's Guide walks you through configuring and using your automated tests with QAComplete's Test Management module SmartBear Software Release
PCRecruiter Resume Inhaler
PCRecruiter Resume Inhaler The PCRecruiter Resume Inhaler is a stand-alone application that can be pointed to a folder and/or to an email inbox containing resumes, and will automatically extract contact
OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010
OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010 CONTENTS What is Outlook Anywhere? Before you begin How do I configure Outlook Anywhere with Outlook 2010? How do I use Outlook Anywhere? I already
c360 Email to Case Installation and Configuration Guide
c360 Email to Case Installation and Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. www.c360.com [email protected] Table of Contents c360 Email to Case Installation and
INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3
INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you
Legacy Automated Testing Bridge QAComplete ALMComplete HP Quick Test Pro v. 10-11
User s Guide Legacy QAComplete ALMComplete HP Quick Test Pro v. 10-11 This document explains how to use the Legacy Automation Bridge for HP Quick Test Professional versions 10-11 Please note: this feature
owncloud Configuration and Usage Guide
owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,
Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability
Aras Corporation 2005 Aras Corporation. All rights reserved Notice of Rights All rights reserved. Aras Corporation (Aras) owns this document. No part of this document may be reproduced or transmitted in
GP REPORTS VIEWER USER GUIDE
GP Reports Viewer Dynamics GP Reporting Made Easy GP REPORTS VIEWER USER GUIDE For Dynamics GP Version 2015 (Build 5) Dynamics GP Version 2013 (Build 14) Dynamics GP Version 2010 (Build 65) Last updated
Virto Active Directory Service for SharePoint. Release 4.1.2. 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...
CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide
CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM User Guide Revision D Issued July 2014 Table of Contents About CRM Migration Manager... 4 System Requirements... 5 Operating Systems... 5 Dynamics
ODBC Client Driver Help. 2015 Kepware, Inc.
2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table
INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP
INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP by Dalibor D. Dvorski, March 2007 Skills Canada Ontario DISCLAIMER: A lot of care has been taken in the accuracy of information provided in this article,
RoomWizard Synchronization Software Manual Installation Instructions
2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System
c360 Portal Installation Guide
c360 Portal Installation Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. www.c360.com [email protected] Table of Contents c360 Portal Installation Guide... 1 Table of Contents... 2 Overview
Testing Best Practices
ALMComplete, QAComplete, DevComplete This document is used as a guide to improving your testing and quality assurance processes. 1 Test Case Creation Once requirements have been created and approved, while
Oracle Database 10g Express
Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives
MultiSite Manager. User Guide
MultiSite Manager User Guide Contents 1. Getting Started... 2 Opening the MultiSite Manager... 2 Navigating MultiSite Manager... 2 2. The All Sites tabs... 3 All Sites... 3 Reports... 4 Licenses... 5 3.
Opacus Outlook Addin v3.x User Guide
Opacus Outlook Addin v3.x User Guide Connecting to your SugarCRM Instance Before you can use the plugin you must first configure it to communicate with your SugarCRM instance. In order to configure the
REST Webservices API Reference Manual
crm-now/ps REST Webservices API Reference Manual Version 1.5.1.0 crm-now development documents Page 1 Table Of Contents OVERVIEW...4 URL FORMAT...4 THE RESPONSE FORMAT...4 VtigerObject...5 Id Format...5
Creating Database Tables in Microsoft SQL Server
Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are
WELCOME TO CITUS CLOUD LOAD TEST
USER S GUIDE CONTENTS Contents... 2 Chapter 1: Welcome to Citus Cloud Load Test... 3 1. What is Citus Cloud Load Test?... 3 2. Why Citus Cloud Load Test?... 3 3. Before using this guide... 3 Chapter 2:
Witango Application Server 6. Installation Guide for OS X
Witango Application Server 6 Installation Guide for OS X January 2011 Tronics Software LLC 503 Mountain Ave. Gillette, NJ 07933 USA Telephone: (570) 647 4370 Email: [email protected] Web: www.witango.com
Database Migration : An In Depth look!!
Database Migration : An In Depth look!! By Anil Mahadev [email protected] As most of you are aware of the fact that just like operating System migrations are taking place, databases are no different.
Customization & Enhancement Guide. Table of Contents. Index Page. Using This Document
Customization & Enhancement Guide Table of Contents Using This Document This document provides information about using, installing and configuring FTP Attachments applications provided by Enzigma. It also
What's New in ADP Reporting?
What's New in ADP Reporting? Welcome to the latest version of ADP Reporting! This release includes the following new features and enhancements. Use the links below to learn more about each one. What's
Capture Pro Software FTP Server System Output
Capture Pro Software FTP Server System Output Overview The Capture Pro Software FTP server will transfer batches and index data (that have been scanned and output to the local PC) to an FTP location accessible
IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide
IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide Note Before using
Create a Database Driven Application
Create a Database Driven Application Prerequisites: You will need a Bluemix account and an IBM DevOps Services account to complete this project. Please review the Registration sushi card for these steps.
A Brief Introduction to MySQL
A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term
Configuration Guide. Installation and. BlackBerry Enterprise Server Resource Kit. Version: 5.0 Service Pack: 4
BlackBerry Enterprise Server Resource Kit Version: 5.0 Service Pack: 4 Installation and Configuration Guide Published: 2012-10-15 SWD-20121015115608883 Contents 1 Overview... 5 BlackBerry Enterprise Server
Acunetix Web Vulnerability Scanner. Getting Started. By Acunetix Ltd.
Acunetix Web Vulnerability Scanner Getting Started V8 By Acunetix Ltd. 1 Starting a Scan The Scan Wizard allows you to quickly set-up an automated scan of your website. An automated scan provides a comprehensive
OSF INTEGRATOR for. Integration Guide
OSF INTEGRATOR for DEMANDWARE and MICROSOFT DYNAMICS CRM 2013 Integration Guide Table of Contents 1 Summary... 3 2 Component Overview... 3 2.1 Functional Overview... 3 2.2 Integration components... 3 2.3
Info-Alert Guide. Version 7.5
Info-Alert Guide Version 7.5 1995 2008 Open Systems Holdings Corp. All rights reserved. Document Number 2290.IA020 No part of this manual may be reproduced by any means without the written permission of
NetWrix File Server Change Reporter. Quick Start Guide
NetWrix File Server Change Reporter Quick Start Guide Introduction... 3 Product Features... 3 Licensing... 3 How It Works... 4 Getting Started... 5 System Requirements... 5 Setup... 5 Additional Considerations...
PHI Audit Us er Guide
PHI Audit Us er Guide Table Of Contents PHI Audit Overview... 1 Auditable Actions... 1 Navigating the PHI Audit Dashboard... 2 Access PHI Audit... 4 Create a Patient Audit... 6 Create a User Audit... 10
SharePoint Wiki Redirect Installation Instruction
SharePoint Wiki Redirect Installation Instruction System Requirements: Microsoft Windows SharePoint Services v3 or Microsoft Office SharePoint Server 2007. License management: To upgrade from a trial license,
Resources You can find more resources for Sync & Save at our support site: http://www.doforms.com/support.
Sync & Save Introduction Sync & Save allows you to connect the DoForms service (www.doforms.com) with your accounting or management software. If your system can import a comma delimited, tab delimited
Hamline University Administrative Computing Page 1
User Guide Banner Handout: BUSINESS OBJECTS ENTERPRISE (InfoView) Document: boxi31sp3-infoview.docx Created: 5/11/2011 1:24 PM by Chris Berry; Last Modified: 8/31/2011 1:53 PM Purpose:... 2 Introduction:...
Microsoft Dynamics CRM Security Provider Module
Microsoft Dynamics CRM Security Provider Module for Sitecore 6.6-8.0 CRM Security Provider Rev: 2015-04-15 Microsoft Dynamics CRM Security Provider Module for Sitecore 6.6-8.0 Developer's Guide A developer's
MYSQL DATABASE ACCESS WITH PHP
MYSQL DATABASE ACCESS WITH PHP Fall 2009 CSCI 2910 Server Side Web Programming Typical web application interaction Database Server 3 tiered architecture Security in this interaction is critical Web Server
Ontrack PowerControls User Guide Version 8.0
ONTRACK POWERCONTROLS Ontrack PowerControls User Guide Version 8.0 Instructions for operating Ontrack PowerControls in Microsoft SQL Server Environments NOVEMBER 2014 NOTICE TO USERS Ontrack PowerControls
Getting Started with Tableau Server 6.1
Getting Started with Tableau Server 6.1 Welcome to Tableau Server. This guide will walk you through the basic steps to install and configure Tableau Server. Then follow along using sample data and users
Upon Installation, Soda
Upon Installation, Soda Prompts you to create your user profile to register for a new profile Note: Asks your for your particulars Prompts you to select a password. You would need to provide this password
User Guide Trust Safety Accounting Upload PC Law and SFTP Software Release: Final Date
User Guide Trust Safety Accounting Upload PC Law and SFTP Software Release: Final Date: July 22, 2015 TABLE OF CONTENTS Page TRUST SAFETY ACCOUNTING UPLOAD USER GUIDE... 2 BACKGROUND... 2 HOW TO USE THE
LICENSE4J LICENSE MANAGER USER GUIDE
LICENSE4J LICENSE MANAGER USER GUIDE VERSION 4.5.5 LICENSE4J www.license4j.com Table of Contents Getting Started... 4 Managing Products... 6 Create Product... 6 Edit Product... 7 Refresh, Delete Product...
OneLogin Integration User Guide
OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...
Programming Autodesk PLM 360 Using REST. Doug Redmond Software Engineer, Autodesk
Programming Autodesk PLM 360 Using REST Doug Redmond Software Engineer, Autodesk Introduction This class will show you how to write your own client applications for PLM 360. This is not a class on scripting.
PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu
PaperStream Connect Setup Guide Version 1.0.0.0 Copyright Fujitsu 2014 Contents Introduction to PaperStream Connect... 2 Setting up PaperStream Capture to Release to Cloud Services... 3 Selecting a Cloud
A table is a collection of related data entries and it consists of columns and rows.
CST 250 MySQL Notes (Source: www.w3schools.com) MySQL is the most popular open-source database system. What is MySQL? MySQL is a database. The data in MySQL is stored in database objects called tables.
1 Introduction. Contents. Scanner support
1 Introduction Contents Scanner support...1-1 Supporting documentation...1-2 Virus scanning applications...1-3 Installing the software...1-4 Launching Kodak Capture Pro Software...1-5 Kodak Capture Pro
Distributor Control Center Private Label/Channel Administrators
March 13, 2014 Distributor Control Center Private Label/Channel Administrators Version 2.6.3 Everyone.net Table of Contents Distributor Control Center... 1 1 The Distributor Control Center... 4 1.1 Introduction...
Installation and Program Essentials
CS PROFESSIONAL SUITE ACCOUNTING PRODUCTS Installation and Program Essentials version 2015.x.x TL 28970 3/26/2015 Copyright Information Text copyright 1998 2015 by Thomson Reuters. All rights reserved.
How To Understand The History Of A Webmail Website On A Pc Or Macodeo.Com
iservice Business Intelligence Reports Guide A guide for users of the iservice Customer Interaction Solution. This user guide is intended for users of the iservice system. It is not intended to provide
PageR Enterprise Monitored Objects - AS/400-5
PageR Enterprise Monitored Objects - AS/400-5 The AS/400 server is widely used by organizations around the world. It is well known for its stability and around the clock availability. PageR can help users
Advanced Event Viewer Manual
Advanced Event Viewer Manual Document version: 2.2944.01 Download Advanced Event Viewer at: http://www.advancedeventviewer.com Page 1 Introduction Advanced Event Viewer is an award winning application
NETWRIX EVENT LOG MANAGER
NETWRIX EVENT LOG MANAGER ADMINISTRATOR S GUIDE Product Version: 4.0 July/2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment
INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 NAVIGATION PANEL...
INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 CONTROL PANEL... 4 ADDING GROUPS... 6 APPEARANCE... 7 BANNER URL:... 7 NAVIGATION... 8
How To Create A Table In Sql 2.5.2.2 (Ahem)
Database Systems Unit 5 Database Implementation: SQL Data Definition Language Learning Goals In this unit you will learn how to transfer a logical data model into a physical database, how to extend or
TARGETPROCESS HELP DESK PORTAL
TARGETPROCESS HELP DESK PORTAL v.2.17 User Guide This document describes TargetProcess Help Desk Portal functionality and provides information about TargetProcess Help Desk Portal usage. 1 HELP DESK PORTAL...2
Office365Mon Subscription Management API
Office365Mon Subscription Management API Office365Mon provides a set of APIs for managing subscriptions in our service. With it you can do things like create a subscription, change the details about the
Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide.
Version 4.61 or Later Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. This manual, as well as the software described in it, is furnished
Dell Statistica Web Data Entry
Dell Statistica Web Data Entry for Release 13.0 September 2015 This administrator guide provides information about Dell Statistica Web Data Entry for release 13.0. Topics: Overview Definitions Unique Values,
Installation instructions for MERLIN Dashboard
Installation instructions for MERLIN Dashboard Contents Installation Prerequisites:... 2 Procedure to manually backup and restore Views and Settings in AxOEE Manager... 3 For XP users go to:... 3 For Vista
CUSTOMER PORTAL USER GUIDE FEBRUARY 2007
CUSTOMER PORTAL USER GUIDE FEBRUARY 2007 CONTENTS INTRODUCTION 1. Access to the system 2. Case Management 2.1 Create a case 2.2 Review & Access existing cases 2.3 Update a Case 2.4 Resolve and Close a
Developing Web Applications for Microsoft SQL Server Databases - What you need to know
Developing Web Applications for Microsoft SQL Server Databases - What you need to know ATEC2008 Conference Session Description Alpha Five s web components simplify working with SQL databases, but what
Standard... 2 Login... 2 Look... 3 Webmail Signature... 6 Webtelex... 7 Outlook Sent Item... 8 Change your Password on Webmail...
User Manual OWA 2010 1 Standard... 2 2 Login... 2 URL Webmail:... 2 URL Company-Mail (CarePort only):... 2 URL Webtelex:... 2 3 Look... 3 Conversation View:... 3 MailTips:... 3 Send-As or Send on behalf
Nintex Workflow 2013 Help
Nintex Workflow 2013 Help Last updated: Wednesday, January 15, 2014 1 Workflow Actions... 7 1.1 Action Set... 7 1.2 Add User To AD Group... 8 1.3 Assign Flexi Task... 10 1.4 Assign To-Do Task... 25 1.5
Security Analytics Engine 1.0. Help Desk User Guide
2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or nondisclosure agreement.
Snow Active Directory Discovery
Product Snow Active Directory Discovery Version 1.0 Release date 2014-04-29 Document date 2014-04-29 Snow Active Directory Discovery Installation & Configuration Guide Page 2 of 9 This document describes
Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide
Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Windows 2000, Windows Server 2003 5.0 11293743 Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Copyright
Phone Inventory 1.0 (1000) Installation and Administration Guide
Phone Inventory 1.0 (1000) Installation and Administration Guide 2010 VoIP Integration June 23, 2010 Table of Contents Product Overview... 3 Requirements... 3 Application Requirements... 3 Call Manager...
How To Use Exhange On Outlook 2007 2007 On A Pc Or Macintosh Outlook 2007 On Your Pc Or Ipad (For Windows Xp) On Your Ipad Or Ipa (For Your Windows Xp). (For A Macintosh) On A
Configure Microsoft Outlook 2007 to use Exchange Email Setting Important 1. Before configure your Microsoft outlook 2007 to use exhange you MUST log into the Web Exchange page to login and change your
Easy Manage Helpdesk Guide version 5.4
Easy Manage Helpdesk Guide version 5.4 Restricted Rights Legend COPYRIGHT Copyright 2011 by EZManage B.V. All rights reserved. No part of this publication or software may be reproduced, transmitted, stored
CA Service Desk Manager (SDM) r12.6 SDM Basic Navigation and Functionality
CA Service Desk Manager (SDM) r12.6 SDM Basic Navigation and Functionality Analyst Training Last Updated: February 4, 2013 Created by: Administrative Information Technology Services (AITS) University of
This Deployment Guide is intended for administrators in charge of planning, implementing and
YOUR AUTOMATED EMPLOYEE Foxtrot Deployment Guide Enterprise Edition Introduction This Deployment Guide is intended for administrators in charge of planning, implementing and maintaining the deployment
Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide
Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer.
Cathay Business Online Banking
Cathay Business Online Banking A QUICK GUIDE TO CATHAY BUSINESS ONLINE BANKING R6119 CATHAY 8_5x11 Cover V2.indd 1 6/11/13 5:50 PM Welcome Welcome to Cathay Business Online Banking (formerly known as Cathay
Scribe Online Integration Services (IS) Tutorial
Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,
Windows XP Exchange Client Installation Instructions
WINDOWS XP with Outlook 2003 or Outlook 2007 1. Click the Start button and select Control Panel: 2. If your control panel looks like this: Click Switch to Classic View. 3. Double click Mail. 4. Click show
Fax User Guide 07/31/2014 USER GUIDE
Fax User Guide 07/31/2014 USER GUIDE Contents: Access Fusion Fax Service 3 Search Tab 3 View Tab 5 To E-mail From View Page 5 Send Tab 7 Recipient Info Section 7 Attachments Section 7 Preview Fax Section
Configuring User Identification via Active Directory
Configuring User Identification via Active Directory Version 1.0 PAN-OS 5.0.1 Johan Loos [email protected] User Identification Overview User Identification allows you to create security policies based
System requirements 2. Overview 3. My profile 5. System settings 6. Student access 10. Setting up 11. Creating classes 11
Table of contents Login page System requirements 2 Landing page Overview 3 Adjusting My profile and System settings My profile 5 System settings 6 Student access 10 Management Setting up 11 Creating classes
ADP Workforce Now V3.0
ADP Workforce Now V3.0 Manual What s New Checks in and Custom ADP Reporting Grids V12 Instructor Handout Manual Guide V10171180230WFN3 V09171280269ADPR12 2011 2012 ADP, Inc. ADP s Trademarks The ADP Logo
If you encounter difficulty or need further assistance the Archdiocesan help desk can be reached at (410) 547-5305, option 1. Email Access Methods:
ArchMail (www.archbalt.org/archmail) is a centrally hosted email system for the employees of the Archdiocese. To simplify employee access multiple methods for accessing email have been established. This
SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide
SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide Email Encryption Customers who are provisioned for SaaS Email Encryption can easily configure their Content Policies
Requirement for Data Migration: Access to both the SMS and SAM servers; A separate application called the SMS Data Preparation Tool (page 9).
Data Migration Data Migration may be used to transfer students performance and roster data from a Scholastic Management System (SMS) installation to a SAM installation. Data for any SMS program may be
Cre-X-Mice Database. User guide
Cre-X-Mice Database User guide Table of Contents Table of Figure... ii Introduction... 1 Searching the Database... 1 Quick Search Mode... 1 Advanced Search... 1 Viewing Search Results... 2 Registration...
Table of contents. Reverse-engineers a database to Grails domain classes.
Table of contents Reverse-engineers a database to Grails domain classes. 1 Database Reverse Engineering Plugin - Reference Documentation Authors: Burt Beckwith Version: 0.5.1 Table of Contents 1 Introduction
M4 Advanced Recurring Billing. User Guide
M4 Advanced Recurring Billing User Guide Version 8.23 Last Updated: November 2009 Table of Contents Overview 4 Introduction 4 Summary of Features 4 Key Benefits 5 Installation / Maintenance 6 Software
SQL Server An Overview
SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system
Matrix Logic WirelessDMS Email Service 2.0
Matrix Logic WirelessDMS Email Service 2.0 Version 2.0 August 2009. WHAT IS WDMS EMAIL SERVICE?...2 FEATURES OF WDMS EMAIL SERVICE...3 HOW DOES WDMS EMAIL SERVICE WORK?...4 REQUIREMENTS...5 Server Prerequesites...5
If you are you are using Microsoft outlook 2007, then new toolbar will be added below the Outlook menu bar,
Enjay SugarCRM Add-on for MS-Outlook 2010 Configuration 1. Launch MS-Outlook 2007 or 2010 2. Click on Enjay Tab shown in figure below If you are you are using Microsoft outlook 2007, then new toolbar will
Instructions for accessing the new TU wireless Network
Instructions for accessing the new TU wireless Network These instructions are meant for University owned systems directly supported by ENS Computer Services. Users of other systems may find this document
