Integrating Agile Studio with Other Applications

Size: px
Start display at page:

Download "Integrating Agile Studio with Other Applications"

Transcription

1 Integrating Agile Studio with Other Applications Agile Studio December 2017 Introduction Agile Studio is integrated with Pega Platform to allow teams to change their application s records in Designer Studio and link them to tasks, bugs, or user stories in Agile Studio. Agile Studio also offers many SOAP services that you can use to query Agile Studio for information or to push information into Agile Studio. You can use these services as a starting point to create a custom integration with a third-party application. Agile Studio introduces a new set of REST APIs. These services enable users to retrieve, create, and update products, releases, user stories, and bugs to manage their projects from an external application. Alternatively, you can create your own customer services and/or connectors in Agile Studio to either push or pull the information between Agile Studio and the external application. Agile Studio integration with Pega Designer Studio Agile Studio can be integrated with your Pega instance from the Integration & security tab of your application. For more information about connecting a Pega development system to Agile Studio 7.3.1, see Integrating Agile Workbench with Pega Agile Studio. For more information about associating record changes in Designer Studio with tasks, bugs, and user stories from Agile Studio 7.3.1, see Tracing development changes to work items. For more information about integrating with development systems on prior Pega Platform releases, see Working with Development Systems on Previous Pega Platform Releases on the Agile Studio product page. Agile Studio SOAP Services Agile Studio includes several SOAP services that can be used to integrate Agile Studio with an external application. These services allow you to query Agile Studio for information about cases or to push information into Agile Studio to create or update cases. Agile Studio SOAP Service Package The SOAP Services in Agile Studio are in the ProjMgmtStatelessIntegrator service package. The service package specifies which access group is used by the services in that package. If you have made any customizations to Agile Studio, reference your custom access group in the service package rather than the provided Agile Studio access group (AgileStudio:SysAdmin). Tech Note 1

2 To access this Service Package instance: 1. Log in to Agile Studio as someone with Designer Studio access (for example, AgileStudioSysAdmin). 2. In the Records explorer, expand Integration-Resources and click Service Package. 3. In the list of Service Package instances, type ProjMgmtStatelessIntegrator in the Key Contains field and click Run. 4. From the filtered list, click ProjMgmtStatelessIntegrator to open that instance. Note: Select the Requires Authentication checkbox to enable Basic Authentication. If you need to change the access group used by the service, do so on the Context tab of the Service Package. You can also specify custom authentication on this tab, if needed. The services included in a Service Package are listed in the Methods section of the Context tab. Simulating a SOAP Service Using tools in Pega Designer Studio, you can simulate one of the Agile Studio SOAP Services to get a better understanding of their behavior and the that will be returned. To use the simulator: 1. Log in to Agile Studio as a user with Designer Studio access (example: AgileStudioSysAdmin). 2. Open one of the Agile Studio SOAP service rules. A list of these service rules is available in the Available Agile Studio SOAP Services section of this document. Open the service using search or by clicking on it in the Methods section on the Service Package. 3. Click Actions in the header of the SOAP service form and click Run. Tech Note 2

3 4. The SOAP service execution simulator opens. The SOAP Request Envelope section displays the XML input expected by the service. Within the <SOAP: Body> tag you will find the various parameters that can be passed into the service. 5. Between the start and end tags, type for the parameters you want to enter. For example: <BacklogID>BL-1</BacklogID> 6. After you have filled out all of the parameters that you want to set, click Execute. 7. A new window will display that shows the SOAP Service Simulation Results. The SOAP Response Envelope on this screen shows all return for the service. Check the Return Code and Return Message to determine if the service executed correctly. Tech Note 3

4 Available Agile Studio SOAP Services The ProjMgmtStatelessIntegrator service package contains many services that can be used to integrate Agile Studio with external applications. For more details, see the individual sections about each of these SOAP services later in this document. Service name CreatePMFItemSync63 UpdatePMFItemSync63 GetPMFItemDetails GetPMFWork63 AddDevelopmentInfo GetMultiplePMFItemDetails GetPMFAssignments622 AddAttachmentsToPMFItem Purpose Creates an Agile Studio work item of one of the following types: user story, epic, task, issue, bug, feedback, product, or backlog. Updates the specified Agile Studio work item as identified by item ID (example: BUG-1234). Returns the details for a specific Agile Studio item as identified by item ID (Example: BUG-1234). Retrieves the list of child items associated to the specified parent item and filters. Associates code changes or Pega Platform rule changes with Agile Studio cases. Returns the details for a set of Agile Studio items as identified by item ID (Example: BUG-1234). Retrieves the list of tasks and bugs for a specific user. Adds attachments to any valid Agile Studio work object. Tech Note 4

5 Service: CreatePMFItemSync63 This service is used to create the specified Agile Studio item type. The supported item types are user stories, epics, tasks, bugs, issues, feedback items, products, and backlogs. Input parameter Required? Format and valid Item Type Yes US User story EPIC Epic TASK Task ISSUE Issue BUG Bug FDBK Feedback PRD Product BL Backlog Usage Case type that will be created. Pass in a value such as US. pylabel Yes 64 character string Short name of item. Backlog ID Yes for user stories, bugs, tasks, issues A valid Agile Studio backlog ID (example: Bl-1). Identifies the backlog that the new item should be associated with. No for epics, feedback, products, and backlogs BacklogRank No ReportedBy Yes address. address for the person who originated the item. Sprint ID No A valid Agile Studio sprint ID (example: SPR-1). User Story ID No A valid Agile Studio user story ID (example: US- 123). Project ID No A valid Agile Studio project team ID (example PROJ- 12). Identifies the sprint that the item should be added to (if any); only stories, bugs, and issues can be associated with sprints. Identifies the user story that the item should be added to. Only tasks, bugs, and issues can be associated with a user story. Identifies the team that the item should be added to. Only bugs, user stories, issues, and tasks can be associated with a team. Tech Note 5

6 Input parameter Required? Format and valid Product ID Yes for backlogs, feedback items, and epics A valid Agile Studio product ID (example PRD-4). Usage Identifies the product that the item should be added to. No - for all other item types Product Version ID No A valid Agile Studio release ID (example RLS-2). Epic ID No A valid Agile Studio epic ID (example Epic-3). Goal ID No A valid Agile Studio Goal ID (example Goal-3). EstimatedSize No Decimal value. Category No See the drop-down on the item entry screen in Agile Studio for a list of valid. Priority No Integer in the range from Severity No Integer in the range from 1-4. Identifies the release that the item should be associated with. Identifies the epic that the item should be associated with. Identifies the goal that the item should be associated with. Type of bug or category of task or user story. 100 is the highest priority (indicating the item should be worked on soonest). 1 corresponds to critical and 4 corresponds to low. Used only on bugs and issues. Description No Text Longer descriptive detail of the item. Steps to Reproduce No Text Details regarding how to recreate. Used only on bugs and issues. AssignToResource No Valid Agile Studio user ID Assigns the new item to this resource. If left blank, the item will be assigned to a workbasket. AssignToWorkbasket No Valid Agile Studio workbasket ID Assigns the new item to this workbasket. If left blank, the item will be assigned to the default workbasket as defined in Agile Studio. Tech Note 6

7 Input parameter Required? Format and valid Usage System of Origin No Text Name of the system that is registered in the environment list in Agile Studio. (Example: Customer Service Dev OR Requirements Repository). Contact ID No Valid Agile Studio user ID Name of the person within the organization who should be contacted if more information is needed for the bug. Used only on Bug items. Is added as contact party on the bug. Customer ID, Customer name No ID and Name of the customer (not validated against anything in Agile Studio). External Item ID No ID of the related item from the external application. External Item Created Date No Date the related item was created on the external application. External Status No Status of the related item from the external application. External Index No Number can be used for any number/index value for the related item from the external application. Confirmation Address No CreatedBy No InitialVersionNumber No AlphaNumeric value to be used while creating release work object. RelatedContentURL No RelatedContentURLTitle Story Points No Decimal value. Name of the customer who reported the bug (if any). Used only on bug items. Is added as Customer party on the bug. If populated, shown on bug s Details tab. If populated, shown on bug s Details tab. If populated, shown on bug s Details tab. If populated, shown on bug s Details tab. Tech Note 7

8 Input parameter Required? Format and valid Technical Details No Usage Test Process TestScenarioID pydescription pystatuswork No No No No AcceptanceCriteriaList: Criteria: pxcreatedatetime: pxcreateopname: pxcreateoperator: pxcreatesystemid: ApplicationInfoList: AppName: ApplicationUpdated: ApplicationVersion: SpecificationSync: SystemName: BuildData: ApplicationName: ApplicationVersion: BuildDate: BuildID: Released: Status: TestRun: Tech Note 8

9 Input parameter Required? Format and valid ReportedBy Usage ReportedByAccessGroup ReportedByDivision ReportedByOrg ReportedByOrgUnit ReportedBySystemID ReportedByUserID ReportedByUserName ReportedByWorkgroup SpecApplicationName SpecCaseType SpecKey SpecName Expected outcome A work item is created using the specified in the SOAP parameters. Returned ItemID ItemInsKey ReturnMessage ReturnCode Return codes 1: Successfully Created Work Item 2: Error in Processing: You must supply a type of item to create 3: Error in Processing: Creation of specified item type is not supported by this service 4: Error in Processing: Generic Messages 5: You must supply a label/name 7: Contact ID does not have a valid Operator ID 8: Please enter both Customer Name and Customer ID Tech Note 9

10 10: Choose either an Operator or Workbasket but not both to transfer the assignment to 12: Product ID <<ProductID>> not found in Agile Studio system 13: Release ID <<ProductVersionID>> not found in Agile Studio system 14: Goal ID <<GoalID>> not found in Agile Studio system 15: Epic ID <<EpicID>> not found in Agile Studio system 16: Project ID <<ProjectID>> not found in Agile Studio system 17: Sprint ID <<SprintID>> not found in Agile Studio system 18: User Story ID <<UserStoryID>> not found in Agile Studio system 19: Backlog ID <<BacklogID>> not found in Agile Studio system 20: Please provide value for ReportedBy 21: Reported By does not have a valid Operator ID 22: Product ID <<ProductID>> is Resolved. Please select a non-resolved parent 23: Product Version ID <<ProductVersionID>> is Resolved. Please select a non-resolved parent 24: Goal ID <<GoalID>> is Resolved. Please select a non-resolved parent 25: Epic ID <<EpicID>> is Resolved. Please select a non-resolved parent 26: Project ID <<ProjectID>> is Resolved. Please select a non-resolved parent 27: Sprint ID <<SprintID>> is Resolved. Please select a non-resolved parent 28: User Story ID <<UserStoryID>> is Resolved. Please select a non-resolved parent 29: Backlog ID <<BacklogID>> is Resolved. Please select a non-resolved parent 30: Invalid Test Process value provided 31: Invalid category for Bug. It should be one of these - Cosmetic OR Documentation OR Enhancement OR Exception Error OR Incorrect Results Or Installation OR Javascript Error OR Performance OR Security OR Upgrade Or Usability 32: Please Enter either Backlog or Project 36: Invalid category for Issue. It should be one of these - General OR Budget OR Documentation OR Environment OR Infrastructure Or Installation OR Legal OR Performance OR Quality Risk OR Question OR Resources OR Scheduling 37: Please provide valid issue status 38: Please provide product for creating backlog 39: Please provide either Backlog ID or Project ID or Sprint ID for creating Issue 41: Invalid category for task. It should be one of these - General OR Development OR Testing OR Documentation 46: Invalid category for Feedback. It should be one of these - General OR Information Request OR Enhancement Request OR Issue OR Bug Or Usability OR User Interface OR Process Improvement OR Policy Decision Tech Note 10

11 51: Invalid category for user story. It should be one of these - General OR Spike or Technical Debt 52: Please provide a valid user story status 53: Backlog Rank cannot be less than 1 54: ApplicationName is not associated with the provided BacklogID's product SpecApplicationName is not associated with the provided BacklogID's product 55: Providing application name is mandatory to create a user story Providing System Of Origin is mandatory to create a user story Provided System Of Origin does not exist at Agile Studio Environment details. Adding valid Environment details is mandatory for creating user story 56: You must supply InitialVersionNumber for creating a Product 57: You must supply a category for product. It should be either one of these categories - Application or Component or Framework 58: Please provide valid Category for Product. It should be either one of these categories - Application or Component or Framework 59: Product already exists with name - <<pylabel>> 61: Invalid Priority Value. Priority should be between 0 to : You must supply a Product ID or Goal ID to add this epic 63: Please provide a valid epic status 64: Provided Goal ID <<GoalID>> does not belong to product <<ProductID>> 154: This application has been disabled from creating a user story in Agile Studio. Please contact the Agile Studio administrator for more information. 155: Providing Case type is mandatory to create a user story 158: Invalid application version supplied for one of the application. Please provide valid value 159: Providing system name is mandatory Invalid spec sync value supplied for one of the applications. Please enter Boolean value. This environment has been disabled from creating a user story in Agile Studio. Please contact the Agile Studio administrator for more information. Invalid system name supplied for one of the applications. Please provide valid value. This environment has been disabled from creating a product in Agile Studio. Please contact the Agile Studio administrator for more information. Invalid application version supplied for one of the applications. Please provide valid value. Service: UpdatePMFItemSync63 This service is used to update a specific Agile Studio work item. Tech Note 11

12 Input parameter Required? Format and valid Item ID Yes Valid Agile Studio item ID (example: US-123). Usage Identifies the case that should be updated. pylabel No 64-character string. Short name of item. Backlog ID No A valid Agile Studio backlog ID (example: Bl-1). Project ID No A valid Agile Studio project team ID (example: PROJ-2). Sprint ID No A valid Agile Studio sprint ID (Example: SPR-1). User Story ID No A valid Agile Studio user story ID (example: US-12). Product ID No A valid Agile Studio product ID (example: PRD-1). Product Version ID No A valid Agile Studio release ID (example: RLS-2). Goal ID No A valid Agile Studio goal ID (example: GOAL-1) Epic ID No A valid Agile Studio epic (example: EPIC-3). Type/Category No A valid category/type for the item type - you can see the full list for each item type on an Identifies the parent backlog that the item should be associated with. Identifies the parent project that the item should be associated with. Identifies the sprint that the item should be associated with. Valid only for user stories, bugs, and issues. Identifies the parent user story that the item should be associated with. Valid only for tasks, bugs, and issues. Identifies the parent product that the item should be associated with. Identifies the parent release that the item should be associated with. Identifies the parent goal that the item should be associated with. Valid only for epics. Identifies the parent epic that the item should be associated with. Valid only for user stories. Tech Note 12

13 Input parameter Required? Format and valid entry screen for that item type in Agile Studio. Priority No Integer in the range from Usage 100 is the highest priority (indicating the item should be worked on soonest). Severity No Integer in the range from corresponds to critical and 4 correspond to low. Used only on bugs and issues. pydescription No Text Longer descriptive detail of the item. Steps to Reproduce No Text Details regarding how to recreate. Used only on bugs and issues. AssignToResource No Valid Agile Studio user ID Assigns the new item to this resource. If left blank, the item will get assigned to a workbasket. AssignToWorkbasket No Valid Agile Studio workbasket ID Assigns the new item to this workbasket. If left blank, the item will get assigned to the default workbasket as defined in Agile Studio. Contact ID No Valid Agile Studio user ID Name of the person within the organization who should be contacted if more information is needed for the bug. Used only on Bug items. Is added as contact party on the bug. Customer ID, Customer name Story Points System Of Origin pystatuswork No ID and Name of the customer (not validated against anything in Agile Studio) Name of the customer who reported the bug (if any). Used only on bug items. Is added as Customer party on the bug. Tech Note 13

14 Input parameter Required? Format and valid AcceptanceCriteriaList Date in <<YYYY-MM-DD>> format. Criteria: Usage Text entered in criteria gets appended to acceptance criteria. pxcreatedatetime: pxcreateopname: pxcreateoperator pxcreatesystemid: ApplicationInfoList AppName: ApplicationUpdated: ApplicationVersion: SpecificationSync: SystemName: SpecApplicationName SpecCaseType SpecKey SpecName ExternalItemID ExternalItemCreatedDat e ExternalItemStatus ExternalItemIndex Expected outcome The item is updated with the new specified in the parameters. Returned ReturnMessage ReturnCode Tech Note 14

15 Return codes 1: Successfully updated the work object 2: You must supply an item ID 3: The item ID is not a valid open Agile Studio item 4: Unable to get lock on work item 5: Validation Failed: << Error thrown from Agile Studio will be shown to the user >> 6: Committing Agile Studio item to Database failed: <<Error thrown from Agile Studio will be shown to the user>> 7: Contact ID does not have a valid Operator ID 8: Please enter both Customer Name and Customer ID 9: Could not add customer as a party 10: Choose either an Operator or Workbasket but not both to transfer the assignment to 11: Invalid operator given for AssignToResource 12: Invalid workbasket given for AssigntoWorkbasket 13: The item ID is invalid: Item ID not found in Agile Studio system 15: Spec association is successful. User story could not be updated at this moment 59: Connection for this application has been disabled in Agile Studio 159: Invalid system name supplied for one of the applications. Please provide valid value This environment has been disabled from updating a product in Agile Studio. Please contact the Agile Studio administrator for more information Invalid application version supplied for one of the applications. Please provide valid value This application has been disabled from updating a user story in Agile Studio. Please contact the Agile Studio administrator for more information Invalid system name supplied for one of the applications. Please provide valid value This application has been disabled from updating a user story in Agile Studio. Please contact the Agile Studio administrator for more information Invalid system name supplied for the specification. Please provide valid value Providing specification name is mandatory. Please provide valid value Service: GetPMFItemDetails This service is used to get the details of a specific Agile Studio item Input parameter Required? Format and valid Usage Item ID Yes Valid Agile Studio item ID (example: US-123). Identifies the case that details should be returned for. Tech Note 15

16 Returned pyid (ID of the case) pzinskey (key of the case) pystatuswork (status of the case) LastUpdateDate LastUpdateOperator pylabel (short name of case) pydescription DuplicateItemID (returned only if the specified item has been marked as a duplicate of another) ProjectID BacklogID SprintID UserStoryID ProductID ProductVersionID GoalID EpicID ImmediateParentTaskGroupID Parent Task group ID of Task group/task that are of SmartBPM project type Category Priority Severity AssignToResource AssignToWorkbasket StepsToReproduce AcceptanceCriteria SpunOffItemID ReturnCode ReturnMessage Return codes 1: Successfully retrieved the data 2: You must supply an item ID Tech Note 16

17 3: The item ID is not a valid Agile Studio item 4: Could not get all the properties related to the entered Agile Studio item Service: GetPMFWork63 This service is used to get a summary list of child items associated with the specified parent item. This service can return child item lists for the following parent item types: Product, Release, Backlog, Epic, Goal, Project Team, Sprint, or User Story. Input parameter Required? Format and valid Parent Item ID Yes Valid Agile Studio item ID (example: US-123) Should be a valid backlog ID, Epic ID, Goal ID, Product ID, Release ID, Project ID, Sprint ID, and user story ID. GetPMFWorkStatus Yes One of the following : Resolved, Non-Resolved, ALL. Get PMFWorkType Yes One of the following : BUG, USERSTORY, SPRINT, EPIC, GOAL, BACKLOG, TASK, ISSUE, RELEASE, PRODUCT, PROJECT, FEEDBACK GetPMFWorkCreatedSinceDate No <yyyy>-<mm>-<dd> (for example: ) GetPMFWorkUpdatedSince No <yyyy>-<mm>-<dd> (for example: ) Expected outcome Usage Identifies the parent case that a list of child items should be returned for. Indicates which status the child items returned should have. Used to filter the results before returning them using the service. Type of child items to be fetched. Filters returned case list to include only cases created on or after the specified date. Filters returned case list to include only cases updated on or after the specified date. A list with a maximum of 1000 child items should be returned. For each item in the list, a set of details are returned. Tech Note 17

18 Returned ReturnMessage ReturnCode ReturnCount ItemDetails (1 set for each item returned) AssignedToID (person/workbasket that the case is assigned to) AssignmentClass (indicates whether an item is assigned to a person or a workbasket) WorkCreateDateTime WorkCreateOperator WorkUpdateDateTime WorkUpdateOperator pxurgencywork (priority) pydescription pyid Return codes pylabel (short name of item) pystatuswork (status of item) 1: <<Result count>> items returned of type << GetPMFWorkType >> 2: You must supply a type of item to return a list of items 3: You must supply a Parent Item ID to return a list of items 4: You must supply a Parent Product ID to return a list of items for the work type you selected. This error code is returned if the work type is release, backlog, goal or feedback 5: You must supply a Parent Product ID or GoalID to return a list of Epics 6: You must supply a Project ID to return a list of Sprints 7: You must supply a Parent ID to return a list of User Stories 8: Product ID <<ProductID>> not found in Agile Studio system 9: Release ID <<ProductVersionID>> not found in Agile Studio system 10: Goal ID <<GoalID>> not found in Agile Studio system 11: Epic ID <<EpicID>> not found in Agile Studio system 12: Project ID <<ProjectID>> not found in Agile Studio system 13: Sprint ID <<SprintID>> not found in Agile Studio system 14: User Story ID <<UserStoryID>> not found in Agile Studio system 15: Backlog ID <<BacklogID>> not found in Agile Studio system Tech Note 18

19 16: GetPMFWorkType US is not a valid value 17: Status should be Resolved or Non-Resolved or All Service: AddDevelopmentInfo This service is used to pass information back into Agile Studio during rule check-in from Designer Studio. The list of related rules gets associated with the specified bug, task, or user story in Agile Studio. The service can also be used to pass in code changes that are related to a bug, task, or user story. Input parameter Required? Format and valid Action Type Yes One of the following : Check-in, New, or Save As. Item ID Yes A valid Agile Studio item ID (example: BUG-12). Operator ID Yes Valid Agile Studio operator ID. Source system Yes System name that can be found in the Environment list in Agile Studio. Usage Identifies which type of action the developer took on the rule/code that they associated with an Agile Studio item. Agile Studio item for which the rule/code changes were being made. Operator ID of the developer who made the code/rule changes. System on which the rule/code change was made. Remaining Effort No Numerical value Remaining effort (in hours). Hours Worked No Numerical Values Additional hours the user spent working on the rule change/bug/user story. Check In Notes No Text Notes the developer added while checking in the rule/code change. ModifiedDate No Work complete No Boolean (Y or N) Did this check-in complete the work on the task or bug? A user story cannot be marked as complete using this service. Rule Class Name No Class name of the rule. Tech Note 19

20 Input parameter Required? Format and valid Usage Old Ruleset Name No Ruleset name that the rule was checked out from. Old Ruleset Version No Ruleset version that the ruleset was checked out from. OldRuleName No Name that the rule was saved as or checked out from. OldRuleKey No Key of rule before checkout/save as. New Ruleset Name No Ruleset name that the rule was saved to or checked out to. New Ruleset Version No Ruleset version that the rule was saved to or checked out to. New Rule Name No New rule instance name after save as/checkout. New Rule Key No New rule key name after save as/checkout. Repository Name No Name of the repository in which the code changes were made. Repository Path No File Path No File Path in the repository in which the code change was made. File name No Name of the file in which the code changes were made. File Project No File Revision Number No Revision number issued by the repository. Branch No Branch into which the code/rule is being checked in. Code Set Name Code Set Version Tech Note 20

21 Expected outcome Specified work item is related to the rule/code changes. The list of related rule/code changes will be shown on the Related Updates display on the Agile Studio item. Returned ReturnMessage ReturnCode Return codes 1: Executed Successfully. 2: Item ID, Operator ID, and Source System are minimum required input parameters. 3: The Action supplied must be either Check-in, Merged, New, Save As, Delete, or Add. 4: The operator ID <<OperatorID>> is invalid: OperatorID not found in Agile Studio system. 5: The item ID is invalid: Item ID <<ItemID>> not found in Agile Studio system. 6: Effort data or status cannot be updated for resolved items. 7: The remaining effort value is invalid: Enter a non-negative number. 8: The additional effort value is invalid: Enter a non-negative number. 9: The additional effort value is invalid: You have entered more than the maximum Additional Hours Worked allowed. Enter a value of 1000 or less. 10: The item ID is invalid: Item ID supplied must be a non-resolved User Story, Issue, Task, or Bug. 11: You have entered more than the maximum Remaining Effort allowed. Enter a value of 1000 or less. 12: Total Hours Worked exceeds the allowed value of Existing hours worked value is <<Already entered Actual Effort>>. 16: Received pertained to both rule and code changes. Send in for just one or the other. 17: Format for Code Set Version should match ##-##-## (e.g.: ). Service: GetMultiplePMFItemDetails This service is used to get the details of work objects as a bulk. A maximum of 20 work object details can be retrieved. Input parameter Required? Format and valid ItemID Yes Any valid Agile Studio work object ID Usage Tech Note 21

22 To retrieve details for more than one work object, specify the IDs as shown below. Returned ReturnMessage ReturnCode ItemDetails (1 set for each item returned) pyid pzinskey pystatuswork LastUpdateDate LastUpdateOperator pylabel pydescription DuplicateItemID - If the current item is a duplicate of another work item ProjectID BacklogID SprintID UserStoryID Tech Note 22

23 ProductID ProductVersionID GoalID EpicID ImmediateParentTaskGroupID - Parent Task group ID of Task group/task that are of SmartBPM project type Category Priority Severity AssignToResource - Operator name to whom the work object is assigned AssignToWorkbasket - Name of workbasket to which the work object is assigned StepsToReproduce - Steps to reproduce for bugs AcceptanceCriteriaList - Criteria Acceptance Criteria for user stories Return codes 1: Successfully retrieved the data 2: You must supply an item ID 3: <<ItemID>> is not a valid Agile Studio item 4: Could not get all the properties related to the entered Agile Studio item 5: Number of Items reached max length; user can fetch details up to 20 items Service: GetPMFAssignments622 This service is used to return a list of tasks and bugs on a specified user's worklist. Input parameter Required? Format and valid OperatorID Yes Usage Returned ReturnMessage ReturnCode Assignment Details (1 set for each item returned) AssignedToID ID of the operator AssignmentClass Class of the assignment. Assign-Worklist/Assign-Workbasket AssignmentCreateDateTime Tech Note 23

24 AssignmentKey RemainingEffort WorkClass Obj Class of the work object WorkCreateDateTime Create date time of the work object WorkInsKey pzinskey of the work object pxurgencywork - Priority pydescription pyid pylabel pystatuswork ResultCount Number of items assigned to the given operator Return codes 1: Successfully retrieved data 2: OperatorID must have a value 3: OperatorID not found in Agile Studio Service: AddAttachmentsToPMFItem This service is used to add attachments to any valid Agile Studio work object. Input parameter Required? Format and valid ItemID Yes pxupdateoperator pydescription Usage ID of an operator who is adding an attachment Text that describes the attachment To add attachments via the SOAP service, all the attachment details should be made available on pyrequestattachmentpage page, which is used by Pega to add the attachment to the work object. Below is the sample code to send attachments using SOAP: Create an activity to set the required data. Tech Note 24

25 Returned ReturnMessage ReturnCode Return codes 1: Successfully appended the attachments to a work item 2: Item ID is mandatory 3: The item ID is invalid: Item ID not found in Agile Studio system 4: Unable to acquire lock on work item. The attachment will be added upon obtaining lock. Kindly retry. 5: Providing AttachClass and AttachStream is mandatory Agile Studio REST services Agile Studio introduces REST APIs. These services enable users to retrieve, create, and update products, releases, user stories, and bugs to manage their projects from an external Tech Note 25

26 application. Agile Studio s REST API documentation is available in the product using the Help center menu. Custom integration If your organization requires you to have an Agile Studio integration that cannot use the above set of SOAP services, you can build a custom integration using the Pega Service or Connector Wizards. If you want to pull data from Agile Studio, create a service. If you want to push data out of Agile Studio, create a connector. Pega provides wizards that will walk you through creating new services and/or connectors. To access these wizards: 1. Log into Designer Studio. 2. From the Designer Studio menu, click Integration. 3. Click Connectors or Services and the type of integration that you want to create (for example: SOAP integration). See Tools for integration development tasks for more information on running these wizards. Tech Note 26

27 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks or service marks are property of their respective holders. For information about the third-party software that is delivered with the product, refer to the third-party license file on your installation media that is specific to your release. Notices This publication describes and/or represents products and services of Pegasystems Inc. It may contain trade secrets and proprietary information that are protected by various federal, state, and international laws, and distributed under licenses restricting their use, copying, modification, distribution, or transmittal in any form without prior written authorization of Pegasystems Inc. This publication is current as of the date of publication only. Changes to the publication may be made from time to time at the discretion of Pegasystems Inc. This publication remains the property of Pegasystems Inc. and must be returned to it upon request. This publication does not imply any commitment to offer or deliver the products or services described herein. This publication may include references to Pegasystems Inc. product features that have not been licensed by you or your company. If you have questions about whether a particular capability is included in your installation, please consult your Pegasystems Inc. services consultant. Although Pegasystems Inc. strives for accuracy in its publications, any publication may contain inaccuracies or typographical errors, as well as technical inaccuracies. Pegasystems Inc. shall not be liable for technical or editorial errors or omissions contained herein. Pegasystems Inc. may make improvements and/or changes to the publication at any time without notice. Any references in this publication to non-pegasystems websites are provided for convenience only and do not serve as an endorsement of these websites. The materials at these websites are not part of the material for Pegasystems products, and use of those websites is at your own risk. Information concerning non-pegasystems products was obtained from the suppliers of those products, their publications, or other publicly available sources. Address questions about non-pegasystems products to the suppliers of those products. This publication may contain examples used in daily business operations that include the names of people, companies, products, and other third-party publications. Such examples are fictitious and any similarity to the names or other data used by an actual business enterprise or individual is coincidental. This information is the property of: Pegasystems Inc. One Rogers Street Cambridge, MA USA Phone: (617) Fax: (617) Agile Studio Document: Integrating Agile Studio with Other Applications Software Version: Updated: December 2017 Tech Note 27

Agile Studio WORKING WITH DEVELOPMENT SYSTEMS ON PREVIOUS PEGA PLATFORM RELEASES 7.3

Agile Studio WORKING WITH DEVELOPMENT SYSTEMS ON PREVIOUS PEGA PLATFORM RELEASES 7.3 Agile Studio WORKING WITH DEVELOPMENT SYSTEMS ON PREVIOUS PEGA PLATFORM RELEASES 7.3 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered

More information

Agile Studio IMPLEMENTATION GUIDE 7.3.1

Agile Studio IMPLEMENTATION GUIDE 7.3.1 Agile Studio IMPLEMENTATION GUIDE 7.3.1 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

VCR REST Connectivity

VCR REST Connectivity VCR REST Connectivity Pega Smart Dispute for Issuers 7.21 December 2017 Introduction This document explains how Pega Smart Dispute for Issuers connects to VCR using REST connectors. VCR supports POST method

More information

Pega Agile Studio. Upgrade Guide 7.4

Pega Agile Studio. Upgrade Guide 7.4 Pega Agile Studio Upgrade Guide 7.4 2018 Pegasystems Inc., Cambridge, MA. All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Pega Underwriting for Insurance

Pega Underwriting for Insurance OPERATIONS Pega Underwriting for Insurance Implementation Planning Workbook 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks,

More information

Managing the Burn Down Agent

Managing the Burn Down Agent Managing the Burn Down Agent Agile Studio 7.3.1 December 2017 Introduction Agile Studio 7.3.1 has several burn down charts that teams and managers can use to view the overall progress of a sprint, team,

More information

Pega Agile Studio USER GUIDE 7.4

Pega Agile Studio USER GUIDE 7.4 Pega Agile Studio USER GUIDE 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Agile Studio USER GUIDE 7.3

Agile Studio USER GUIDE 7.3 Agile Studio USER GUIDE 7.3 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks or

More information

Pega Digital Software Delivery

Pega Digital Software Delivery Pega Digital Software Delivery USER GUIDE 1.00 [Type here] 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved.

More information

Capturing Interaction History

Capturing Interaction History Capturing Interaction History Pega Marketing for Financial Services 7.31 November 2017 Introduction This document contains information about how Pega Marketing for Financial Services 7.31 captures Interaction

More information

User Guide. PegaSurvey 7.2.1

User Guide. PegaSurvey 7.2.1 User Guide PegaSurvey 7.2.1 Copyright Copyright 2016 Pegasystems Inc. All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. Other brand or product

More information

Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare

Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare UPGRADE GUIDE Pega Customer Relationship Management for Healthcare 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved.

More information

Pega Field Marketing USER GUIDE 7.4

Pega Field Marketing USER GUIDE 7.4 Pega Field Marketing USER GUIDE 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Project Management Framework

Project Management Framework Project Management Framework Release Notes Version 7.1.1 Framework Overview The Project Management Framework (PMF) is a powerful Project Management application designed for the management of Scrum projects.

More information

Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare

Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare INSTALLATION GUIDE Pega Customer Relationship Management for Healthcare 7.31 2017 Pegasystems Inc., Cambridge, MA All rights

More information

VCR Batch Queue Processing

VCR Batch Queue Processing VCR Batch Queue Processing Smart Dispute for Issuers 7.21 February 2017 Introduction Visa claims resolution (VCR) provides various queues for members to download and process cases or transactions. The

More information

Project Management Framework

Project Management Framework Project Management Framework 7.1.2 UPGRADE GUIDE Copyright 2015 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade

More information

Pega Foundation for Healthcare

Pega Foundation for Healthcare Pega Foundation for Healthcare COMMON CODES SOLUTION BUSINESS CASE USE CASE GUIDE 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered

More information

Pega Foundation for Healthcare

Pega Foundation for Healthcare Pega Foundation for Healthcare COMMON CODES SOLUTION BUSINESS CASE USE CASE GUIDE 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered

More information

Pega Co-Browse. Installation Guide 7.4

Pega Co-Browse. Installation Guide 7.4 Pega Co-Browse Installation Guide 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Pega Underwriting for Insurance

Pega Underwriting for Insurance PEGA OPERATIONS Pega Underwriting for Insurance IMPLEMENTATION GUIDE 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks,

More information

MARKETING. Pega Marketing. Installation Guide 7.4

MARKETING. Pega Marketing. Installation Guide 7.4 MARKETING Pega Marketing Installation Guide 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All

More information

Healthcare FHIR API TECHNICAL SPECIFICATION 7.4

Healthcare FHIR API TECHNICAL SPECIFICATION 7.4 Healthcare FHIR API TECHNICAL SPECIFICATION 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All

More information

Certified Senior System Architect

Certified Senior System Architect White Paper Certified Senior System Architect EXAM BLUEPRINT Copyright 2017 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may

More information

Managing the Burn Down Agent

Managing the Burn Down Agent Managing the Burn Down Agent Project Management Framework 7.1.2 May 2015 Introduction The Project Management Framework has several burn down charts that can be used by teams and managers to view the overall

More information

Technical Note. Customer Process Manager. 7.1 Release 2. CPM Next Best Action Adapter

Technical Note. Customer Process Manager. 7.1 Release 2. CPM Next Best Action Adapter Technical Note Customer Process Manager 7.1 Release 2 CPM Next Best Action Adapter Copyright 2014 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems

More information

Pega Foundation for Financial Services

Pega Foundation for Financial Services Pega Foundation for Financial Services ACCOUNTING GUIDE 7.32 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved.

More information

Decision Manager Help. Version 7.1.7

Decision Manager Help. Version 7.1.7 Version 7.1.7 This document describes products and services of Pegasystems Inc. It may contain trade secrets and proprietary information. The document and product are protected by copyright and distributed

More information

X12 Message Processing

X12 Message Processing X12 Message Processing Pega Foundation for Healthcare 7.31 July 2017 Overview The Accredited Standards Committee (ASC) X12 message is used to transfer data across and between industries. Pega Foundation

More information

Pega Chat. Installation Guide 7.4

Pega Chat. Installation Guide 7.4 Pega Chat Installation Guide 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Pega Knowledge. User Guide 7.4

Pega Knowledge. User Guide 7.4 Pega Knowledge User Guide 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks or

More information

EXAM BLUEPRINT PRPC Certified Pega Business Architect

EXAM BLUEPRINT PRPC Certified Pega Business Architect EXAM BLUEPRINT PRPC Certified Pega Business Architect White Paper Copyright 2014 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It

More information

Business Intelligence Exchange (BIX)

Business Intelligence Exchange (BIX) Business Intelligence Exchange (BIX) Release Notes Version 2.3 And Version 2.3 SP1 February, 2012 Framework Overview The Business Intelligence Exchange (BIX) extracts information from a PRPC database into

More information

EXAM BLUEPRINT PRPC Certified Senior System Architect v 6.2

EXAM BLUEPRINT PRPC Certified Senior System Architect v 6.2 White Paper EXAM BLUEPRINT PRPC Certified Senior System Architect v 6.2 Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems

More information

7.21 IMPLEMENTATION GUIDE

7.21 IMPLEMENTATION GUIDE Pega Customer Service 7.21 IMPLEMENTATION GUIDE Copyright 2016 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved.

More information

EXAM BLUEPRINT PRPC Certified System Architect

EXAM BLUEPRINT PRPC Certified System Architect EXAM BLUEPRINT PRPC Certified System Architect White Paper Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain

More information

PegaCALL. Overview. About this Release. Release Notes for Version 6.3 August 2012

PegaCALL. Overview. About this Release. Release Notes for Version 6.3 August 2012 PegaCALL Release Notes for Version 6.3 August 2012 Overview PegaCALL provides computer-telephony integration (CTI) capabilities for applications built on PRPC, including Pega Customer Process Manager (CPM).

More information

PEGA MARKETING. Pega Marketing IMPLEMENTATION GUIDE 7.31

PEGA MARKETING. Pega Marketing IMPLEMENTATION GUIDE 7.31 PEGA MARKETING Pega Marketing IMPLEMENTATION GUIDE 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved.

More information

PegaRULES Process Commander. Certified Senior System Architect. Exam Blueprint

PegaRULES Process Commander. Certified Senior System Architect. Exam Blueprint PegaRULES Process Commander Certified Senior System Architect Exam Blueprint Copyright 2009 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems

More information

Pega Product Composer for Healthcare

Pega Product Composer for Healthcare Pega Product Composer for Healthcare IMPLEMENTATION GUIDE 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights

More information

EXAM BLUEPRINT PRPC Certified Reporting Specialist v6.2

EXAM BLUEPRINT PRPC Certified Reporting Specialist v6.2 White Paper EXAM BLUEPRINT PRPC Certified Reporting Specialist v6.2 Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc.

More information

Decision Strategy Manager

Decision Strategy Manager Decision Strategy Manager DMSample - Retention Predictive Model Version 7.1.8 2015 by Pegasystems Inc. All rights reserved This document describes products and services of Pegasystems Inc. It may contain

More information

Certified Pega Customer Service Business Architect

Certified Pega Customer Service Business Architect White Paper Certified Pega Customer Service Business Architect EXAM BLUEPRINT Copyright 2015 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems

More information

Distributed Transactions and PegaRULES Process Commander. PegaRULES Process Commander Versions 5.1 and 5.2

Distributed Transactions and PegaRULES Process Commander. PegaRULES Process Commander Versions 5.1 and 5.2 Distributed Transactions and PegaRULES Process Commander PegaRULES Process Commander Versions 5.1 and 5.2 Copyright 2007 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products

More information

EXAM BLUEPRINT Certified CPM Architect

EXAM BLUEPRINT Certified CPM Architect EXAM BLUEPRINT Certified CPM Architect White Paper Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade

More information

MARKETING. Pega Marketing. Upgrade Guide 7.4

MARKETING. Pega Marketing. Upgrade Guide 7.4 MARKETING Pega Marketing Upgrade Guide 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other

More information

Technical Note. Using the Net Promoter Framework 7.1

Technical Note. Using the Net Promoter Framework 7.1 Technical Note Using the Net Promoter Framework 7.1 Copyright 2014 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain

More information

Working with PDF Forms and Documents. PegaRULES Process Commander 5.1

Working with PDF Forms and Documents. PegaRULES Process Commander 5.1 Working with PDF Forms and Documents PegaRULES Process Commander 5.1 Copyright 2006 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc.

More information

PRPC Personal Edition Installation Guide 6.3 SP1

PRPC Personal Edition Installation Guide 6.3 SP1 PRPC Personal Edition Installation Guide 6.3 SP1 Copyright 2012 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade

More information

Financial Accounting for Financial Services Framework. Version 2.3. Installation Guide

Financial Accounting for Financial Services Framework. Version 2.3. Installation Guide Financial Accounting for Financial Services Framework Version 2.3 Installation Guide Copyright 2009 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of

More information

Product Designer for Financial Services

Product Designer for Financial Services Product Designer for Financial Services IMPLEMENTATION GUIDE 7.22 Copyright 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks,

More information

Administration Guide. Release

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

More information

System Architect Essentials I. EXERCISE GUIDE (v. 7.1)

System Architect Essentials I. EXERCISE GUIDE (v. 7.1) System Architect Essentials I EXERCISE GUIDE (v. 7.1) Copyright 2015 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain

More information

EXAM BLUEPRINT PRPC Certified Methodology Black Belt

EXAM BLUEPRINT PRPC Certified Methodology Black Belt EXAM BLUEPRINT PRPC Certified Methodology Black Belt White Paper Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It

More information

Pega Call CONFIGURATION AND OPERATIONS GUIDE. CTI Link Server with Genesys CTI 7.31

Pega Call CONFIGURATION AND OPERATIONS GUIDE. CTI Link Server with Genesys CTI 7.31 Pega Call CONFIGURATION AND OPERATIONS GUIDE CTI Link Server with Genesys CTI 7.31 Copyright 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered

More information

Healthcare Common Codes Solution

Healthcare Common Codes Solution Healthcare Common Codes Solution Version 3.2 SP1 Business Use Case Guide Copyright 2013 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems

More information

Pega Knowledge PRODUCT OVERVIEW 7.31

Pega Knowledge PRODUCT OVERVIEW 7.31 Pega Knowledge PRODUCT OVERVIEW 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Managing the Burn Down Agent

Managing the Burn Down Agent Managing the Burn Down Agent Agile Studio 7.4 May 2018 Introduction Agile Studio 7.4 has several burn down charts that teams and managers can use to view the overall progress of a sprint, team, or release.

More information

Working with the Java Pages Feature. PegaRULES ProcessCommander Versions 5.1 and 5.2

Working with the Java Pages Feature. PegaRULES ProcessCommander Versions 5.1 and 5.2 Working with the Java Pages Feature PegaRULES ProcessCommander Versions 5.1 and 5.2 Copyright 2006 Pegasystems Inc., Cambridge, MA All rights reserved. This document and the software describe products

More information

Technical Note. PegaCHAT 6.2 SP3. Installing and Configuring OpenFire

Technical Note. PegaCHAT 6.2 SP3. Installing and Configuring OpenFire Technical Note PegaCHAT 6.2 SP3 Installing and Configuring OpenFire Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc.

More information

Pega Knowledge Management

Pega Knowledge Management Pega Knowledge Management 7.1 USER GUIDE Copyright 2014 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade secrets

More information

Review Version Control Concepts

Review Version Control Concepts Review Version Control Concepts SWEN-261 Introduction to Software Engineering Department of Software Engineering Rochester Institute of Technology Managing change is a constant aspect of software development.

More information

CollabNet Desktop - Microsoft Windows Edition

CollabNet Desktop - Microsoft Windows Edition CollabNet Desktop - Microsoft Windows Edition User Guide 2009 CollabNet Inc. CollabNet Desktop - Microsoft Windows Edition TOC 3 Contents Legal fine print...7 CollabNet, Inc. Trademark and Logos...7 Chapter

More information

EXERCISE SYSTEM GUIDE (v. 7.13)

EXERCISE SYSTEM GUIDE (v. 7.13) EXERCISE SYSTEM GUIDE (v. 7.13) Copyright 2016 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade secrets and proprietary

More information

Rational Focal Point Technical Overview 2(15)

Rational Focal Point Technical Overview 2(15) Copyright IBM Corporation 1997-2009 U.S. Government Users Restricted Rights - Use, duplication, or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Rational Focal Point Technical Overview

More information

Pega Knowledge. Implementation Guide

Pega Knowledge. Implementation Guide Implementation Guide 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks or service

More information

ServiceNow - Agile in ServiceNow

ServiceNow - Agile in ServiceNow ServiceNow - Agile in ServiceNow The ServiceNow Agile Development application is an iterative and incremental process for software development environments. Agile Development application is enhanced with

More information

PEGA PLATFORM. Business Intelligence Exchange (BIX) 7.4 User Guide

PEGA PLATFORM. Business Intelligence Exchange (BIX) 7.4 User Guide PEGA PLATFORM Business Intelligence Exchange (BIX) 7.4 User Guide 2018 Pegasystems Inc., Cambridge, MA. All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights

More information

Release Notes. Release

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

More information

Migration - V6.2 to V6.3

Migration - V6.2 to V6.3 2012 by Pegasystems, Inc. All rights reserved. 2012 by Pegasystems, Inc. All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade secrets and proprietary

More information

CA Agile Vision and CA Product Vision. Integration Guide

CA Agile Vision and CA Product Vision. Integration Guide CA Agile Vision and CA Product Vision Integration Guide Spring 2012 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Spend Management Implementation Guide 7.11

Spend Management Implementation Guide 7.11 Spend Management Implementation Guide 7.11 Copyright 2014 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade secrets

More information

Pegasystems PEGACSSA. PRPC v5.5 Certified Senior System Architect. Download Full Version :

Pegasystems PEGACSSA. PRPC v5.5 Certified Senior System Architect. Download Full Version : Pegasystems PEGACSSA PRPC v5.5 Certified Senior System Architect Download Full Version : https://killexams.com/pass4sure/exam-detail/pegacssa QUESTION: 161 The customer wants to rollback a recently deployed

More information

Agile Implementation The Anaplan Way Dashboard Input Guides

Agile Implementation The Anaplan Way Dashboard Input Guides Agile Implementation The Anaplan Way Dashboard Input Guides Last Updated: December 06 Setup. Fill out project details in the Project Information section. **The start and end dates impact the filter throughout,

More information

Service Activation of AT&T NetBond

Service Activation of AT&T NetBond Service Activation of AT&T NetBond For SunGard Availability Services TM (AS) and AT&T Enterprise Recovery Services (ERS) Publication Date: 11/16/2015 Revision: 1.0 Legal Disclaimer Copyright AT&T Intellectual

More information

Application Data Model

Application Data Model Application Data Model Pega Marketing for Financial Services 7.31 October 2017 Introduction This document provides an overview of the Pega Marketing for Financial Services customer data model. It is intended

More information

JIRA Overview & Configuration. Based on the A2F Framework

JIRA Overview & Configuration. Based on the A2F Framework JIRA Overview & Configuration Based on the A2F Framework JIRA What is Jira? Proprietary issue tracking software tool Developed by Atlassian located in Sydney, Australia It provides Defect tracking Issue

More information

Chapter 5 Managing the Data

Chapter 5 Managing the Data Chapter 5 Managing the Data The data stored in your PegaRULES database includes instances of rule, data, work, assignment, and all the other classes present in your Process Commander system. This chapter

More information

CA Performance Management Data Aggregator

CA Performance Management Data Aggregator CA Performance Management Data Aggregator Basic Self-Certification Guide 2.4.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to

More information

IBM Rational Synergy DCM-GUI

IBM Rational Synergy DCM-GUI IBM Rational Synergy DCM-GUI Release 7.2.1.1 IBM Rational Synergy - 1 - This edition applies to IBM Rational Synergy version 7.2.1.1, and to all subsequent releases and modifications until otherwise indicated

More information

What is JIRA? software development tool. planning and tracking the projects progress and supporting the team collaboration

What is JIRA? software development tool. planning and tracking the projects progress and supporting the team collaboration Jakub Sykora What is JIRA? software development tool planning and tracking the projects progress and supporting the team collaboration supports both Agile (Scrum & Kanban) and waterfall methodologies What

More information

SpiraTest Quick Start Guide Inflectra Corporation

SpiraTest Quick Start Guide Inflectra Corporation SpiraTest Quick Start Guide Inflectra Corporation Date: January 28, 2018 Contents Introduction 2 1. Logging In and Selecting a Project 3 2. Define the Requirements 5 3. Create the Release and Iteration

More information

PTC Windchill Quality Solutions Extension for ThingWorx Guide

PTC Windchill Quality Solutions Extension for ThingWorx Guide PTC Windchill Quality Solutions Extension for ThingWorx Guide Copyright 2016 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc.

More information

Pega Pharmacovigilance (Pega PV)

Pega Pharmacovigilance (Pega PV) Pega Pharmacovigilance (Pega PV) Version 7.14 BUSINESS USE CASE GUIDE Copyright 2015 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks,

More information

Branching and Merging

Branching and Merging Branching and Merging SWEN-261 Introduction to Software Engineering Department of Software Engineering Rochester Institute of Technology Version control branching supports the ability to manage software

More information

Use Guide STANDARD JIRA CLIENT. (Practical Case)

Use Guide STANDARD JIRA CLIENT. (Practical Case) Use Guide STANDARD JIRA CLIENT (Practical Case) Version 3.0 Madrid, July 2018 1 OBJECTIVE 4 2 BASIC STANDARD SOLUTION 4 2.1 User Profiles 4 2.2 Types of issue 2.2.1 Functional Support 2.2.2 Corrective

More information

CA Clarity Project & Portfolio Manager

CA Clarity Project & Portfolio Manager CA Clarity Project & Portfolio Manager CA Clarity PPM Connector for Microsoft SharePoint Product Guide v1.1.0 Second Edition This documentation and any related computer software help programs (hereinafter

More information

Know Your Customer. Implementation Guide 7.1.1

Know Your Customer. Implementation Guide 7.1.1 Know Your Customer Implementation Guide 7.1.1 Copyright 2014 Pegasystems Inc., Cambridge, MA All rights reserved This document describes products and services of Pegasystems Inc. It may contain trade secrets

More information

Exception Process User Guide Oracle Banking Credit Facilities Process Management Release Part No. E July 2018

Exception Process User Guide Oracle Banking Credit Facilities Process Management Release Part No. E July 2018 Exception Process User Guide Oracle Banking Credit Facilities Process Management Release 14.1.0.0.0 Part No. E97614-01 July 2018 Oracle Banking Credit Facilities Process Management User Guide Oracle Financial

More information

Pegasystems PEGACSA71V1 Exam

Pegasystems PEGACSA71V1 Exam Pegasystems PEGACSA71V1 Exam Number: PEGACSA71V1 Passing Score: 800 Time Limit: 120 min File Version: 4.0 http://www.gratisexam.com/ PEGACSA71V1 Certified System Architect (CSA) 71V1 Version 4.0 Exam A

More information

Pega Call CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION

Pega Call CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION Pega Call CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION 7.1.3.4 Copyright 2016 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes

More information

IBM OpenPages GRC Platform Version Interim Fix 5. Interim Fix ReadMe

IBM OpenPages GRC Platform Version Interim Fix 5. Interim Fix ReadMe IBM OpenPages GRC Platform Version 7.1.0.1 Interim Fix 5 Interim Fix ReadMe IBM OpenPages GRC Platform 7.1.0.1 IF5 ReadMe 2 of 13 NOTE Before using this information and the product it supports, read the

More information

Scribe SolutionPak: QuickBooks Desktop to Salesforce

Scribe SolutionPak: QuickBooks Desktop to Salesforce Scribe SolutionPak: QuickBooks Desktop to Salesforce 9/26/2012 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means,

More information

PegaCALL CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION

PegaCALL CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION PegaCALL CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION 7.1.3.3 Copyright 2015 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes

More information

Cisco Meeting Management

Cisco Meeting Management Cisco Meeting Management Cisco Meeting Management 2.5.1 (Build 2.5.1.65) Release Notes January 17, 2019 Cisco Systems, Inc. www.cisco.com Contents 1 Introduction 3 1.1 The software 3 1.2 Upgrading from

More information

PegaDISTRIBUTION MANAGER (IOS) for PegaRULES Process Commander. Installation and Configuration Guide

PegaDISTRIBUTION MANAGER (IOS) for PegaRULES Process Commander. Installation and Configuration Guide PegaDISTRIBUTION MANAGER (IOS) for PegaRULES Process Commander Installation and Configuration Guide Version 3.3.5 August 2006 Copyright 2006 Pegasystems Inc., Cambridge, MA All rights reserved. This document

More information

Connector for Microsoft SharePoint Product Guide - On Premise. Version

Connector for Microsoft SharePoint Product Guide - On Premise. Version Connector for Microsoft SharePoint Product Guide - On Premise Version 03.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to

More information

RELEASE NOTES FOR MEDFORCE WINDOWS CLIENT

RELEASE NOTES FOR MEDFORCE WINDOWS CLIENT RELEASE NOTES FOR MEDFORCE WINDOWS CLIENT Release Version: 11.3.0 ABOUT THIS RELEASE This release includes a new activity productivity report and the ability to print from Batch preview. It also includes

More information

HP ALM Synchronizer for Agile Manager

HP ALM Synchronizer for Agile Manager HP ALM Synchronizer for Agile Manager Software Version: 2.10 User Guide Document Release Date: August 2014 Software Release Date: August 2014 Legal Notices Warranty The only warranties for HP products

More information

Atlassian JIRA Introduction to JIRA Issue and Project Tracking Software Tutorial 1

Atlassian JIRA Introduction to JIRA Issue and Project Tracking Software Tutorial 1 Atlassian JIRA Introduction to JIRA Issue and Project Tracking Software Tutorial 1 Once again, we are back with another tool tutorial. This time it s the Issue and Project Tracking Software Atlassian JIRA.

More information