You can connect ReqView with Azure DevOps (ADO) to benefit from an integrated Application Lifecycle Management (ALM) solution.
With ReqView and ADO integration, you can follow this workflow:
Follow these steps to set up ReqView and ADO integration:
To enable ADO integration in ReqView, click Edit, select Preferences, and tick Integrate with Azure DevOps.
To configure export of requirements from ReqView to ADO, select a document storing requirements, click File, select Azure DevOps and then Configure Synchronization. In the Configure Synchronization With Azure DevOps dialog update the configuration in JSON format:
Configuration Properties:
adoOrganization – organization name in Microsoft cloud-based Azure DevOps Services. You can find this value in the URL https://dev.azure.com/<organization-name>/ when you open your ADO project site in a web browser.adoCollectionUrl – when using an on-premise Azure DevOps Server, its full URL including protocol, port and collection name, e.g. https://myadoserver.local:8443/DefaultCollection.adoProjectName – e.g. MyProject.adoWorkItemType – mapping of ReqView document objects to ADO work item types.
reqviewAttribute – the ReqView custom attribute describing the type of document objects (e.g., “type”).mapping – a JSON object describing how to set work item types based on the type of ReqView documents objects.
adoFields (optional) – a JSON object describing how to set ADO fields, see Export Requirements to ADO
reqviewAttributes – a JSON object describing how to set ReqView attribute values based on ADO work items field values. See section Update Requirements From ADO below.
$URL – fetch the URL of the ADO work item$Links(<link_type_name>) – fetch a list of URLs of work items linked by a given link type (e.g., “$Links(Tested By)”), see Link type reference$LinkedWorkItems(<work_item_type>) – fetch URLs of linked work items of a given type (e.g., “$LinkedWorkItems(Test Case)”), see About work itemsexportAttachments (optional) – true string to export attachments from ReqView to ADO.Notes:
adoOrganization or adoCollectionUrl properties might be present in the configuration.Example: Open the Example Project and configure the ADO integration to export epics and user stories from the document NEEDS to a new Agile project hosted at ADO.
Create a new project called MyProject by using the New project button on your ADO organization home page located at the URL https://dev.azure.com/<organization-name>/. Expand the Advanced options and choose Agile as the Work item process:
In ReqView, configure the document NEEDS for synchronization with ADO. First, open the document NEEDS and select File > Azure DevOps > Configure Synchronization from the menu, and enter the following configuration in the Configure Synchronization With Azure DevOps dialog:
{ "adoOrganization": "reqview", "adoProjectName": "MyProject", "adoWorkItemType": { "mapping": { "Epic": "EPIC", "User Story": "STORY" }, "reqviewAttribute": "type" }, "adoFields": { "Description": "Story" }}The values of configuration properties adoOrganization and adoProjectName are based on the URL of your ADO project:
Note that:
The configuration property adoWorkItemType.reqviewAttribute is set to “type” because ReqView document NEEDS defines custom enumeration attribute type to describe the type of document objects, see also Customize Attributes.
The configuration property adoWorkItemType.mapping is set to create ADO work items as follows:
The configuration property adoFields is set to export the ReqView template column Story as the ADO field Description.
Display of template column Story for the source document in ReqView:
Display of a target ADO work item:
ReqView supports two authentication methods for ADO:
To export requirements from ReqView to ADO, open the exported document, click File, select Azure DevOps, and then Synchronize Document. The integration iterates the document and creates new ADO work items or updates already exported work items according to the Export Configuration:
adoWorkItemType (e.g., Epic or User Story work items).adoFields to use a custom attribute or a template column instead.adoFields to use a custom attribute or a template column instead.ReqView is the source of truth of this information in the exported ADO work items. ADO users should not change it because ReqView will overwrite it in the next synchronization. However, ADO users can update other ADO fields (e.g., State, Assigned To, or Iteration) as needed to manage the development of requirements in ADO.
You can repeat the synchronization of requirements to ADO for each updated version of the source document. ReqView will update ADO work items created earlier or create work items for new requirements added since the last synchronization. ReqView will mark ADO work items corresponding to deleted (or purged) requirements in ReqView as deleted in ADO using “[Deleted]” prefix in the work item Title. You can query such work items based on the prefix to permanently remove them in ADO.
To navigate from a ADO work item to the corresponding requirement in ReqView, open the ADO work item in browser and click the ReqView Link at the end of the work item’s Description field. Optionally tick Always allow dev.azure.com to open links of this type in the associated app in the Open ReqView? dialog, and finally click Open ReqView. For more information about ReqView URL links, see Share URL Links.
You can fetch information about exported ADO work items (e.g., work item URL, state, assignee, iteration) to the original document in ReqView and display this information in table views for review or coverage analysis purposes.
The information fetched from ADO is stored in custom attributes of the exported document. We recommend that you define attributes for storing ADO information as follows:
external: true to avoid saving attribute values in the Project File or Project Folder.readOnly: true to disable editing of attribute values by users.To configure information fetched from ADO during synchronization and update, set the configuration property reqviewAttributes, see Configure Synchronization with ADO. The Work item field index lists all core and process-specific fields available in ADO.
To navigate from a ReqView requirement to the corresponding ADO work item by clicking on URL links, define a custom xhtml attribute and map this attribute to “$URL” in the configuration property reqviewAttributes.
To get navigable links to ADO work items linked by a given link type, define a custom xhtml attribute and map this attribute to “$Links(link type name)” in the configuration property reqviewAttributes. The Link type reference lists all system-defined link types.
To fetch information from ADO without updating ADO work items, open the exported document in ReqView, click File, select Azure DevOps and then Update Document. If the document is editable, then ReqView updates all attributes listed in the configuration property reqviewAttributes. Otherwise, ReqView only fetches values of external attributes from ADO and keeps them until the project is closed.
Example: Fetch the URL, state, assignee and iteration information from the ADO User Story work items exported from ReqView.
In the Document Attributes dialog, define ReqView custom attributes adoUrl, adoState, adoAssignedTo and adoIteration to store information fetched from ADO as follows:
{ "adoUrl": { "name": "ADO URL", "type": "xhtml", "readOnly": true }, "adoState": { "name": "ADO State", "type": "string", "readOnly": true, "external": true }, "adoAssignedTo": { "name": "ADO Assigned To", "type": "string", "readOnly": true, "external": true }, "adoIteration": { "name": "ADO Iteration", "type": "string", "readOnly": true, "external": true }}Display columns ADO URL, ADO State, ADO Assigned To and ADO Iteration in the table view.
In the Configure Synchronization With Azure DevOps dialog, set the configuration property reqviewAttributes as follows:
{ "reqviewAttributes": { "adoUrl": "$URL", "adoState": "State", "adoAssignedTo": "Assigned To", "adoIteration": "Iteration Path" }}Update the document from ADO:
You can describe test cases in ReqView documents and link them to requirements by verification links conveniently. However, you can also manage test plans, test suites and test cases and get results from test runs in ADO.
You can define test plans and test suites and then describe test cases as ADO work items of type Test Case, which provide information about tests steps, test data, and expected results. Then, you link Test Case work items to User Story work items to trace verified requirements. See Azure Test Plans documentation for detailed information about test management in ADO.
Example: Manage tests in ADO.
Test cases in ADO are described in Test Case work items:
And, test coverage is visible in the Boards view:
In ReqView, open the Document Attributes dialog and add new external read-only custom attribute to fetch URLs of work items linked to the exported work items by the Tested By work item link:
{ "adoTestLinks": { "name": "ADO Test Links", "type": "xhtml", "external": true, "readOnly": true }}Then, open the Configure Synchronization With Azure DevOps dialog and map adoTestLinks to URLs of work items linked by Tested By links as follows:
{ "reqviewAttributes": { "adoTestLinks": "$Links(Tested By)" }}You can try ReqView integration with ADO easily. We have configured the Example Project for exporting epics and users stories from the document NEEDS into your test ADO project.
Follow these steps:










