From 18fa1d3a8ef65ecb49471be15fecbc731500f75c Mon Sep 17 00:00:00 2001 From: Ian Barnard Date: Thu, 6 Apr 2023 17:04:23 +0100 Subject: [PATCH] Added example of creating folder dn_simple_createfolderandartifact.py, updated tests for 7.0.2>=iFix017, updated version to 0.18.0 --- .bumpversion.cfg | 2 +- README.md | 2 +- elmclient/__meta__.py | 2 +- .../dn_simple_createfolderandartifact.py | 206 ++ elmclient/tests/results/gcm401.html | 78 +- elmclient/tests/results/qm201.html | 1944 ++++++++--------- elmclient/tests/results/rm101.html | 22 - elmclient/tests/results/test101.csv | 59 +- elmclient/tests/results/test115.csv | 235 +- elmclient/tests/results/test116.csv | 257 +-- elmclient/tests/results/test117.csv | 171 +- elmclient/tests/results/test119.csv | 130 +- elmclient/tests/results/test121.csv | 33 +- elmclient/tests/results/test124.csv | 77 +- elmclient/tests/results/test125.csv | 3 +- elmclient/tests/results/test126.csv | 2 +- elmclient/tests/results/test127.csv | 65 +- elmclient/tests/results/test134.csv | 94 +- elmclient/tests/results/test135.csv | 104 +- elmclient/tests/results/test136.csv | 38 +- elmclient/tests/results/test137.csv | 226 +- elmclient/tests/results/test141.csv | 32 +- elmclient/tests/results/test142.csv | 54 +- elmclient/tests/results/test143.csv | 26 +- elmclient/tests/results/test144.csv | 156 +- elmclient/tests/results/test145.csv | 187 +- elmclient/tests/results/test146.csv | 127 +- elmclient/tests/results/test147.csv | 187 +- elmclient/tests/results/test149.csv | 187 +- elmclient/tests/results/test301.csv | 52 +- elmclient/tests/results/test302.csv | 4 +- elmclient/tests/results/test303.csv | 2 +- elmclient/tests/results/test305.csv | 14 +- elmclient/tests/results/test306.csv | 52 +- elmclient/tests/results/test308.csv | 22 +- elmclient/tests/results/test309.csv | 30 +- elmclient/tests/results/test310.csv | 16 +- elmclient/tests/tests_702iFix017.xlsx | Bin 0 -> 22379 bytes setup.py | 2 +- 39 files changed, 2544 insertions(+), 2356 deletions(-) create mode 100644 elmclient/examples/dn_simple_createfolderandartifact.py create mode 100644 elmclient/tests/tests_702iFix017.xlsx diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 89a4fb3..61a27a9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.17.0 +current_version = 0.18.0 commit = True tag = True diff --git a/README.md b/README.md index 753dff1..1a31f8b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ SPDX-License-Identifier: MIT - version="0.17.0" + version="0.18.0" Introduction diff --git a/elmclient/__meta__.py b/elmclient/__meta__.py index 1d6115f..095dc3b 100644 --- a/elmclient/__meta__.py +++ b/elmclient/__meta__.py @@ -9,7 +9,7 @@ app = 'elmoslcquery' description = 'Commandline OSLC query for ELM' -version = '0.17.0' +version = '0.18.0' license = 'MIT' author_name = 'Ian Barnard' author_mail = 'ian.barnard@uk.ibm.com' diff --git a/elmclient/examples/dn_simple_createfolderandartifact.py b/elmclient/examples/dn_simple_createfolderandartifact.py new file mode 100644 index 0000000..18e8f17 --- /dev/null +++ b/elmclient/examples/dn_simple_createfolderandartifact.py @@ -0,0 +1,206 @@ +## +## © Copyright 2023- IBM Inc. All rights reserved +# SPDX-License-Identifier: MIT +## + +# example of creating a folder and creating an artifact in it +# provide on the commandline (each surrounded by " if it contains a space): +# The name of the artifact type - case sensitive! +# Some initial text to put in the artifact +# The name of the folder where the artifact will be created - this is the path starting with / - case sensitive! +# The name of the new folder + +# For info about folder create API see https://rhnaranjo.wordpress.com/2012/06/25/folder-support-added-to-rrc-4-0-oslc-rm-api-implementation/ + +# Also see section 2 of https://jazz.net/library/article/1197 + +# to create an artifact you have to find the creation factory +# and find the 'instanceShape' for the type of artifact you want to create +# then you POST some basic content compliant with the shape to the factory URL +# this must also specify the folder where you want the artifact to be created - which means you need to find the folder URL +# folders are found using a OSLC Query capability for folders - this returns one level at a time +# sowill likely need a series of ueries to find an existing folder + +import logging +import os.path +import sys +import time + +import lxml.etree as ET + +import elmclient.server as elmserver +import elmclient.utils as utils +import elmclient.rdfxml as rdfxml + +# setup logging - see levels in utils.py +#loglevel = "INFO,INFO" +loglevel = "TRACE,OFF" +levels = [utils.loglevels.get(l,-1) for l in loglevel.split(",",1)] +if len(levels)<2: + # assert console logging level OFF if not provided + levels.append(None) +if -1 in levels: + raise Exception( f'Logging level {loglevel} not valid - should be comma-separated one or two values from DEBUG, INFO, WARNING, ERROR, CRITICAL, OFF' ) +utils.setup_logging( filelevel=levels[0], consolelevel=levels[1] ) + +logger = logging.getLogger(__name__) + +utils.log_commandline( os.path.basename(sys.argv[0]) ) + +jazzhost = 'https://jazz.ibm.com:9443' + +username = 'ibm' +password = 'ibm' + +jtscontext = 'jts' +rmcontext = 'rm' + +# the project+compontent+config that will be updated +proj = "rm_optout_p1" +comp = proj +conf = f"{comp} Initial Stream" + +# caching control +# 0=fully cached (but code below specifies queries aren't cached) - if you need to clear the cache, delet efolder .web_cache +# 1=clear cache initially then continue with cache enabled +# 2=clear cache and disable caching +caching = 2 + +################################################################################## +if __name__=="__main__": + if len(sys.argv) != 5: + print( 'A typical commandline might be: dn_simple_createfolderandartifact.py "Stakeholder Requirement" "My first stakefilder requirement" / newfoldername' ) + raise Exception( 'You must provide: The artifact type, the artifact text, and the folder path to create the artifact in - each surrounded by " if including spaces' ) + + newfoldername = sys.argv[4] + + print( f"Attempting to create a '{sys.argv[1]}' in project '{proj}' in configuration {conf} in folder '{sys.argv[3]}'" ) + print( f"Using credentials user '{username}' password '{password}'") + + # create our "server" which is how we connect to DOORS Next + # first enable the proxy so if a proxy is running it can monitor the communication with server (this is ignored if proxy isn't running) + elmserver.setupproxy(jazzhost,proxyport=8888) + theserver = elmserver.JazzTeamServer(jazzhost, username, password, verifysslcerts=False, jtsappstring=f"jts:{jtscontext}", appstring='rm', cachingcontrol=caching) + + # create the RM application interface + dnapp = theserver.find_app( f"rm:{rmcontext}", ok_to_create=True ) + + # open the project + p = dnapp.find_project(proj) + + # find the component + c = p.find_local_component(comp) + comp_u = c.project_uri + print( f"{comp_u=}" ) + + # select the configuration + config_u = c.get_local_config(conf) + print( f"{config_u=}" ) + c.set_local_config(config_u) + + # load the folder (using folder query capability) + # NOTE this returns as soon as it finds a matching folder - i.e. doesn't load them all! + # build the full new folder name so we can check if it already exists + fullnewfoldername = sys.argv[3] + if not fullnewfoldername.endswith( "/" ): + fullnewfoldername += "/" + fullnewfoldername += sys.argv[4] + thefolder = c.load_folders(fullnewfoldername) + + # check if the folder doesn't exist + if thefolder is None: + # have to create it! + # get the parent + thefolder = c.load_folders(sys.argv[3]) + if not thefolder: + raise Exception( f"Parent folder '{sys.argv[3]}' doesn't exist!" ) + + # create the new folder + folderfactory_u = c.reluri( "folders" ) + # this is a pretty nasty way of creating XML; would be much better to build it and let ET do the namespaces! + # NOTE the rdf:about must be an empty string! + newfolder_t = f""" + + {newfoldername} + The description is optional. + + +""" + + print( f"{newfolder_t=}" ) + newfolder_x = ET.fromstring( newfolder_t ) + + response = c.execute_post_rdf_xml( folderfactory_u, data=newfolder_x, params={'projectURL': p.reluri(f'process/project-areas/{p.iid}')}, headers={'vvc.configuration': config_u, 'Configuration-Context': None, }, intent=f"Create the new folder '{newfoldername}' in folder '{sys.argv[3]}'" ) + + thefolder_u = response.headers.get('Location') + else: + print( f"Folder URL = {thefolder.folderuri}" ) + thefolder_u = thefolder.folderuri + # now the folder exists we can put the new artifact in it + + # find the requirement creation factory + factory_u, shapes = c.get_factory_uri("oslc_rm:Requirement", return_shapes=True) + print( f"Factory URL = {factory_u}" ) + print( f"Shapes for this factory: {shapes}" ) + + # Find the type - read the shapes until find one matching the type name on the commandline + # If you have two or more shapes with the same name this will only return the last matching one - the order is determined by the server and can vary - i.e. different shapes with the same name is a BAD idea! + # Also shows all the shape names :-) + theshape_u = None + for shape_u in shapes: + # retrieve the type + shape_x = c.execute_get_rdf_xml( shape_u ) + # check its name + shape_title = rdfxml.xmlrdf_get_resource_text( shape_x, ".//oslc:ResourceShape/dcterms:title" ) + print( f"{shape_title=}" ) + if shape_title == sys.argv[1]: + theshape_u = shape_u + print( f"Found!" ) + if theshape_u is None: + raise Exception( f"Shape '{sys.argv[1]}' not found!" ) + + # text of the XML with basic content provided (this is based on example in section 2 of https://jazz.net/library/article/1197 + # If you want more complex and general purpose data such as custom attributes you probably need to use the instanceShape + # this is a pretty nasty way of creating XML; would be much better to build it and let ET do the namespaces! + thexml_t = f""" + + + OSLC Creation Example + {sys.argv[2]} + + + + + """ + thexml_x = ET.fromstring( thexml_t ) + + # POST it to create the artifact + response = c.execute_post_rdf_xml( factory_u, data=thexml_x, intent="Create the artifact" ) + print( f"POST result = {response.status_code}" ) + location = response.headers.get('Location') + if response.status_code != 201: + raise Exception( "POST failed!" ) + theartifact_u = location + + # get the artifact so we can show its id + theartifact_x = c.execute_get_rdf_xml( theartifact_u, intent="Retrieve the artifact so we can show its identifier" ) + + # show its ID + theid = rdfxml.xml_find_element( theartifact_x, ".//dcterms:identifier" ) + print( f"Your new artifact has identifier {theid.text} URL {theartifact_u}" ) diff --git a/elmclient/tests/results/gcm401.html b/elmclient/tests/results/gcm401.html index e5af4b9..928ceaf 100644 --- a/elmclient/tests/results/gcm401.html +++ b/elmclient/tests/results/gcm401.html @@ -139,7 +139,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -205,7 +205,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -313,7 +313,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -373,7 +373,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -445,7 +445,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -482,8 +482,8 @@

Shapes

Member - - https://jazz.ibm.com:9443/gc/oslc-query/shape/type/datatypes/enumerated#A5 + allowedValue + oslc:allowedValue @@ -499,7 +499,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -535,7 +535,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -561,13 +561,13 @@

Shapes

Contributor - https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_OqW90FEfEe2nTqOb0RrItA#A10 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_OqW90FEfEe2nTqOb0RrItA#A6 Creator - https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_OqW90FEfEe2nTqOb0RrItA#A2 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_OqW90FEfEe2nTqOb0RrItA#A1 @@ -638,14 +638,14 @@

Shapes

Contributor - contributor - dcterms:contributor + + https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A6 Creator - creator - dcterms:creator + + https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A11 @@ -674,8 +674,8 @@

Shapes

'Project area' - projectArea - process:projectArea + + https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A4 @@ -716,14 +716,14 @@

Shapes

Contributor - - https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A0 + contributor + dcterms:contributor Creator - - https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A2 + creator + dcterms:creator @@ -752,8 +752,8 @@

Shapes

'Project area' - - https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A11 + projectArea + process:projectArea @@ -819,31 +819,31 @@

Shapes

Committer - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A9 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A6 Component - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A19 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A16 Contribution - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A7 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A1 Contributor - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A4 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A12 Creator - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A14 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A18 @@ -855,7 +855,7 @@

Shapes

'Derived from' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A0 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A8 @@ -879,13 +879,13 @@

Shapes

'Previous baseline' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A6 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A3 'Project area' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A21 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A17 @@ -963,19 +963,19 @@

Shapes

Component - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A14 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A9 Contribution - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A1 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A11 Contributor - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A16 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A10 @@ -993,7 +993,7 @@

Shapes

'Derived from' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A20 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A4 @@ -1017,13 +1017,13 @@

Shapes

'Previous baseline' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A4 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A0 'Project area' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A13 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A21 @@ -1135,7 +1135,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -1189,7 +1189,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs diff --git a/elmclient/tests/results/qm201.html b/elmclient/tests/results/qm201.html index 53c8cb1..94fad4e 100644 --- a/elmclient/tests/results/qm201.html +++ b/elmclient/tests/results/qm201.html @@ -91,13 +91,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A20 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A21 @@ -127,7 +127,7 @@

Shapes

Approval - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A94 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A77 @@ -163,13 +163,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A100 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A27 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A96 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A47 @@ -211,13 +211,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Category#A139 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Category#A152 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Category#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Category#A108 @@ -247,19 +247,19 @@

Shapes

'Default Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A4 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A10 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A2 @@ -277,7 +277,7 @@

Shapes

'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A13 'Component Resource Shape' @@ -295,7 +295,7 @@

Shapes

Configurations - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Component#A20 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Component#A1 @@ -415,7 +415,7 @@

Shapes

'Was Derived From' - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Component#A10 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Component#A14 @@ -457,7 +457,7 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A4 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A8 @@ -523,7 +523,7 @@

Shapes

'Previous Baseline' - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A2 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A21 @@ -541,7 +541,7 @@

Shapes

Selections - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A9 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A11 @@ -583,7 +583,7 @@

Shapes

'Was Derived From' - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A8 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A15 @@ -625,7 +625,7 @@

Shapes

BaselineOfStream - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A6 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A22 @@ -643,7 +643,7 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A14 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A3 @@ -709,7 +709,7 @@

Shapes

'Previous Baseline' - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A10 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A25 @@ -727,7 +727,7 @@

Shapes

Selections - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A26 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A14 @@ -751,7 +751,7 @@

Shapes

Streams - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A8 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A27 @@ -775,7 +775,7 @@

Shapes

'Was Derived From' - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A9 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A30 @@ -823,13 +823,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A50 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A36 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A48 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A34 @@ -841,7 +841,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A49 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A35 @@ -859,13 +859,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#ExecutedOnMachine#A96 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#ExecutedOnMachine#A101 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#ExecutedOnMachine#A98 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#ExecutedOnMachine#A100 @@ -895,13 +895,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#KeyDate#A85 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#KeyDate#A63 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#KeyDate#A84 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#KeyDate#A71 @@ -925,7 +925,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A122 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A99 @@ -949,7 +949,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A124 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A102 @@ -967,7 +967,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A126 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A94 @@ -1009,13 +1009,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A167 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A181 Objective - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A37 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A165 @@ -1027,7 +1027,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A177 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A190 @@ -1069,19 +1069,19 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A149 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A130 'Objective Status' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A151 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A33 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A152 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A132 @@ -1105,67 +1105,67 @@

Shapes

'Application Server' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A234 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A230 Browser - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A230 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A233 Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A117 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A213 CPU - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A236 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A231 'Data Base' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A196 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A192 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A208 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A185 'Management Agent' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A194 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A234 'Operating System' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A231 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A235 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A99 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A204 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A217 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A191 'Test Adapter' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A232 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A236 @@ -1213,7 +1213,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A14 + https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A9 @@ -1243,7 +1243,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A7 + https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A17 @@ -1291,7 +1291,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A19 + https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A20 @@ -1333,13 +1333,13 @@

Shapes

'Build Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildDefinition#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildDefinition#A4 'Build State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildDefinition#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildDefinition#A3 @@ -1369,7 +1369,7 @@

Shapes

'Build State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A9 @@ -1387,7 +1387,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A2 @@ -1399,7 +1399,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A7 @@ -1453,7 +1453,7 @@

Shapes

'Build Status' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A12 @@ -1477,7 +1477,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A8 @@ -1489,7 +1489,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A11 @@ -1501,7 +1501,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A6 @@ -1543,13 +1543,13 @@

Shapes

'Build State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildRecord#A2 'Build Status' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildRecord#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildRecord#A3 @@ -1591,7 +1591,7 @@

Shapes

'Build State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A5 @@ -1621,7 +1621,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A4 @@ -1633,7 +1633,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A2 @@ -1666,54 +1666,6 @@

Shapes

- - 'Associates Channel Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.keyword.Keyword#A3 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.keyword.Keyword#A11 - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.keyword.Keyword#A10 - - - - Description - description - dcterms:description - - - - Subject - subject - dcterms:subject - - - - Template - template - qm_rqm:template - - - - Title - title - dcterms:title - - - 'QM Keyword' - - - - - 'Access Context' accessContext @@ -1729,25 +1681,25 @@

Shapes

'Associates Channel Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A34 Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A28 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A7 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A32 Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A16 @@ -1765,7 +1717,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A15 @@ -1783,7 +1735,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A30 @@ -1795,13 +1747,13 @@

Shapes

'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A33 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A9 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A26 @@ -1846,18 +1798,66 @@

Shapes

+ + 'Associates Channel Script' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.keyword.Keyword#A6 + + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.keyword.Keyword#A2 Creator + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.keyword.Keyword#A1 + + + + Description + description + dcterms:description + + + + Subject + subject + dcterms:subject + + + + Template + template + qm_rqm:template + + + + Title + title + dcterms:title + + + 'QM Keyword' + + + + + + + Contributor + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A11 + + Creator + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A6 + + Identifier identifier @@ -1867,7 +1867,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A13 @@ -1879,7 +1879,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A4 @@ -1891,7 +1891,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A3 @@ -1957,49 +1957,49 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A79 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A55 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A86 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A99 'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A92 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A89 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A2 Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A28 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A23 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A100 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A68 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A81 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A86 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A91 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A100 @@ -2011,7 +2011,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A72 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A98 @@ -2023,7 +2023,7 @@

Shapes

'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A46 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A49 @@ -2035,19 +2035,19 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A58 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A73 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A88 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A20 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A74 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A4 @@ -2059,7 +2059,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A85 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A75 @@ -2083,7 +2083,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A3 @@ -2095,13 +2095,13 @@

Shapes

'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A67 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A95 Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A94 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A47 @@ -2113,7 +2113,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A97 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A0 @@ -2131,13 +2131,13 @@

Shapes

Snapshot - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A61 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A62 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A50 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A102 @@ -2149,7 +2149,7 @@

Shapes

'Test Case Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A96 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A60 @@ -2173,25 +2173,25 @@

Shapes

'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A87 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A79 'Validates Architecture Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A76 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A93 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A103 Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A90 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A87 @@ -2221,7 +2221,7 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A2 @@ -2233,19 +2233,19 @@

Shapes

'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A9 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A21 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A16 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A25 @@ -2263,31 +2263,31 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A6 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A19 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A11 Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A1 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A12 @@ -2299,7 +2299,7 @@

Shapes

'Test Case Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A23 @@ -2317,25 +2317,25 @@

Shapes

'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A20 'Validates Architecture Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A15 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A27 Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A17 @@ -2359,31 +2359,31 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A56 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A72 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A86 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A3 'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A92 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A58 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A44 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A71 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A94 @@ -2395,7 +2395,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A90 @@ -2407,13 +2407,13 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A73 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A39 @@ -2425,7 +2425,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A90 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A43 @@ -2443,7 +2443,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A54 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A42 @@ -2461,7 +2461,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A80 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A84 @@ -2479,7 +2479,7 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A87 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A2 @@ -2503,19 +2503,19 @@

Shapes

'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A81 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A71 'Validates Architecture Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A94 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A89 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A89 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A93 @@ -2551,7 +2551,7 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A10 @@ -2569,7 +2569,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A14 @@ -2587,7 +2587,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A2 @@ -2599,13 +2599,13 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A5 'Test Data Variable' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A8 @@ -2641,7 +2641,7 @@

Shapes

'Test Data Variable' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.datapool.Datapool#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.datapool.Datapool#A7 @@ -2671,7 +2671,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A4 @@ -2683,7 +2683,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A1 @@ -2695,7 +2695,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A2 @@ -2737,7 +2737,7 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A60 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A53 @@ -2761,7 +2761,7 @@

Shapes

'Lab Resource Description' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A66 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A60 @@ -2779,13 +2779,13 @@

Shapes

'Platform Coverage' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A67 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A56 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A69 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A67 @@ -2797,7 +2797,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A63 @@ -2845,7 +2845,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A48 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A89 @@ -2857,7 +2857,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A112 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A172 @@ -2869,7 +2869,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A109 @@ -2917,25 +2917,25 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A27 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A33 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A34 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A6 @@ -2947,13 +2947,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A31 'Current Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A23 @@ -2971,13 +2971,13 @@

Shapes

'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A28 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A32 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A36 @@ -2989,7 +2989,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A21 @@ -3007,13 +3007,13 @@

Shapes

'Last Passed Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 'Last Rollup Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A34 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A14 @@ -3031,13 +3031,13 @@

Shapes

'Produces Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A16 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A17 @@ -3049,31 +3049,31 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 'Runs on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A10 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A29 'Runs Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A22 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A9 @@ -3091,13 +3091,13 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A15 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 @@ -3133,7 +3133,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 @@ -3151,49 +3151,49 @@

Shapes

'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A8 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A6 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 'Runs on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A5 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A10 'Runs Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A0 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A7 @@ -3223,7 +3223,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A20 @@ -3235,13 +3235,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 'Current Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A25 @@ -3253,13 +3253,13 @@

Shapes

'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A21 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A13 @@ -3271,7 +3271,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A1 @@ -3289,7 +3289,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A11 @@ -3301,25 +3301,25 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A15 'Runs on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A22 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A8 'Runs Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A10 @@ -3343,13 +3343,13 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A17 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 @@ -3382,6 +3382,18 @@

Shapes

+ + 'Access Context' + accessContext + acc:accessContext + + + + 'Access Control' + accessControl + acp:accessControl + + Attachment attachment @@ -3391,37 +3403,67 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A103 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A83 'Category: Product' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A106 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A137 'Category: Release' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A105 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A148 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A109 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A164 + + + + Component + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A177 'Contains Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A123 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A108 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A111 + + + + 'Copied From' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A113 + + + + 'Copied Root' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A136 + + + + Created + created + dcterms:created + + + + Creator + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A185 @@ -3430,6 +3472,12 @@

Shapes

dcterms:description + + 'Electronic Signature' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A161 + + 'Execution Effort' executionEffort @@ -3439,349 +3487,307 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A81 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A110 'Has Child Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A159 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A95 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A91 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A73 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A80 - Iteration - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A62 + Identifier + identifier + dcterms:identifier - 'Key Date' + 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A104 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A166 - 'Objective Status Group' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A113 - - - - 'Planning Effort' - planningEffort - qm_rqm:planningEffort - - - - Risk - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A102 + 'Is Locked' + isLocked + qm_rqm:isLocked - 'Runs on Test Environment' + Iteration - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A66 - 'Team Area' + 'Key Date' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A32 - Template - template - qm_rqm:template + Modified + modified + dcterms:modified - 'Test Schedule' + 'Objective Status Group' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A111 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A51 - Title - title - dcterms:title + 'Order Index' + orderIndex + qm_rqm:orderIndex - 'Uses Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A110 + 'Planning Effort' + planningEffort + qm_rqm:planningEffort - 'Validates Requirement Collection' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A107 - - - 'QM Test Plan' - - - + 'Platform Coverage' - - - 'Access Context' - accessContext - acc:accessContext + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A133 - 'Access Control' - accessControl - acp:accessControl + 'Project Area' - - - Attachment - attachment - qm_rqm:attachment + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A170 - Category - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A140 + Relation + relation + dcterms:relation - 'Category: Product' + 'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A172 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A127 - 'Category: Release' + Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A81 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A112 - 'Category: Test Phase' + 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A102 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A138 - Component + 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A142 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A172 - 'Contains Test Suite' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A171 + 'Short ID' + shortId + oslc:shortId - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A154 + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - 'Copied From' + Snapshot - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A164 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A184 - 'Copied Root' + 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A170 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A145 - Created - created - dcterms:created + Template + template + qm_rqm:template - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A34 + 'Test Schedule' - - - Description - description - dcterms:description + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A90 - 'Electronic Signature' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A105 + Title + title + dcterms:title - 'Execution Effort' - executionEffort - qm_rqm:executionEffort + Type + type + rdf:type - 'Formal Review' + 'Uses Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A155 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A129 - 'Has Child Plan' + 'Validates Requirement Collection' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A87 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A122 - - 'Has Priority' + 'QM Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A158 - - - 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A148 - Identifier - identifier - dcterms:identifier + Attachment + attachment + qm_rqm:attachment - 'Instance Shape' + Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A138 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A112 - 'Is Locked' - isLocked - qm_rqm:isLocked + 'Category: Product' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A105 - Iteration + 'Category: Release' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A189 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A10 - 'Key Date' + 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A184 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A28 - Modified - modified - dcterms:modified + 'Contains Test Suite' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A71 - 'Objective Status Group' + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A188 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A120 - 'Order Index' - orderIndex - qm_rqm:orderIndex + Description + description + dcterms:description - 'Planning Effort' - planningEffort - qm_rqm:planningEffort + 'Execution Effort' + executionEffort + qm_rqm:executionEffort - 'Platform Coverage' + 'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A38 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A115 - 'Project Area' + 'Has Child Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A129 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A111 - Relation - relation - dcterms:relation + 'Has Priority' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A109 - 'Rich Text Section' + 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A63 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A110 - Risk + Iteration - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A166 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A104 - 'Runs on Test Environment' + 'Key Date' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A79 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A116 - 'Service Provider' + 'Objective Status Group' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A143 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A103 - 'Short ID' - shortId - oslc:shortId + 'Planning Effort' + planningEffort + qm_rqm:planningEffort - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + Risk + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A60 - Snapshot + 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A82 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A175 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A108 @@ -3793,7 +3799,7 @@

Shapes

'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A191 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A106 @@ -3802,22 +3808,16 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Uses Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A169 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A107 'Validates Requirement Collection' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A161 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A119 'QM Test Plan' @@ -3829,37 +3829,37 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A159 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A61 'Category: Product' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A133 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A72 'Category: Release' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A141 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A58 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A146 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A113 'Contains Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A134 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A121 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A162 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A160 @@ -3871,13 +3871,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A46 'Has Child Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A150 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A146 @@ -3889,7 +3889,7 @@

Shapes

'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A158 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A162 @@ -3901,7 +3901,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A118 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A110 @@ -3919,7 +3919,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A83 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A103 @@ -3931,7 +3931,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A126 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A25 @@ -3949,7 +3949,7 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A143 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A123 @@ -3967,13 +3967,13 @@

Shapes

'Uses Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A135 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A130 'Validates Requirement Collection' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A130 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A127 'QM Test Result' @@ -4015,31 +4015,31 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A21 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A2 'Contains Step Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A61 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A30 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A73 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A53 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A11 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A33 @@ -4051,13 +4051,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A25 'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A78 @@ -4069,25 +4069,25 @@

Shapes

'Executed on Build' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A48 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A3 'Executed on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A69 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A48 'Executed on Machine' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A65 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A52 'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A20 @@ -4099,13 +4099,13 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A32 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A28 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A75 @@ -4117,13 +4117,13 @@

Shapes

'Included in Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A70 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A47 @@ -4231,13 +4231,13 @@

Shapes

'Produced by Test Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A30 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A23 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A73 @@ -4249,25 +4249,25 @@

Shapes

'Reports on Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A67 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A41 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A69 'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A65 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A68 @@ -4327,7 +4327,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A41 @@ -4363,25 +4363,25 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A66 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A6 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A70 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A50 'Testcase Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A35 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A27 'Tested by' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A45 @@ -4393,7 +4393,7 @@

Shapes

'Testscript Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A62 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A39 @@ -4423,19 +4423,19 @@

Shapes

'Uses Test Data' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A74 Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A26 Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A71 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A66 @@ -4465,19 +4465,19 @@

Shapes

'Contains Step Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A36 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A27 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A20 'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A33 @@ -4489,25 +4489,25 @@

Shapes

'Executed on Build' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A5 'Executed on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A28 'Executed on Machine' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A35 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A24 'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A30 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A13 @@ -4519,7 +4519,7 @@

Shapes

'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A17 @@ -4591,7 +4591,7 @@

Shapes

'Reports on Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A33 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A22 @@ -4609,7 +4609,7 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A16 @@ -4621,13 +4621,13 @@

Shapes

Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A32 Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A34 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A19 @@ -4651,7 +4651,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A64 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A55 @@ -4663,7 +4663,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A33 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A26 @@ -4675,25 +4675,25 @@

Shapes

'Executed on Build' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A50 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A56 'Executed on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A45 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A67 'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A67 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A5 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A66 @@ -4705,7 +4705,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A44 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A45 @@ -4795,13 +4795,13 @@

Shapes

'Produced by Test Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A37 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A40 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A55 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A62 @@ -4813,19 +4813,19 @@

Shapes

'Reports on Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A29 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A0 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A61 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A27 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A35 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A4 @@ -4885,7 +4885,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A28 @@ -4915,37 +4915,37 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A2 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A63 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A32 'Testcase Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A63 'Tested by' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A21 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A61 'Testplan Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A41 'Testscript Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A43 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A52 @@ -4963,13 +4963,13 @@

Shapes

'Uses Test Data' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A28 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A33 Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A15 @@ -4999,31 +4999,31 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A40 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A62 'Contains Test Script Step' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A41 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A38 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A49 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A44 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A47 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A8 @@ -5035,7 +5035,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A51 @@ -5047,7 +5047,7 @@

Shapes

'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A54 @@ -5059,7 +5059,7 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A45 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A59 @@ -5071,7 +5071,7 @@

Shapes

'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A58 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A40 @@ -5083,7 +5083,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A51 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A36 @@ -5107,7 +5107,7 @@

Shapes

'Managed by Adapter' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A62 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A64 @@ -5125,13 +5125,13 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A11 'Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A60 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A57 @@ -5149,7 +5149,7 @@

Shapes

'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A61 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A60 @@ -5167,13 +5167,13 @@

Shapes

'Script Type' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A42 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A35 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A0 @@ -5197,13 +5197,13 @@

Shapes

Snapshot - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A4 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A55 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A22 @@ -5227,19 +5227,19 @@

Shapes

'Uses Test Data' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A48 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A56 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A7 Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A12 'QM Test Script' @@ -5251,7 +5251,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A12 @@ -5263,7 +5263,7 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A2 @@ -5275,7 +5275,7 @@

Shapes

'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A0 @@ -5293,13 +5293,13 @@

Shapes

'Managed by Adapter' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A4 'Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A14 @@ -5317,7 +5317,7 @@

Shapes

'Script Type' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A10 @@ -5329,7 +5329,7 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A11 @@ -5347,19 +5347,19 @@

Shapes

'Uses Test Data' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A16 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A6 Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A9 'QM Test Script' @@ -5371,7 +5371,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A11 @@ -5383,7 +5383,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A21 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A27 @@ -5395,7 +5395,7 @@

Shapes

'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A18 @@ -5407,7 +5407,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A9 @@ -5431,7 +5431,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A23 @@ -5449,13 +5449,13 @@

Shapes

'Script Type' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A22 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A19 @@ -5473,7 +5473,7 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A2 @@ -5491,7 +5491,7 @@

Shapes

'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A16 'QM Test Script Step' @@ -5545,7 +5545,7 @@

Shapes

'Included in Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A15 @@ -5557,13 +5557,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A1 'Linked Keyword' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A16 @@ -5575,7 +5575,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A3 @@ -5587,13 +5587,13 @@

Shapes

'Script Step Type' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A10 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A0 @@ -5611,7 +5611,7 @@

Shapes

'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A13 'QM Test Script Step' @@ -5629,19 +5629,19 @@

Shapes

'Included in Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A9 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A1 'Linked Keyword' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A10 @@ -5653,7 +5653,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A0 @@ -5671,7 +5671,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A2 @@ -5713,7 +5713,7 @@

Shapes

'Affected by Change Request' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A23 @@ -5737,7 +5737,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A28 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A13 @@ -5773,7 +5773,7 @@

Shapes

'Included in Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A16 @@ -5785,7 +5785,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A9 @@ -5803,13 +5803,13 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A17 'Related Change Request' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A26 @@ -5827,7 +5827,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A22 @@ -5839,13 +5839,13 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A19 'Tested by' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A29 @@ -5863,13 +5863,13 @@

Shapes

'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A11 Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A24 'QM Test Suite' @@ -5887,37 +5887,37 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A32 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A29 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A9 'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A30 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A23 'Category: Theme' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A32 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A30 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A22 @@ -5935,7 +5935,7 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A21 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A28 @@ -5947,13 +5947,13 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A6 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A26 @@ -5971,13 +5971,13 @@

Shapes

Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A16 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A25 @@ -5995,7 +5995,7 @@

Shapes

'Test Suite Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A29 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A2 @@ -6007,7 +6007,7 @@

Shapes

Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A19 @@ -6043,55 +6043,55 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A42 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A30 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A46 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A45 'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A49 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A7 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A36 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A27 'Category: Theme' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A51 Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A43 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A43 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A50 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A41 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A36 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A55 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A56 @@ -6103,7 +6103,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A38 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A39 @@ -6115,7 +6115,7 @@

Shapes

'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A44 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A25 @@ -6127,7 +6127,7 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A34 @@ -6139,13 +6139,13 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A39 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A61 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A50 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A28 @@ -6157,7 +6157,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A59 @@ -6193,7 +6193,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A54 @@ -6205,7 +6205,7 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A62 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A38 @@ -6217,13 +6217,13 @@

Shapes

Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A35 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A0 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A57 @@ -6241,13 +6241,13 @@

Shapes

Snapshot - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A64 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A49 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A65 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A35 @@ -6265,7 +6265,7 @@

Shapes

'Test Suite Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A61 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A47 @@ -6283,7 +6283,7 @@

Shapes

Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A56 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A24 @@ -6301,13 +6301,13 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A53 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A52 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A65 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A67 @@ -6319,13 +6319,13 @@

Shapes

'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A18 'Category: Theme' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A36 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A32 @@ -6343,7 +6343,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A67 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A59 @@ -6355,13 +6355,13 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A68 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A38 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A23 @@ -6373,7 +6373,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A32 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A37 @@ -6391,7 +6391,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A37 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A33 @@ -6403,7 +6403,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A44 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A53 @@ -6421,7 +6421,7 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A58 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A66 @@ -6454,46 +6454,16 @@

Shapes

- - 'Access Context' - accessContext - acc:accessContext - - - - 'Access Control' - accessControl - acp:accessControl - - - - Component - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A14 - - Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A17 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A11 'Current Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 @@ -6511,115 +6481,37 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A6 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A4 - - - - 'Last Failed Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A22 - - - - 'Last Passed Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A12 - - - - 'Last Rollup Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A10 - - - - Modified - modified - dcterms:modified - - - - 'Order Index' - orderIndex - qm_rqm:orderIndex - - - - 'Produces Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A26 - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A27 - - - - Relation - relation - dcterms:relation + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A7 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A2 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A3 'Runs Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A20 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A19 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A1 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A29 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A12 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A4 @@ -6634,12 +6526,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Weight weight @@ -6653,147 +6539,117 @@

Shapes

- Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A8 + 'Access Context' + accessContext + acc:accessContext - 'Current Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A5 + 'Access Control' + accessControl + acp:accessControl - Description - description - dcterms:description + Component - - - Estimate - estimate - qm_rqm:estimate + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A28 - 'Has Priority' + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A8 - 'Reports on Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A6 + Created + created + dcterms:created - 'Runs on Test Environment' + Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A3 - 'Runs Test Suite' + 'Current Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A23 - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A2 + Description + description + dcterms:description - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A9 + Estimate + estimate + qm_rqm:estimate - 'Time Spent' - timeSpent - qm_rqm:timeSpent + 'Has Priority' - - - Title - title - dcterms:title + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A6 - Weight - weight - qm_rqm:weight - - - 'QM Test Suite Execution Record' - - - + Identifier + identifier + dcterms:identifier - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A10 + 'Instance Shape' - - - Created - created - dcterms:created + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A7 - Creator + 'Last Failed Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A12 - 'Current Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A12 + 'Last Passed Test Suite Result' - - - Estimate - estimate - qm_rqm:estimate + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A22 - 'Has Priority' + 'Last Rollup Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A2 - Identifier - identifier - dcterms:identifier + Modified + modified + dcterms:modified - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A7 + 'Order Index' + orderIndex + qm_rqm:orderIndex - Modified - modified - dcterms:modified + 'Produces Test Suite Result' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A13 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A14 @@ -6805,25 +6661,25 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A26 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A10 'Runs Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A15 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A31 @@ -6841,13 +6697,13 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A29 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A21 @@ -6874,154 +6730,130 @@

Shapes

qm_rqm:weight - 'QM Test Suite Result' - + 'QM Test Suite Execution Record' - - - Channel - channel - qm_rqm:channel Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 - 'End Time' - endTime - qm_rqm:endTime + Created + created + dcterms:created - 'Executed on Build' + Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A52 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A13 - 'Formal Review' + 'Current Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A14 - 'Has Passed Variable' - hasPassedVariable - qm_rqm:hasPassedVariable + Estimate + estimate + qm_rqm:estimate - 'Has Test Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A34 + 'Has Priority' - - - 'Is Halt on Failure' - isHaltOnFailure - qm_rqm:isHaltOnFailure + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A2 - 'Is Sequential Execution' - isSequentialExecution - qm_rqm:isSequentialExecution + Identifier + identifier + dcterms:identifier - 'Points Attempted' - pointsAttempted - qm_rqm:pointsAttempted + 'Instance Shape' - - - 'Points Blocked' - pointsBlocked - qm_rqm:pointsBlocked + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A3 - 'Points Deferred' - pointsDeferred - qm_rqm:pointsDeferred + Modified + modified + dcterms:modified - 'Points Failed' - pointsFailed - qm_rqm:pointsFailed + 'Project Area' - - - 'Points Inconclusive' - pointsInconclusive - qm_rqm:pointsInconclusive + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A17 - 'Points Passed' - pointsPassed - qm_rqm:pointsPassed + Relation + relation + dcterms:relation - 'Points Perm Failed' - pointsPermFailed - qm_rqm:pointsPermFailed + 'Reports on Test Plan' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A15 - 'Points Skipped' - pointsSkipped - qm_rqm:pointsSkipped + 'Runs on Test Environment' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A21 - 'Produced by Test Suite Execution Record' + 'Runs Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A50 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A18 - 'Start Time' - startTime - qm_rqm:startTime + 'Service Provider' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A11 - Status - status - oslc_qm:status + 'Short ID' + shortId + oslc:shortId - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A49 + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - 'Test Cell' + 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A20 - 'Test Execution Suite Element' + 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A47 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A22 - 'Test Execution Suite Script Element' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A10 + 'Time Spent' + timeSpent + qm_rqm:timeSpent @@ -7031,15 +6863,9 @@

Shapes

- Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A12 - - - - Verdict - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A40 + Type + type + rdf:type @@ -7081,13 +6907,13 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A85 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A79 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A14 @@ -7099,13 +6925,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A119 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A53 'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A107 @@ -7117,13 +6943,13 @@

Shapes

'Executed on Build' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A48 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A103 'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A99 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A10 @@ -7135,13 +6961,13 @@

Shapes

'Has Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A76 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A112 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A117 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A35 @@ -7153,7 +6979,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A61 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A6 @@ -7339,13 +7165,13 @@

Shapes

'Produced by Test Suite Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A108 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A63 @@ -7357,19 +7183,19 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A56 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A109 'Reports on Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A86 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A113 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A41 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A102 @@ -7429,7 +7255,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A45 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A119 @@ -7459,43 +7285,43 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A120 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A83 'Test Cell' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A111 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A26 'Test Execution Suite Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A78 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A82 'Test Execution Suite Script Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A81 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A59 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A101 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A13 'Testplan Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A115 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A56 'Testsuite Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A112 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A50 @@ -7525,13 +7351,13 @@

Shapes

Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A36 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A86 Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A108 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A55 @@ -7555,7 +7381,181 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A49 + + + + 'End Time' + endTime + qm_rqm:endTime + + + + 'Executed on Build' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A8 + + + + 'Formal Review' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A13 + + + + 'Has Passed Variable' + hasPassedVariable + qm_rqm:hasPassedVariable + + + + 'Has Test Result' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A40 + + + + 'Is Halt on Failure' + isHaltOnFailure + qm_rqm:isHaltOnFailure + + + + 'Is Sequential Execution' + isSequentialExecution + qm_rqm:isSequentialExecution + + + + 'Points Attempted' + pointsAttempted + qm_rqm:pointsAttempted + + + + 'Points Blocked' + pointsBlocked + qm_rqm:pointsBlocked + + + + 'Points Deferred' + pointsDeferred + qm_rqm:pointsDeferred + + + + 'Points Failed' + pointsFailed + qm_rqm:pointsFailed + + + + 'Points Inconclusive' + pointsInconclusive + qm_rqm:pointsInconclusive + + + + 'Points Passed' + pointsPassed + qm_rqm:pointsPassed + + + + 'Points Perm Failed' + pointsPermFailed + qm_rqm:pointsPermFailed + + + + 'Points Skipped' + pointsSkipped + qm_rqm:pointsSkipped + + + + 'Produced by Test Suite Execution Record' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A46 + + + + 'Start Time' + startTime + qm_rqm:startTime + + + + Status + status + oslc_qm:status + + + + 'Team Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A33 + + + + 'Test Cell' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A55 + + + + 'Test Execution Suite Element' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A54 + + + + 'Test Execution Suite Script Element' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A16 + + + + Title + title + dcterms:title + + + + Variable + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A12 + + + + Verdict + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A11 + + + + Weight + weight + qm_rqm:weight + + + 'QM Test Suite Result' + + + + + + + Channel + channel + qm_rqm:channel + + + + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A37 @@ -7567,7 +7567,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A53 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A61 @@ -7579,13 +7579,13 @@

Shapes

'Executed on Build' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A41 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A12 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A48 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A43 @@ -7597,7 +7597,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A33 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A54 @@ -7681,13 +7681,13 @@

Shapes

'Produced by Test Suite Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A29 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A60 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A52 @@ -7699,19 +7699,19 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A34 'Reports on Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A31 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A45 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A1 @@ -7771,7 +7771,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A44 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A53 @@ -7801,31 +7801,31 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A48 'Test Cell' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A64 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A37 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A45 'Testplan Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A68 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A60 'Testsuite Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A65 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A46 @@ -7843,7 +7843,7 @@

Shapes

Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A52 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A39 @@ -8029,7 +8029,7 @@

Shapes

'Approval Descriptor' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A133 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A24 @@ -8041,13 +8041,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A132 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A105 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A45 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A103 @@ -8077,13 +8077,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#RecordSelectionCriteria#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#RecordSelectionCriteria#A17 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#RecordSelectionCriteria#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#RecordSelectionCriteria#A19 @@ -8131,13 +8131,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RichTextSection#A56 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RichTextSection#A43 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RichTextSection#A57 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RichTextSection#A46 @@ -8167,7 +8167,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A36 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A117 @@ -8185,7 +8185,7 @@

Shapes

'Risk Factor' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A179 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A142 @@ -8203,7 +8203,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A42 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A135 @@ -8257,7 +8257,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RiskFactor#A192 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RiskFactor#A168 @@ -8281,7 +8281,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RiskFactor#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RiskFactor#A173 @@ -8335,7 +8335,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Snapshot#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Snapshot#A14 @@ -8353,7 +8353,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Snapshot#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Snapshot#A11 @@ -8395,25 +8395,25 @@

Shapes

'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A70 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A50 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A66 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A54 'Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A77 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A71 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A66 @@ -8437,19 +8437,19 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A34 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A28 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A33 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A27 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A29 @@ -8485,13 +8485,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#TestDataVariable#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#TestDataVariable#A17 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#TestDataVariable#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#TestDataVariable#A19 @@ -8527,7 +8527,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A59 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A42 @@ -8539,13 +8539,13 @@

Shapes

'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A67 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A69 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A68 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A71 @@ -8557,13 +8557,13 @@

Shapes

'Produced By Test Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A66 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A67 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A66 @@ -8587,19 +8587,19 @@

Shapes

'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A1 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A40 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A38 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A39 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A41 @@ -8677,13 +8677,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A174 Iteration - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A173 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A171 @@ -8695,7 +8695,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A28 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A178 @@ -8725,13 +8725,13 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A102 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A23 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A87 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A97 @@ -8743,25 +8743,25 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A81 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A86 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A101 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A6 'Runs Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A91 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A102 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A80 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A85 @@ -8779,7 +8779,7 @@

Shapes

'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A96 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A103 Variable @@ -8791,13 +8791,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#Variable#A76 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#Variable#A82 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#Variable#A78 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#Variable#A7 diff --git a/elmclient/tests/results/rm101.html b/elmclient/tests/results/rm101.html index 1302568..1a1bb4e 100644 --- a/elmclient/tests/results/rm101.html +++ b/elmclient/tests/results/rm101.html @@ -90,11 +90,6 @@

Properties with no shape

rdm_types:AlternateSpelling - 'anewlink to' - - https://jazz.ibm.com:9443/rm/types/LT_mOUkgMHHEe2nWbTAqpfKOQ - - 'Approved By' https://jazz.ibm.com:9443/rm/types/AD_9u_hnlEhEe2d5dG-54qhbg @@ -1050,11 +1045,6 @@

Properties with no shape

https://jazz.ibm.com:9443/rm/types/AT_9vGPN1EhEe2d5dG-54qhbg#_9vG2RVEhEe2d5dG-54qhbg https://jazz.ibm.com:9443/rm/types/AT_9vGPN1EhEe2d5dG-54qhbg#_9vG2RVEhEe2d5dG-54qhbg - 'withuri to' - - http://me.com/uri - -

Link Types

@@ -1066,12 +1056,6 @@

Link Types

Affected By None - 'anewlink to' - https://jazz.ibm.com:9443/rm/types/LT_mOUkgMHHEe2nWbTAqpfKOQ - - anewlink to - None - 'Approved By' https://jazz.ibm.com:9443/rm/types/AD_9u_hnlEhEe2d5dG-54qhbg @@ -1210,12 +1194,6 @@

Link Types

Validated By None - 'withuri to' - http://me.com/uri - http://me.com/uri - withuri to - None -

Prefixes

diff --git a/elmclient/tests/results/test101.csv b/elmclient/tests/results/test101.csv index f08f4c1..c8bcb2e 100644 --- a/elmclient/tests/results/test101.csv +++ b/elmclient/tests/results/test101.csv @@ -47,8 +47,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qRZkFEhEe2d5dG-54qhbg,3913,Preconditi https://jazz.ibm.com:9443/rm/resources/BI_9pWMh1EhEe2d5dG-54qhbg,3913,Preconditions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qSAoFEhEe2d5dG-54qhbg,3914,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,3914,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/DM_9qQygVEhEe2d5dG-54qhbg,3915,Upaload Usage Data Locally,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Diagram,Diagrams and sketches https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,3915,Upaload Usage Data Locally,,http://jazz.net/ns/rm#Diagram,Diagrams and sketches +https://jazz.ibm.com:9443/rm/resources/DM_9qQygVEhEe2d5dG-54qhbg,3915,Upaload Usage Data Locally,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Diagram,Diagrams and sketches https://jazz.ibm.com:9443/rm/resources/TX_9qPkYVEhEe2d5dG-54qhbg,3916,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,3916,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9qSnsFEhEe2d5dG-54qhbg,3917,"Definitions Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -189,8 +189,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9q7g4VEhEe2d5dG-54qhbg,3985,"The handh https://jazz.ibm.com:9443/rm/resources/BI_9qHBxFEhEe2d5dG-54qhbg,3985,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9q9WEFEhEe2d5dG-54qhbg,3986,The processing servers/computers in the system shall run in a network configuration.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,3986,The processing servers/computers in the system shall run in a network configuration.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9q8vAFEhEe2d5dG-54qhbg,3987,Some text,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,3987,Some text,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9q8vAFEhEe2d5dG-54qhbg,3987,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,3987,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9q99IFEhEe2d5dG-54qhbg,3988,References,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j5VEhEe2d5dG-54qhbg,3988,References,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rBAcFEhEe2d5dG-54qhbg,3989,Brazil,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -205,8 +205,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9q_LQFEhEe2d5dG-54qhbg,3993,The meter https://jazz.ibm.com:9443/rm/resources/BI_9punNFEhEe2d5dG-54qhbg,3993,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rC1oFEhEe2d5dG-54qhbg,3994,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMmFEhEe2d5dG-54qhbg,3994,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_9rDcsFEhEe2d5dG-54qhbg,3995,Product Perspective,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j6FEhEe2d5dG-54qhbg,3995,Product Perspective,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9rDcsFEhEe2d5dG-54qhbg,3995,Product Perspective,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rCOkFEhEe2d5dG-54qhbg,3996,The meter interface unit shall store data for a defined period while powered off.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punM1EhEe2d5dG-54qhbg,3996,The meter interface unit shall store data for a defined period while powered off.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rBngVEhEe2d5dG-54qhbg,3997,Term,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information @@ -316,8 +316,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rdsYFEhEe2d5dG-54qhbg,4047,The handhe https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,4047,The handheld device shall have a human readable display for information collected from the meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rceQVEhEe2d5dG-54qhbg,4048,(Project-unique identifier of interface),/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS91EhEe2d5dG-54qhbg,4048,(Project-unique identifier of interface),,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8j-1EhEe2d5dG-54qhbg,4049,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rb3MVEhEe2d5dG-54qhbg,4049,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9o8j-1EhEe2d5dG-54qhbg,4049,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9o8j8VEhEe2d5dG-54qhbg,4050,The meter interface unit shall measure pressure to an accuracy of +/- 2%,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rfhklEhEe2d5dG-54qhbg,4050,The meter interface unit shall measure pressure to an accuracy of +/- 2%,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rdFVlEhEe2d5dG-54qhbg,4051,Reliability and Service,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -328,12 +328,12 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,Site Adapt https://jazz.ibm.com:9443/rm/resources/BI_9o8kDFEhEe2d5dG-54qhbg,4053,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rgvsFEhEe2d5dG-54qhbg,4054,Purpose of the Document,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,4054,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8j_FEhEe2d5dG-54qhbg,4055,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,External Interface Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j_FEhEe2d5dG-54qhbg,4055,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rhWwFEhEe2d5dG-54qhbg,4056,Site Adaptation,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNpoVEhEe2d5dG-54qhbg,4056,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,Preconditions,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9ovvl1EhEe2d5dG-54qhbg,4057,Preconditions,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,Preconditions,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rik4FEhEe2d5dG-54qhbg,4058,Meter Reader,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor https://jazz.ibm.com:9443/rm/resources/TX_9rmPQVEhEe2d5dG-54qhbg,4059,Usability,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,4059,Usability,,http://jazz.net/ns/rm#Text,Heading @@ -365,8 +365,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rp5oVEhEe2d5dG-54qhbg,4072,1a. The Me https://jazz.ibm.com:9443/rm/resources/BI_9pWMn1EhEe2d5dG-54qhbg,4072,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9rru0FEhEe2d5dG-54qhbg,4073,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMlVEhEe2d5dG-54qhbg,4073,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9o8kCVEhEe2d5dG-54qhbg,4074,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rp5oFEhEe2d5dG-54qhbg,4074,Transferability/Conversion,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kCVEhEe2d5dG-54qhbg,4074,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rrHwVEhEe2d5dG-54qhbg,4075,Success End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMiVEhEe2d5dG-54qhbg,4075,Success End Condition,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rs88VEhEe2d5dG-54qhbg,4076,Introduction,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -397,8 +397,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rwnUVEhEe2d5dG-54qhbg,4088,External I https://jazz.ibm.com:9443/rm/resources/BI_9pNCn1EhEe2d5dG-54qhbg,4088,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,External Weather,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9p5mLlEhEe2d5dG-54qhbg,4089,External Weather,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090,Scope,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,Scope,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090,Scope,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091,Data Elements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,Data Elements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,Scope of the System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -452,12 +452,12 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pDRl1EhEe2d5dG-54qhbg,4115,"All porta https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,4115,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9r_Q0FEhEe2d5dG-54qhbg,4116,Data Elements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNppFEhEe2d5dG-54qhbg,4116,Data Elements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,Context,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9ovvklEhEe2d5dG-54qhbg,4117,Context,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,Context,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sBGAlEhEe2d5dG-54qhbg,4118,Maintainability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCq1EhEe2d5dG-54qhbg,4118,Maintainability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9ovvmFEhEe2d5dG-54qhbg,4119,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvmFEhEe2d5dG-54qhbg,4119,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sBGAFEhEe2d5dG-54qhbg,4120,System overview,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS8lEhEe2d5dG-54qhbg,4120,System overview,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sBtEFEhEe2d5dG-54qhbg,4121,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -472,8 +472,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,4125,The system https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,4125,The systems shall meet the following objectives:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sFXcFEhEe2d5dG-54qhbg,4126,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS_FEhEe2d5dG-54qhbg,4126,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBx1EhEe2d5dG-54qhbg,4127,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128,The AMR system shall have an operational life of no less than five years.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -490,8 +490,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,Assumption https://jazz.ibm.com:9443/rm/resources/TX_9sIawFEhEe2d5dG-54qhbg,4134,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sOhYFEhEe2d5dG-54qhbg,4135,Control Computer,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qHBsFEhEe2d5dG-54qhbg,4135,Control Computer,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,Adequate wireless spectrum control,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/BI_9p5mM1EhEe2d5dG-54qhbg,4136,Adequate wireless spectrum control,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,Adequate wireless spectrum control,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,4137,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,4137,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9o8kBlEhEe2d5dG-54qhbg,4138,Availability,,http://jazz.net/ns/rm#Text,Heading @@ -509,24 +509,24 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,Product Fu https://jazz.ibm.com:9443/rm/resources/BI_9pNCmVEhEe2d5dG-54qhbg,4144,Product Functions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sQWllEhEe2d5dG-54qhbg,4145,The handheld device shall interfaces with the city's backoffice software.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBkFEhEe2d5dG-54qhbg,4145,The handheld device shall interfaces with the city's backoffice software.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pDRlVEhEe2d5dG-54qhbg,4146,Operational Environment Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,Operational Environment Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pDRlVEhEe2d5dG-54qhbg,4146,Operational Environment Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sVPEFEhEe2d5dG-54qhbg,4147,"Warranty - 3 years parts on-site labor, next business day",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBuVEhEe2d5dG-54qhbg,4147,"Warranty - 3 years parts on-site labor, next business day",,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sUoAFEhEe2d5dG-54qhbg,4148,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9o-ZE1EhEe2d5dG-54qhbg,4149,Picture or Whitepaper,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,Picture or Whitepaper,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,Pinch Areas,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/BI_9p5mJFEhEe2d5dG-54qhbg,4150,Pinch Areas,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,Pinch Areas,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sYSYVEhEe2d5dG-54qhbg,4151,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBnVEhEe2d5dG-54qhbg,4151,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sXrUFEhEe2d5dG-54qhbg,4152,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9qHBg1EhEe2d5dG-54qhbg,4152,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sb8wFEhEe2d5dG-54qhbg,4153,10. The Meter Reader sends a command to retrieve the fault status.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMm1EhEe2d5dG-54qhbg,4153,10. The Meter Reader sends a command to retrieve the fault status.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9pDRllEhEe2d5dG-54qhbg,4154,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pDRllEhEe2d5dG-54qhbg,4154,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,4154,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sauoFEhEe2d5dG-54qhbg,4155,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBwlEhEe2d5dG-54qhbg,4155,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,,http://jazz.net/ns/rm#Text,System Requirement @@ -548,8 +548,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9shcUFEhEe2d5dG-54qhbg,4164,Precedence and criticality of requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS-FEhEe2d5dG-54qhbg,4164,Precedence and criticality of requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,Requirements traceability,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS-lEhEe2d5dG-54qhbg,4165,Requirements traceability,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,Requirements traceability,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,Standards Compliance,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j6VEhEe2d5dG-54qhbg,4167,Product Functions,,http://jazz.net/ns/rm#Text,Heading @@ -560,10 +560,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,Product Pe https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,4169,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pDRlFEhEe2d5dG-54qhbg,4170,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9qLS9FEhEe2d5dG-54qhbg,4171,Referenced documents,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sni8FEhEe2d5dG-54qhbg,4171,Referenced documents,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,Security,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qLS9FEhEe2d5dG-54qhbg,4171,Referenced documents,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172,Security,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,Security,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,Specific Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCnVEhEe2d5dG-54qhbg,4173,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,Product Perspective,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading @@ -586,8 +586,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,"The desir https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9stCgFEhEe2d5dG-54qhbg,4183,Failed End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMi1EhEe2d5dG-54qhbg,4183,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,Transferability/Conversion,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCrFEhEe2d5dG-54qhbg,4184,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,Transferability/Conversion,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9swF0FEhEe2d5dG-54qhbg,4185,Application Server,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qHBslEhEe2d5dG-54qhbg,4185,Application Server,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sqmQFEhEe2d5dG-54qhbg,4186,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement @@ -600,20 +600,20 @@ https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,It is assu https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189,It is assumed that Meter Reader is within range of the Water Meter.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBrVEhEe2d5dG-54qhbg,4192,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,Other Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCrVEhEe2d5dG-54qhbg,4193,Other Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,Other Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,Configuration,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,4194,Configuration,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,Operations,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNpoFEhEe2d5dG-54qhbg,4195,Operations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,The AMR System control computer must operate on the most recent Windows platform currently available.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,4196,The AMR System control computer must operate on the most recent Windows platform currently available.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,Main Flow,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,Goal,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198,Goal,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o-ZEVEhEe2d5dG-54qhbg,4199,Carbon Trust Standard,,http://jazz.net/ns/rm#Text,Heading @@ -639,10 +639,10 @@ https://jazz.ibm.com:9443/rm/resources/BI_9qHBolEhEe2d5dG-54qhbg,4208,Meter usag https://jazz.ibm.com:9443/rm/resources/TX_9s_WYFEhEe2d5dG-54qhbg,4209,Meter reading in the most cost effective manner possible.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210,Trigger,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,Trigger,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS_lEhEe2d5dG-54qhbg,4211,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,Availability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212,Availability,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,Availability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBwVEhEe2d5dG-54qhbg,4213,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9p5mIlEhEe2d5dG-54qhbg,4214,Physical Hazards,,http://jazz.net/ns/rm#Text,Heading @@ -681,10 +681,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,The meter https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,4230,The meter interface shall log leakage data on the central office data store.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9o8j91EhEe2d5dG-54qhbg,4231,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,11. The fault status is displayed on a screen.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMnFEhEe2d5dG-54qhbg,4232,11. The fault status is displayed on a screen.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,Software Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,11. The fault status is displayed on a screen.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pNColEhEe2d5dG-54qhbg,4233,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,Software Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tUtkFEhEe2d5dG-54qhbg,4234,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBlFEhEe2d5dG-54qhbg,4234,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tXJ0FEhEe2d5dG-54qhbg,4235,The handheld unit shall have a mass no greater than 2.25kg.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement @@ -699,8 +699,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pNCm1EhEe2d5dG-54qhbg,4239,General Co https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,General Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,4240,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,"Primary, Secondary Actors",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,"Primary, Secondary Actors",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kClEhEe2d5dG-54qhbg,4242,Other Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,Other Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,Scope & Level,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading @@ -721,8 +721,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9p5mNFEhEe2d5dG-54qhbg,4250,Inadequate https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,Inadequate wireless coverage for all customers,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,Identification,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS8VEhEe2d5dG-54qhbg,4251,Identification,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMjFEhEe2d5dG-54qhbg,4252,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9o8j81EhEe2d5dG-54qhbg,4253,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tiI8FEhEe2d5dG-54qhbg,4254,Assumptions and Dependencies,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -737,3 +737,4 @@ https://jazz.ibm.com:9443/rm/resources/BI_9p5mMFEhEe2d5dG-54qhbg,4258,Humidity o https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,Humidity operational limits of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,The Fixed Network Application software and data collection software must operate on a central server.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259,The Fixed Network Application software and data collection software must operate on a central server.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_VjAoYNSMEe2AXbPl8fn2Aw,4738,My first stakefilder requirement,/00 Admin/newfoldername113,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test115.csv b/elmclient/tests/results/test115.csv index c9ae9d3..381f303 100644 --- a/elmclient/tests/results/test115.csv +++ b/elmclient/tests/results/test115.csv @@ -15,18 +15,18 @@ https://jazz.ibm.com:9443/rm/resources/MD_9qLTB1EhEe2d5dG-54qhbg,3895,/01 Requir https://jazz.ibm.com:9443/rm/resources/MD_9qLTClEhEe2d5dG-54qhbg,3896,/01 Requirements/Meter Interface https://jazz.ibm.com:9443/rm/resources/MD_9qLTCFEhEe2d5dG-54qhbg,3897,/01 Requirements https://jazz.ibm.com:9443/rm/resources/MD_9qLTCVEhEe2d5dG-54qhbg,3898,/02 Reference -https://jazz.ibm.com:9443/rm/resources/WR_9tklMFEhEe2d5dG-54qhbg,3899,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBiVEhEe2d5dG-54qhbg,3899, -https://jazz.ibm.com:9443/rm/resources/WR_9tPOAFEhEe2d5dG-54qhbg,3900,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/WR_9tklMFEhEe2d5dG-54qhbg,3899,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,3900, -https://jazz.ibm.com:9443/rm/resources/WR_9q650FEhEe2d5dG-54qhbg,3901,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/WR_9tPOAFEhEe2d5dG-54qhbg,3900,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pwcNFEhEe2d5dG-54qhbg,3901, -https://jazz.ibm.com:9443/rm/resources/WR_9qZVYVEhEe2d5dG-54qhbg,3902,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/WR_9q650FEhEe2d5dG-54qhbg,3901,/Base Artifacts/00 Admin/AMR Information Architecture artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pwcMlEhEe2d5dG-54qhbg,3902, -https://jazz.ibm.com:9443/rm/resources/WR_9s5PwFEhEe2d5dG-54qhbg,3903,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/WR_9qZVYVEhEe2d5dG-54qhbg,3902,/Base Artifacts/00 Admin/AMR Information Architecture artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punLFEhEe2d5dG-54qhbg,3903, -https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/WR_9s5PwFEhEe2d5dG-54qhbg,3903,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,3904, +https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9qLTC1EhEe2d5dG-54qhbg,3905,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j5FEhEe2d5dG-54qhbg,3905, https://jazz.ibm.com:9443/rm/resources/TX_9qL6AFEhEe2d5dG-54qhbg,3906,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -47,8 +47,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qRZkFEhEe2d5dG-54qhbg,3913,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9pWMh1EhEe2d5dG-54qhbg,3913, https://jazz.ibm.com:9443/rm/resources/TX_9qSAoFEhEe2d5dG-54qhbg,3914,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,3914, -https://jazz.ibm.com:9443/rm/resources/DM_9qQygVEhEe2d5dG-54qhbg,3915,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,3915, +https://jazz.ibm.com:9443/rm/resources/DM_9qQygVEhEe2d5dG-54qhbg,3915,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9qPkYVEhEe2d5dG-54qhbg,3916,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,3916, https://jazz.ibm.com:9443/rm/resources/TX_9qSnsFEhEe2d5dG-54qhbg,3917,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -233,8 +233,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rIVMFEhEe2d5dG-54qhbg,4007,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punE1EhEe2d5dG-54qhbg,4007, https://jazz.ibm.com:9443/rm/resources/TX_9rI8QFEhEe2d5dG-54qhbg,4008,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBoVEhEe2d5dG-54qhbg,4008, -https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j4lEhEe2d5dG-54qhbg,4009, +https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rKKYFEhEe2d5dG-54qhbg,4010,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvnlEhEe2d5dG-54qhbg,4010, https://jazz.ibm.com:9443/rm/resources/TX_9rI8QVEhEe2d5dG-54qhbg,4011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -256,8 +256,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rMmoFEhEe2d5dG-54qhbg,4018,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBt1EhEe2d5dG-54qhbg,4018, https://jazz.ibm.com:9443/rm/resources/TX_9rN0wFEhEe2d5dG-54qhbg,4019,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mKlEhEe2d5dG-54qhbg,4019, -https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j71EhEe2d5dG-54qhbg,4020, +https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rOb0FEhEe2d5dG-54qhbg,4021,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCnlEhEe2d5dG-54qhbg,4021, https://jazz.ibm.com:9443/rm/resources/TX_9rQRAFEhEe2d5dG-54qhbg,4022,/Terms @@ -291,12 +291,12 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rVJgFEhEe2d5dG-54qhbg,4036,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qLS-1EhEe2d5dG-54qhbg,4036, https://jazz.ibm.com:9443/rm/resources/TX_9rVwkFEhEe2d5dG-54qhbg,4037,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punN1EhEe2d5dG-54qhbg,4037, -https://jazz.ibm.com:9443/rm/resources/TX_9rXlwFEhEe2d5dG-54qhbg,4038,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvpFEhEe2d5dG-54qhbg,4038, +https://jazz.ibm.com:9443/rm/resources/TX_9rXlwFEhEe2d5dG-54qhbg,4038,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rYz4FEhEe2d5dG-54qhbg,4039,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_1EhEe2d5dG-54qhbg,4039, -https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kAlEhEe2d5dG-54qhbg,4040, +https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmFEhEe2d5dG-54qhbg,4041, https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,4041, @@ -316,35 +316,35 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rdsYFEhEe2d5dG-54qhbg,4047,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,4047, https://jazz.ibm.com:9443/rm/resources/TX_9rceQVEhEe2d5dG-54qhbg,4048,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS91EhEe2d5dG-54qhbg,4048, -https://jazz.ibm.com:9443/rm/resources/TX_9rb3MVEhEe2d5dG-54qhbg,4049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j-1EhEe2d5dG-54qhbg,4049, -https://jazz.ibm.com:9443/rm/resources/TX_9rfhklEhEe2d5dG-54qhbg,4050,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rb3MVEhEe2d5dG-54qhbg,4049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8VEhEe2d5dG-54qhbg,4050, +https://jazz.ibm.com:9443/rm/resources/TX_9rfhklEhEe2d5dG-54qhbg,4050,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rdFVlEhEe2d5dG-54qhbg,4051,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,4051, https://jazz.ibm.com:9443/rm/resources/TX_9re6gFEhEe2d5dG-54qhbg,4052,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBr1EhEe2d5dG-54qhbg,4052, -https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kDFEhEe2d5dG-54qhbg,4053, +https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rgvsFEhEe2d5dG-54qhbg,4054,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,4054, -https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_FEhEe2d5dG-54qhbg,4055, +https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rhWwFEhEe2d5dG-54qhbg,4056,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpoVEhEe2d5dG-54qhbg,4056, -https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvl1EhEe2d5dG-54qhbg,4057, +https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rik4FEhEe2d5dG-54qhbg,4058,/Use Case Content/Actors https://jazz.ibm.com:9443/rm/resources/TX_9rmPQVEhEe2d5dG-54qhbg,4059,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,4059, -https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060, -https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7VEhEe2d5dG-54qhbg,4061, +https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rloNFEhEe2d5dG-54qhbg,4062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,4062, -https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mJVEhEe2d5dG-54qhbg,4063, +https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rndYFEhEe2d5dG-54qhbg,4064,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,4064, https://jazz.ibm.com:9443/rm/resources/TX_9rm2UFEhEe2d5dG-54qhbg,4065,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -359,14 +359,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rpSkFEhEe2d5dG-54qhbg,4069,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBqVEhEe2d5dG-54qhbg,4069, https://jazz.ibm.com:9443/rm/resources/TX_9roEcFEhEe2d5dG-54qhbg,4070,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMlEhEe2d5dG-54qhbg,4070, -https://jazz.ibm.com:9443/rm/resources/TX_9rorgFEhEe2d5dG-54qhbg,4071,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCk1EhEe2d5dG-54qhbg,4071, +https://jazz.ibm.com:9443/rm/resources/TX_9rorgFEhEe2d5dG-54qhbg,4071,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rp5oVEhEe2d5dG-54qhbg,4072,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMn1EhEe2d5dG-54qhbg,4072, https://jazz.ibm.com:9443/rm/resources/TX_9rru0FEhEe2d5dG-54qhbg,4073,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMlVEhEe2d5dG-54qhbg,4073, -https://jazz.ibm.com:9443/rm/resources/TX_9rp5oFEhEe2d5dG-54qhbg,4074,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kCVEhEe2d5dG-54qhbg,4074, +https://jazz.ibm.com:9443/rm/resources/TX_9rp5oFEhEe2d5dG-54qhbg,4074,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rrHwVEhEe2d5dG-54qhbg,4075,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMiVEhEe2d5dG-54qhbg,4075, https://jazz.ibm.com:9443/rm/resources/TX_9rs88VEhEe2d5dG-54qhbg,4076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -374,33 +374,33 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,4076, https://jazz.ibm.com:9443/rm/resources/TX_9ruLEFEhEe2d5dG-54qhbg,4077,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnFEhEe2d5dG-54qhbg,4077, https://jazz.ibm.com:9443/rm/resources/TX_9rtkAVEhEe2d5dG-54qhbg,4078,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079, -https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCp1EhEe2d5dG-54qhbg,4080, +https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rwAQFEhEe2d5dG-54qhbg,4081,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,4081, -https://jazz.ibm.com:9443/rm/resources/TX_9ruyIFEhEe2d5dG-54qhbg,4082,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmlEhEe2d5dG-54qhbg,4082, +https://jazz.ibm.com:9443/rm/resources/TX_9ruyIFEhEe2d5dG-54qhbg,4082,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,4082, https://jazz.ibm.com:9443/rm/resources/TX_9rvZMFEhEe2d5dG-54qhbg,4083,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBhlEhEe2d5dG-54qhbg,4083, https://jazz.ibm.com:9443/rm/resources/TX_9rvZMVEhEe2d5dG-54qhbg,4084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,4084, -https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mLVEhEe2d5dG-54qhbg,4085, +https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rxOYFEhEe2d5dG-54qhbg,4086,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMkVEhEe2d5dG-54qhbg,4086, -https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8FEhEe2d5dG-54qhbg,4087, +https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rwnUVEhEe2d5dG-54qhbg,4088,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCn1EhEe2d5dG-54qhbg,4088, -https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mLlEhEe2d5dG-54qhbg,4089, +https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090, -https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091, +https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,4092, https://jazz.ibm.com:9443/rm/resources/TX_9r2G4FEhEe2d5dG-54qhbg,4093,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts @@ -452,12 +452,12 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pDRl1EhEe2d5dG-54qhbg,4115, https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,4115, https://jazz.ibm.com:9443/rm/resources/TX_9r_Q0FEhEe2d5dG-54qhbg,4116,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNppFEhEe2d5dG-54qhbg,4116, -https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvklEhEe2d5dG-54qhbg,4117, -https://jazz.ibm.com:9443/rm/resources/TX_9sBGAlEhEe2d5dG-54qhbg,4118,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCq1EhEe2d5dG-54qhbg,4118, -https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sBGAlEhEe2d5dG-54qhbg,4118,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmFEhEe2d5dG-54qhbg,4119, +https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sBGAFEhEe2d5dG-54qhbg,4120,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8lEhEe2d5dG-54qhbg,4120, https://jazz.ibm.com:9443/rm/resources/TX_9sBtEFEhEe2d5dG-54qhbg,4121,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -470,166 +470,166 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sC7MFEhEe2d5dG-54qhbg,4124,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBo1EhEe2d5dG-54qhbg,4124, https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,4125,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,4125, -https://jazz.ibm.com:9443/rm/resources/TX_9sFXcFEhEe2d5dG-54qhbg,4126,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_FEhEe2d5dG-54qhbg,4126, -https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sFXcFEhEe2d5dG-54qhbg,4126,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127, +https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBx1EhEe2d5dG-54qhbg,4127, https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128, -https://jazz.ibm.com:9443/rm/resources/TX_9sF-gFEhEe2d5dG-54qhbg,4129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7lEhEe2d5dG-54qhbg,4129, +https://jazz.ibm.com:9443/rm/resources/TX_9sF-gFEhEe2d5dG-54qhbg,4129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sEwYFEhEe2d5dG-54qhbg,4130,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,4130, https://jazz.ibm.com:9443/rm/resources/TX_9sJB0VEhEe2d5dG-54qhbg,4131,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBglEhEe2d5dG-54qhbg,4131, https://jazz.ibm.com:9443/rm/resources/TX_9sEJUFEhEe2d5dG-54qhbg,4132,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBpFEhEe2d5dG-54qhbg,4132, -https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7FEhEe2d5dG-54qhbg,4133, +https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sIawFEhEe2d5dG-54qhbg,4134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sOhYFEhEe2d5dG-54qhbg,4135,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBsFEhEe2d5dG-54qhbg,4135, -https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mM1EhEe2d5dG-54qhbg,4136, +https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,4137,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,4137, -https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBlEhEe2d5dG-54qhbg,4138, +https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sPIcVEhEe2d5dG-54qhbg,4139,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBilEhEe2d5dG-54qhbg,4139, https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,4140,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,4140, https://jazz.ibm.com:9443/rm/resources/TX_9sRksFEhEe2d5dG-54qhbg,4141,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmVEhEe2d5dG-54qhbg,4142, +https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sTZ4FEhEe2d5dG-54qhbg,4143,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBh1EhEe2d5dG-54qhbg,4143, -https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCmVEhEe2d5dG-54qhbg,4144, +https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sQWllEhEe2d5dG-54qhbg,4145,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBkFEhEe2d5dG-54qhbg,4145, -https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRlVEhEe2d5dG-54qhbg,4146, +https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sVPEFEhEe2d5dG-54qhbg,4147,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBuVEhEe2d5dG-54qhbg,4147, https://jazz.ibm.com:9443/rm/resources/TX_9sUoAFEhEe2d5dG-54qhbg,4148,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148, -https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o-ZE1EhEe2d5dG-54qhbg,4149, -https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mJFEhEe2d5dG-54qhbg,4150, +https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sYSYVEhEe2d5dG-54qhbg,4151,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnVEhEe2d5dG-54qhbg,4151, https://jazz.ibm.com:9443/rm/resources/TX_9sXrUFEhEe2d5dG-54qhbg,4152,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBg1EhEe2d5dG-54qhbg,4152, -https://jazz.ibm.com:9443/rm/resources/TX_9sb8wFEhEe2d5dG-54qhbg,4153,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMm1EhEe2d5dG-54qhbg,4153, -https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sb8wFEhEe2d5dG-54qhbg,4153,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRllEhEe2d5dG-54qhbg,4154, +https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,4154, https://jazz.ibm.com:9443/rm/resources/TX_9sauoFEhEe2d5dG-54qhbg,4155,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBwlEhEe2d5dG-54qhbg,4155, -https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kB1EhEe2d5dG-54qhbg,4156, -https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMnlEhEe2d5dG-54qhbg,4157, -https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpolEhEe2d5dG-54qhbg,4158, -https://jazz.ibm.com:9443/rm/resources/TX_9sgOMFEhEe2d5dG-54qhbg,4159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMmVEhEe2d5dG-54qhbg,4159, -https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sgOMFEhEe2d5dG-54qhbg,4159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,4160, -https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRkVEhEe2d5dG-54qhbg,4161, -https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_VEhEe2d5dG-54qhbg,4162, -https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163, +https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9shcUFEhEe2d5dG-54qhbg,4164,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-FEhEe2d5dG-54qhbg,4164, -https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-lEhEe2d5dG-54qhbg,4165, -https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166, -https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j6VEhEe2d5dG-54qhbg,4167, +https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9skfoFEhEe2d5dG-54qhbg,4168,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBoFEhEe2d5dG-54qhbg,4168, -https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,4169, -https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRlFEhEe2d5dG-54qhbg,4170, +https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sni8FEhEe2d5dG-54qhbg,4171,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS9FEhEe2d5dG-54qhbg,4171, -https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172, -https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCnVEhEe2d5dG-54qhbg,4173, -https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCmFEhEe2d5dG-54qhbg,4174, -https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMklEhEe2d5dG-54qhbg,4175, -https://jazz.ibm.com:9443/rm/resources/TX_9sltwlEhEe2d5dG-54qhbg,4176,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmVEhEe2d5dG-54qhbg,4176, -https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sltwlEhEe2d5dG-54qhbg,4176,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMllEhEe2d5dG-54qhbg,4177, +https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/TX_9soKAFEhEe2d5dG-54qhbg,4178,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBk1EhEe2d5dG-54qhbg,4178, -https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8lEhEe2d5dG-54qhbg,4179, -https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180, -https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,4181, -https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182, -https://jazz.ibm.com:9443/rm/resources/TX_9stCgFEhEe2d5dG-54qhbg,4183,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMi1EhEe2d5dG-54qhbg,4183, -https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9stCgFEhEe2d5dG-54qhbg,4183,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCrFEhEe2d5dG-54qhbg,4184, +https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9swF0FEhEe2d5dG-54qhbg,4185,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBslEhEe2d5dG-54qhbg,4185, https://jazz.ibm.com:9443/rm/resources/TX_9sqmQFEhEe2d5dG-54qhbg,4186,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBpVEhEe2d5dG-54qhbg,4186, -https://jazz.ibm.com:9443/rm/resources/TX_9stpkFEhEe2d5dG-54qhbg,4187,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,4187, -https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9stpkFEhEe2d5dG-54qhbg,4187,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,4188, -https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189, -https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190, -https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191, +https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBrVEhEe2d5dG-54qhbg,4192, -https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCrVEhEe2d5dG-54qhbg,4193, -https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,4194, -https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpoFEhEe2d5dG-54qhbg,4195, +https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,4196, -https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197, +https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198, -https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o-ZEVEhEe2d5dG-54qhbg,4199, -https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200, -https://jazz.ibm.com:9443/rm/resources/TX_9s4BoFEhEe2d5dG-54qhbg,4201,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjlEhEe2d5dG-54qhbg,4201, +https://jazz.ibm.com:9443/rm/resources/TX_9s4BoFEhEe2d5dG-54qhbg,4201,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s86IFEhEe2d5dG-54qhbg,4202,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_-1EhEe2d5dG-54qhbg,4202, https://jazz.ibm.com:9443/rm/resources/TX_9s4osFEhEe2d5dG-54qhbg,4203,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_VEhEe2d5dG-54qhbg,4203, https://jazz.ibm.com:9443/rm/resources/TX_9s6d4FEhEe2d5dG-54qhbg,4204,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,4204, -https://jazz.ibm.com:9443/rm/resources/TX_9s7sAFEhEe2d5dG-54qhbg,4205,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mNlEhEe2d5dG-54qhbg,4205, +https://jazz.ibm.com:9443/rm/resources/TX_9s7sAFEhEe2d5dG-54qhbg,4205,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s8TEFEhEe2d5dG-54qhbg,4206,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBsVEhEe2d5dG-54qhbg,4206, https://jazz.ibm.com:9443/rm/resources/TX_9s9hMFEhEe2d5dG-54qhbg,4207,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -637,32 +637,32 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,4207, https://jazz.ibm.com:9443/rm/resources/TX_9s-IQFEhEe2d5dG-54qhbg,4208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBolEhEe2d5dG-54qhbg,4208, https://jazz.ibm.com:9443/rm/resources/TX_9s_WYFEhEe2d5dG-54qhbg,4209,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210, +https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_lEhEe2d5dG-54qhbg,4211, -https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212, +https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBwVEhEe2d5dG-54qhbg,4213, -https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mIlEhEe2d5dG-54qhbg,4214, -https://jazz.ibm.com:9443/rm/resources/TX_9tDAwFEhEe2d5dG-54qhbg,4215,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMoVEhEe2d5dG-54qhbg,4215, -https://jazz.ibm.com:9443/rm/resources/TX_9tDn0FEhEe2d5dG-54qhbg,4216,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tDAwFEhEe2d5dG-54qhbg,4215,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kDVEhEe2d5dG-54qhbg,4216, +https://jazz.ibm.com:9443/rm/resources/TX_9tDn0FEhEe2d5dG-54qhbg,4216,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,4217, -https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvk1EhEe2d5dG-54qhbg,4218, -https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219, -https://jazz.ibm.com:9443/rm/resources/TX_9tIgUVEhEe2d5dG-54qhbg,4220,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,4220, +https://jazz.ibm.com:9443/rm/resources/TX_9tIgUVEhEe2d5dG-54qhbg,4220,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tJHYFEhEe2d5dG-54qhbg,4221,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBtlEhEe2d5dG-54qhbg,4221, -https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMVEhEe2d5dG-54qhbg,4222, +https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tKVgFEhEe2d5dG-54qhbg,4223,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBtFEhEe2d5dG-54qhbg,4223, https://jazz.ibm.com:9443/rm/resources/TX_9tNY0FEhEe2d5dG-54qhbg,4224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -671,69 +671,70 @@ https://jazz.ibm.com:9443/rm/resources/TX_9tLjoFEhEe2d5dG-54qhbg,4225,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBqlEhEe2d5dG-54qhbg,4225, https://jazz.ibm.com:9443/rm/resources/TX_9tMKsFEhEe2d5dG-54qhbg,4226,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBl1EhEe2d5dG-54qhbg,4226, -https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvlFEhEe2d5dG-54qhbg,4227, +https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tRqQFEhEe2d5dG-54qhbg,4228,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBq1EhEe2d5dG-54qhbg,4228, https://jazz.ibm.com:9443/rm/resources/TX_9tQcIFEhEe2d5dG-54qhbg,4229,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvVEhEe2d5dG-54qhbg,4229, -https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,4230, -https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j91EhEe2d5dG-54qhbg,4231, -https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMnFEhEe2d5dG-54qhbg,4232, -https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNColEhEe2d5dG-54qhbg,4233, +https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tUtkFEhEe2d5dG-54qhbg,4234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBlFEhEe2d5dG-54qhbg,4234, https://jazz.ibm.com:9443/rm/resources/TX_9tXJ0FEhEe2d5dG-54qhbg,4235,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvFEhEe2d5dG-54qhbg,4235, -https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j61EhEe2d5dG-54qhbg,4236, -https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mKFEhEe2d5dG-54qhbg,4237, +https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tY_AFEhEe2d5dG-54qhbg,4238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBllEhEe2d5dG-54qhbg,4238, -https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCm1EhEe2d5dG-54qhbg,4239, -https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,4240, -https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241, -https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kClEhEe2d5dG-54qhbg,4242, -https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMhVEhEe2d5dG-54qhbg,4243, -https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j9VEhEe2d5dG-54qhbg,4244, -https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvlVEhEe2d5dG-54qhbg,4245, -https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j-FEhEe2d5dG-54qhbg,4246, -https://jazz.ibm.com:9443/rm/resources/TX_9tfFoFEhEe2d5dG-54qhbg,4247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j4VEhEe2d5dG-54qhbg,4247, -https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tfFoFEhEe2d5dG-54qhbg,4247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCllEhEe2d5dG-54qhbg,4248, -https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBVEhEe2d5dG-54qhbg,4249, -https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mNFEhEe2d5dG-54qhbg,4250, +https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8VEhEe2d5dG-54qhbg,4251, -https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjFEhEe2d5dG-54qhbg,4252, -https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j81EhEe2d5dG-54qhbg,4253, -https://jazz.ibm.com:9443/rm/resources/TX_9tiI8FEhEe2d5dG-54qhbg,4254,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,4254, -https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tiI8FEhEe2d5dG-54qhbg,4254,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j9FEhEe2d5dG-54qhbg,4255, +https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tlMQFEhEe2d5dG-54qhbg,4256,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-VEhEe2d5dG-54qhbg,4256, -https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_1EhEe2d5dG-54qhbg,4257, -https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMFEhEe2d5dG-54qhbg,4258, -https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259, +https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VjAoYNSMEe2AXbPl8fn2Aw,4738,/00 Admin/newfoldername113 diff --git a/elmclient/tests/results/test116.csv b/elmclient/tests/results/test116.csv index a8cde81..0aaefe3 100644 --- a/elmclient/tests/results/test116.csv +++ b/elmclient/tests/results/test116.csv @@ -15,18 +15,18 @@ https://jazz.ibm.com:9443/rm/resources/MD_9qLTB1EhEe2d5dG-54qhbg,3895,/01 Requir https://jazz.ibm.com:9443/rm/resources/MD_9qLTClEhEe2d5dG-54qhbg,3896,/01 Requirements/Meter Interface https://jazz.ibm.com:9443/rm/resources/MD_9qLTCFEhEe2d5dG-54qhbg,3897,/01 Requirements https://jazz.ibm.com:9443/rm/resources/MD_9qLTCVEhEe2d5dG-54qhbg,3898,/02 Reference -https://jazz.ibm.com:9443/rm/resources/WR_9tklMFEhEe2d5dG-54qhbg,3899,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBiVEhEe2d5dG-54qhbg,3899, -https://jazz.ibm.com:9443/rm/resources/WR_9tPOAFEhEe2d5dG-54qhbg,3900,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/WR_9tklMFEhEe2d5dG-54qhbg,3899,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,3900, -https://jazz.ibm.com:9443/rm/resources/WR_9q650FEhEe2d5dG-54qhbg,3901,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/WR_9tPOAFEhEe2d5dG-54qhbg,3900,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pwcNFEhEe2d5dG-54qhbg,3901, -https://jazz.ibm.com:9443/rm/resources/WR_9qZVYVEhEe2d5dG-54qhbg,3902,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/WR_9q650FEhEe2d5dG-54qhbg,3901,/Base Artifacts/00 Admin/AMR Information Architecture artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pwcMlEhEe2d5dG-54qhbg,3902, -https://jazz.ibm.com:9443/rm/resources/WR_9s5PwFEhEe2d5dG-54qhbg,3903,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/WR_9qZVYVEhEe2d5dG-54qhbg,3902,/Base Artifacts/00 Admin/AMR Information Architecture artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punLFEhEe2d5dG-54qhbg,3903, -https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/WR_9s5PwFEhEe2d5dG-54qhbg,3903,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,3904, +https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9qLTC1EhEe2d5dG-54qhbg,3905,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j5FEhEe2d5dG-54qhbg,3905, https://jazz.ibm.com:9443/rm/resources/TX_9qL6AFEhEe2d5dG-54qhbg,3906,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -47,8 +47,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qRZkFEhEe2d5dG-54qhbg,3913,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9pWMh1EhEe2d5dG-54qhbg,3913, https://jazz.ibm.com:9443/rm/resources/TX_9qSAoFEhEe2d5dG-54qhbg,3914,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,3914, -https://jazz.ibm.com:9443/rm/resources/DM_9qQygVEhEe2d5dG-54qhbg,3915,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,3915, +https://jazz.ibm.com:9443/rm/resources/DM_9qQygVEhEe2d5dG-54qhbg,3915,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9qPkYVEhEe2d5dG-54qhbg,3916,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,3916, https://jazz.ibm.com:9443/rm/resources/TX_9qSnsFEhEe2d5dG-54qhbg,3917,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -205,8 +205,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9q_LQFEhEe2d5dG-54qhbg,3993,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punNFEhEe2d5dG-54qhbg,3993, https://jazz.ibm.com:9443/rm/resources/TX_9rC1oFEhEe2d5dG-54qhbg,3994,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMmFEhEe2d5dG-54qhbg,3994, -https://jazz.ibm.com:9443/rm/resources/TX_9rDcsFEhEe2d5dG-54qhbg,3995,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j6FEhEe2d5dG-54qhbg,3995, +https://jazz.ibm.com:9443/rm/resources/TX_9rDcsFEhEe2d5dG-54qhbg,3995,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rCOkFEhEe2d5dG-54qhbg,3996,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punM1EhEe2d5dG-54qhbg,3996, https://jazz.ibm.com:9443/rm/resources/TX_9rBngVEhEe2d5dG-54qhbg,3997,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -233,8 +233,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rIVMFEhEe2d5dG-54qhbg,4007,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punE1EhEe2d5dG-54qhbg,4007, https://jazz.ibm.com:9443/rm/resources/TX_9rI8QFEhEe2d5dG-54qhbg,4008,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBoVEhEe2d5dG-54qhbg,4008, -https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j4lEhEe2d5dG-54qhbg,4009, +https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rKKYFEhEe2d5dG-54qhbg,4010,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvnlEhEe2d5dG-54qhbg,4010, https://jazz.ibm.com:9443/rm/resources/TX_9rI8QVEhEe2d5dG-54qhbg,4011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -256,8 +256,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rMmoFEhEe2d5dG-54qhbg,4018,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBt1EhEe2d5dG-54qhbg,4018, https://jazz.ibm.com:9443/rm/resources/TX_9rN0wFEhEe2d5dG-54qhbg,4019,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mKlEhEe2d5dG-54qhbg,4019, -https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j71EhEe2d5dG-54qhbg,4020, +https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rOb0FEhEe2d5dG-54qhbg,4021,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCnlEhEe2d5dG-54qhbg,4021, https://jazz.ibm.com:9443/rm/resources/TX_9rQRAFEhEe2d5dG-54qhbg,4022,/Terms @@ -295,8 +295,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rXlwFEhEe2d5dG-54qhbg,4038,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9ovvpFEhEe2d5dG-54qhbg,4038, https://jazz.ibm.com:9443/rm/resources/TX_9rYz4FEhEe2d5dG-54qhbg,4039,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_1EhEe2d5dG-54qhbg,4039, -https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kAlEhEe2d5dG-54qhbg,4040, +https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmFEhEe2d5dG-54qhbg,4041, https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,4041, @@ -309,108 +309,108 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rbQIFEhEe2d5dG-54qhbg,4044,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9pwcM1EhEe2d5dG-54qhbg,4044, https://jazz.ibm.com:9443/rm/resources/TX_9rW-sFEhEe2d5dG-54qhbg,4045,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBhVEhEe2d5dG-54qhbg,4045, -https://jazz.ibm.com:9443/rm/resources/TX_9reTcFEhEe2d5dG-54qhbg,4046,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRoFEhEe2d5dG-54qhbg,4046, +https://jazz.ibm.com:9443/rm/resources/TX_9reTcFEhEe2d5dG-54qhbg,4046,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHByFEhEe2d5dG-54qhbg,4046, https://jazz.ibm.com:9443/rm/resources/TX_9rdsYFEhEe2d5dG-54qhbg,4047,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,4047, https://jazz.ibm.com:9443/rm/resources/TX_9rceQVEhEe2d5dG-54qhbg,4048,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS91EhEe2d5dG-54qhbg,4048, -https://jazz.ibm.com:9443/rm/resources/TX_9rb3MVEhEe2d5dG-54qhbg,4049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j-1EhEe2d5dG-54qhbg,4049, -https://jazz.ibm.com:9443/rm/resources/TX_9rfhklEhEe2d5dG-54qhbg,4050,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rb3MVEhEe2d5dG-54qhbg,4049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8VEhEe2d5dG-54qhbg,4050, +https://jazz.ibm.com:9443/rm/resources/TX_9rfhklEhEe2d5dG-54qhbg,4050,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rdFVlEhEe2d5dG-54qhbg,4051,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,4051, https://jazz.ibm.com:9443/rm/resources/TX_9re6gFEhEe2d5dG-54qhbg,4052,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBr1EhEe2d5dG-54qhbg,4052, -https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kDFEhEe2d5dG-54qhbg,4053, +https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rgvsFEhEe2d5dG-54qhbg,4054,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,4054, -https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_FEhEe2d5dG-54qhbg,4055, -https://jazz.ibm.com:9443/rm/resources/TX_9rhWwFEhEe2d5dG-54qhbg,4056,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpoVEhEe2d5dG-54qhbg,4056, -https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rhWwFEhEe2d5dG-54qhbg,4056,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvl1EhEe2d5dG-54qhbg,4057, +https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rik4FEhEe2d5dG-54qhbg,4058,/Use Case Content/Actors https://jazz.ibm.com:9443/rm/resources/TX_9rmPQVEhEe2d5dG-54qhbg,4059,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,4059, -https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060, -https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7VEhEe2d5dG-54qhbg,4061, +https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rloNFEhEe2d5dG-54qhbg,4062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,4062, -https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mJVEhEe2d5dG-54qhbg,4063, +https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rndYFEhEe2d5dG-54qhbg,4064,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,4064, https://jazz.ibm.com:9443/rm/resources/TX_9rm2UFEhEe2d5dG-54qhbg,4065,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,4065, https://jazz.ibm.com:9443/rm/resources/TX_9rjL8FEhEe2d5dG-54qhbg,4066,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvlEhEe2d5dG-54qhbg,4066, -https://jazz.ibm.com:9443/rm/resources/TX_9roEcVEhEe2d5dG-54qhbg,4067,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMk1EhEe2d5dG-54qhbg,4067, -https://jazz.ibm.com:9443/rm/resources/TX_9rorgVEhEe2d5dG-54qhbg,4068,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9roEcVEhEe2d5dG-54qhbg,4067,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMoFEhEe2d5dG-54qhbg,4068, +https://jazz.ibm.com:9443/rm/resources/TX_9rorgVEhEe2d5dG-54qhbg,4068,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rpSkFEhEe2d5dG-54qhbg,4069,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBqVEhEe2d5dG-54qhbg,4069, -https://jazz.ibm.com:9443/rm/resources/TX_9roEcFEhEe2d5dG-54qhbg,4070,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMlEhEe2d5dG-54qhbg,4070, -https://jazz.ibm.com:9443/rm/resources/TX_9rorgFEhEe2d5dG-54qhbg,4071,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9roEcFEhEe2d5dG-54qhbg,4070,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCk1EhEe2d5dG-54qhbg,4071, -https://jazz.ibm.com:9443/rm/resources/TX_9rp5oVEhEe2d5dG-54qhbg,4072,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rorgFEhEe2d5dG-54qhbg,4071,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMn1EhEe2d5dG-54qhbg,4072, -https://jazz.ibm.com:9443/rm/resources/TX_9rru0FEhEe2d5dG-54qhbg,4073,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rp5oVEhEe2d5dG-54qhbg,4072,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMlVEhEe2d5dG-54qhbg,4073, -https://jazz.ibm.com:9443/rm/resources/TX_9rp5oFEhEe2d5dG-54qhbg,4074,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rru0FEhEe2d5dG-54qhbg,4073,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kCVEhEe2d5dG-54qhbg,4074, -https://jazz.ibm.com:9443/rm/resources/TX_9rrHwVEhEe2d5dG-54qhbg,4075,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rp5oFEhEe2d5dG-54qhbg,4074,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMiVEhEe2d5dG-54qhbg,4075, -https://jazz.ibm.com:9443/rm/resources/TX_9rs88VEhEe2d5dG-54qhbg,4076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rrHwVEhEe2d5dG-54qhbg,4075,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,4076, +https://jazz.ibm.com:9443/rm/resources/TX_9rs88VEhEe2d5dG-54qhbg,4076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9ruLEFEhEe2d5dG-54qhbg,4077,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnFEhEe2d5dG-54qhbg,4077, https://jazz.ibm.com:9443/rm/resources/TX_9rtkAVEhEe2d5dG-54qhbg,4078,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079, -https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCp1EhEe2d5dG-54qhbg,4080, +https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rwAQFEhEe2d5dG-54qhbg,4081,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,4081, -https://jazz.ibm.com:9443/rm/resources/TX_9ruyIFEhEe2d5dG-54qhbg,4082,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmlEhEe2d5dG-54qhbg,4082, +https://jazz.ibm.com:9443/rm/resources/TX_9ruyIFEhEe2d5dG-54qhbg,4082,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,4082, https://jazz.ibm.com:9443/rm/resources/TX_9rvZMFEhEe2d5dG-54qhbg,4083,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBhlEhEe2d5dG-54qhbg,4083, -https://jazz.ibm.com:9443/rm/resources/TX_9rvZMVEhEe2d5dG-54qhbg,4084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,4084, -https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rvZMVEhEe2d5dG-54qhbg,4084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mLVEhEe2d5dG-54qhbg,4085, -https://jazz.ibm.com:9443/rm/resources/TX_9rxOYFEhEe2d5dG-54qhbg,4086,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMkVEhEe2d5dG-54qhbg,4086, -https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rxOYFEhEe2d5dG-54qhbg,4086,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8FEhEe2d5dG-54qhbg,4087, -https://jazz.ibm.com:9443/rm/resources/TX_9rwnUVEhEe2d5dG-54qhbg,4088,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCn1EhEe2d5dG-54qhbg,4088, -https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rwnUVEhEe2d5dG-54qhbg,4088,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mLlEhEe2d5dG-54qhbg,4089, +https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090, -https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091, -https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,4092, +https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9r2G4FEhEe2d5dG-54qhbg,4093,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCpVEhEe2d5dG-54qhbg,4093, -https://jazz.ibm.com:9443/rm/resources/TX_9r1f0FEhEe2d5dG-54qhbg,4094,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j41EhEe2d5dG-54qhbg,4094, +https://jazz.ibm.com:9443/rm/resources/TX_9r1f0FEhEe2d5dG-54qhbg,4094,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9r0RsFEhEe2d5dG-54qhbg,4095,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_91EhEe2d5dG-54qhbg,4095, -https://jazz.ibm.com:9443/rm/resources/TX_9rzqoFEhEe2d5dG-54qhbg,4096,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMlFEhEe2d5dG-54qhbg,4096, +https://jazz.ibm.com:9443/rm/resources/TX_9rzqoFEhEe2d5dG-54qhbg,4096,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/TX_9r04wFEhEe2d5dG-54qhbg,4097,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBu1EhEe2d5dG-54qhbg,4097, https://jazz.ibm.com:9443/rm/resources/TX_9r0RsVEhEe2d5dG-54qhbg,4098,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -452,31 +452,31 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pDRl1EhEe2d5dG-54qhbg,4115, https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,4115, https://jazz.ibm.com:9443/rm/resources/TX_9r_Q0FEhEe2d5dG-54qhbg,4116,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNppFEhEe2d5dG-54qhbg,4116, -https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvklEhEe2d5dG-54qhbg,4117, -https://jazz.ibm.com:9443/rm/resources/TX_9sBGAlEhEe2d5dG-54qhbg,4118,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCq1EhEe2d5dG-54qhbg,4118, -https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sBGAlEhEe2d5dG-54qhbg,4118,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmFEhEe2d5dG-54qhbg,4119, +https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sBGAFEhEe2d5dG-54qhbg,4120,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8lEhEe2d5dG-54qhbg,4120, -https://jazz.ibm.com:9443/rm/resources/TX_9sBtEFEhEe2d5dG-54qhbg,4121,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,4121, -https://jazz.ibm.com:9443/rm/resources/TX_9sCUIVEhEe2d5dG-54qhbg,4122,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sBtEFEhEe2d5dG-54qhbg,4121,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMhFEhEe2d5dG-54qhbg,4122, +https://jazz.ibm.com:9443/rm/resources/TX_9sCUIVEhEe2d5dG-54qhbg,4122,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/TX_9r80klEhEe2d5dG-54qhbg,4123,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mJ1EhEe2d5dG-54qhbg,4123, https://jazz.ibm.com:9443/rm/resources/TX_9sC7MFEhEe2d5dG-54qhbg,4124,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBo1EhEe2d5dG-54qhbg,4124, -https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,4125,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,4125, -https://jazz.ibm.com:9443/rm/resources/TX_9sFXcFEhEe2d5dG-54qhbg,4126,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,4125,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_FEhEe2d5dG-54qhbg,4126, -https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sFXcFEhEe2d5dG-54qhbg,4126,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127, +https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBx1EhEe2d5dG-54qhbg,4127, -https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128, +https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7lEhEe2d5dG-54qhbg,4129, https://jazz.ibm.com:9443/rm/resources/TX_9sF-gFEhEe2d5dG-54qhbg,4129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sEwYFEhEe2d5dG-54qhbg,4130,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -490,150 +490,150 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,/Base Arti https://jazz.ibm.com:9443/rm/resources/TX_9sIawFEhEe2d5dG-54qhbg,4134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sOhYFEhEe2d5dG-54qhbg,4135,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBsFEhEe2d5dG-54qhbg,4135, -https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mM1EhEe2d5dG-54qhbg,4136, -https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,4137,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,4137, +https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,4137,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBlEhEe2d5dG-54qhbg,4138, https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9sPIcVEhEe2d5dG-54qhbg,4139,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBilEhEe2d5dG-54qhbg,4139, -https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,4140,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sPIcVEhEe2d5dG-54qhbg,4139,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,4140, +https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,4140,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sRksFEhEe2d5dG-54qhbg,4141,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmVEhEe2d5dG-54qhbg,4142, +https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sTZ4FEhEe2d5dG-54qhbg,4143,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBh1EhEe2d5dG-54qhbg,4143, -https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCmVEhEe2d5dG-54qhbg,4144, -https://jazz.ibm.com:9443/rm/resources/TX_9sQWllEhEe2d5dG-54qhbg,4145,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBkFEhEe2d5dG-54qhbg,4145, -https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sQWllEhEe2d5dG-54qhbg,4145,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRlVEhEe2d5dG-54qhbg,4146, +https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sVPEFEhEe2d5dG-54qhbg,4147,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBuVEhEe2d5dG-54qhbg,4147, -https://jazz.ibm.com:9443/rm/resources/TX_9sUoAFEhEe2d5dG-54qhbg,4148,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148, -https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sUoAFEhEe2d5dG-54qhbg,4148,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o-ZE1EhEe2d5dG-54qhbg,4149, -https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mJFEhEe2d5dG-54qhbg,4150, +https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sYSYVEhEe2d5dG-54qhbg,4151,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnVEhEe2d5dG-54qhbg,4151, https://jazz.ibm.com:9443/rm/resources/TX_9sXrUFEhEe2d5dG-54qhbg,4152,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBg1EhEe2d5dG-54qhbg,4152, -https://jazz.ibm.com:9443/rm/resources/TX_9sb8wFEhEe2d5dG-54qhbg,4153,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMm1EhEe2d5dG-54qhbg,4153, -https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sb8wFEhEe2d5dG-54qhbg,4153,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRllEhEe2d5dG-54qhbg,4154, https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,4154, +https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sauoFEhEe2d5dG-54qhbg,4155,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBwlEhEe2d5dG-54qhbg,4155, -https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kB1EhEe2d5dG-54qhbg,4156, -https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMnlEhEe2d5dG-54qhbg,4157, -https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpolEhEe2d5dG-54qhbg,4158, -https://jazz.ibm.com:9443/rm/resources/TX_9sgOMFEhEe2d5dG-54qhbg,4159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMmVEhEe2d5dG-54qhbg,4159, -https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sgOMFEhEe2d5dG-54qhbg,4159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,4160, -https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRkVEhEe2d5dG-54qhbg,4161, +https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_VEhEe2d5dG-54qhbg,4162, https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163, https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9shcUFEhEe2d5dG-54qhbg,4164,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-FEhEe2d5dG-54qhbg,4164, -https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-lEhEe2d5dG-54qhbg,4165, -https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166, +https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j6VEhEe2d5dG-54qhbg,4167, https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9skfoFEhEe2d5dG-54qhbg,4168,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBoFEhEe2d5dG-54qhbg,4168, -https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,4169, -https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRlFEhEe2d5dG-54qhbg,4170, +https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sni8FEhEe2d5dG-54qhbg,4171,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS9FEhEe2d5dG-54qhbg,4171, -https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172, -https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCnVEhEe2d5dG-54qhbg,4173, -https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCmFEhEe2d5dG-54qhbg,4174, -https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMklEhEe2d5dG-54qhbg,4175, -https://jazz.ibm.com:9443/rm/resources/TX_9sltwlEhEe2d5dG-54qhbg,4176,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmVEhEe2d5dG-54qhbg,4176, -https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sltwlEhEe2d5dG-54qhbg,4176,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMllEhEe2d5dG-54qhbg,4177, -https://jazz.ibm.com:9443/rm/resources/TX_9soKAFEhEe2d5dG-54qhbg,4178,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBk1EhEe2d5dG-54qhbg,4178, +https://jazz.ibm.com:9443/rm/resources/TX_9soKAFEhEe2d5dG-54qhbg,4178,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8lEhEe2d5dG-54qhbg,4179, https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180, -https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,4181, -https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182, -https://jazz.ibm.com:9443/rm/resources/TX_9stCgFEhEe2d5dG-54qhbg,4183,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMi1EhEe2d5dG-54qhbg,4183, -https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9stCgFEhEe2d5dG-54qhbg,4183,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCrFEhEe2d5dG-54qhbg,4184, +https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9swF0FEhEe2d5dG-54qhbg,4185,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBslEhEe2d5dG-54qhbg,4185, https://jazz.ibm.com:9443/rm/resources/TX_9sqmQFEhEe2d5dG-54qhbg,4186,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBpVEhEe2d5dG-54qhbg,4186, -https://jazz.ibm.com:9443/rm/resources/TX_9stpkFEhEe2d5dG-54qhbg,4187,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,4187, -https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9stpkFEhEe2d5dG-54qhbg,4187,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,4188, -https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189, +https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190, https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191, -https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBrVEhEe2d5dG-54qhbg,4192, -https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCrVEhEe2d5dG-54qhbg,4193, -https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,4194, -https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpoFEhEe2d5dG-54qhbg,4195, +https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,4196, -https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197, -https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198, -https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o-ZEVEhEe2d5dG-54qhbg,4199, -https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200, -https://jazz.ibm.com:9443/rm/resources/TX_9s4BoFEhEe2d5dG-54qhbg,4201,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjlEhEe2d5dG-54qhbg,4201, -https://jazz.ibm.com:9443/rm/resources/TX_9s86IFEhEe2d5dG-54qhbg,4202,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s4BoFEhEe2d5dG-54qhbg,4201,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_-1EhEe2d5dG-54qhbg,4202, +https://jazz.ibm.com:9443/rm/resources/TX_9s86IFEhEe2d5dG-54qhbg,4202,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s4osFEhEe2d5dG-54qhbg,4203,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_VEhEe2d5dG-54qhbg,4203, https://jazz.ibm.com:9443/rm/resources/TX_9s6d4FEhEe2d5dG-54qhbg,4204,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,4204, -https://jazz.ibm.com:9443/rm/resources/TX_9s7sAFEhEe2d5dG-54qhbg,4205,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mNlEhEe2d5dG-54qhbg,4205, +https://jazz.ibm.com:9443/rm/resources/TX_9s7sAFEhEe2d5dG-54qhbg,4205,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s8TEFEhEe2d5dG-54qhbg,4206,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBsVEhEe2d5dG-54qhbg,4206, -https://jazz.ibm.com:9443/rm/resources/TX_9s9hMFEhEe2d5dG-54qhbg,4207,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,4207, +https://jazz.ibm.com:9443/rm/resources/TX_9s9hMFEhEe2d5dG-54qhbg,4207,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s-IQFEhEe2d5dG-54qhbg,4208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBolEhEe2d5dG-54qhbg,4208, https://jazz.ibm.com:9443/rm/resources/TX_9s_WYFEhEe2d5dG-54qhbg,4209,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -641,70 +641,70 @@ https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210, https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_lEhEe2d5dG-54qhbg,4211, -https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212, +https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBwVEhEe2d5dG-54qhbg,4213, -https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mIlEhEe2d5dG-54qhbg,4214, -https://jazz.ibm.com:9443/rm/resources/TX_9tDAwFEhEe2d5dG-54qhbg,4215,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMoVEhEe2d5dG-54qhbg,4215, +https://jazz.ibm.com:9443/rm/resources/TX_9tDAwFEhEe2d5dG-54qhbg,4215,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kDVEhEe2d5dG-54qhbg,4216, https://jazz.ibm.com:9443/rm/resources/TX_9tDn0FEhEe2d5dG-54qhbg,4216,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,4217, +https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvk1EhEe2d5dG-54qhbg,4218, https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219, -https://jazz.ibm.com:9443/rm/resources/TX_9tIgUVEhEe2d5dG-54qhbg,4220,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,4220, -https://jazz.ibm.com:9443/rm/resources/TX_9tJHYFEhEe2d5dG-54qhbg,4221,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tIgUVEhEe2d5dG-54qhbg,4220,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBtlEhEe2d5dG-54qhbg,4221, +https://jazz.ibm.com:9443/rm/resources/TX_9tJHYFEhEe2d5dG-54qhbg,4221,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMVEhEe2d5dG-54qhbg,4222, https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tKVgFEhEe2d5dG-54qhbg,4223,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBtFEhEe2d5dG-54qhbg,4223, -https://jazz.ibm.com:9443/rm/resources/TX_9tNY0FEhEe2d5dG-54qhbg,4224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tKVgFEhEe2d5dG-54qhbg,4223,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBn1EhEe2d5dG-54qhbg,4224, -https://jazz.ibm.com:9443/rm/resources/TX_9tLjoFEhEe2d5dG-54qhbg,4225,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tNY0FEhEe2d5dG-54qhbg,4224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBqlEhEe2d5dG-54qhbg,4225, -https://jazz.ibm.com:9443/rm/resources/TX_9tMKsFEhEe2d5dG-54qhbg,4226,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tLjoFEhEe2d5dG-54qhbg,4225,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBl1EhEe2d5dG-54qhbg,4226, +https://jazz.ibm.com:9443/rm/resources/TX_9tMKsFEhEe2d5dG-54qhbg,4226,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvlFEhEe2d5dG-54qhbg,4227, https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tRqQFEhEe2d5dG-54qhbg,4228,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBq1EhEe2d5dG-54qhbg,4228, -https://jazz.ibm.com:9443/rm/resources/TX_9tQcIFEhEe2d5dG-54qhbg,4229,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tRqQFEhEe2d5dG-54qhbg,4228,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvVEhEe2d5dG-54qhbg,4229, -https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tQcIFEhEe2d5dG-54qhbg,4229,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,4230, +https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j91EhEe2d5dG-54qhbg,4231, https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMnFEhEe2d5dG-54qhbg,4232, +https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNColEhEe2d5dG-54qhbg,4233, https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tUtkFEhEe2d5dG-54qhbg,4234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBlFEhEe2d5dG-54qhbg,4234, -https://jazz.ibm.com:9443/rm/resources/TX_9tXJ0FEhEe2d5dG-54qhbg,4235,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tUtkFEhEe2d5dG-54qhbg,4234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvFEhEe2d5dG-54qhbg,4235, +https://jazz.ibm.com:9443/rm/resources/TX_9tXJ0FEhEe2d5dG-54qhbg,4235,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j61EhEe2d5dG-54qhbg,4236, https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mKFEhEe2d5dG-54qhbg,4237, https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tY_AFEhEe2d5dG-54qhbg,4238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBllEhEe2d5dG-54qhbg,4238, +https://jazz.ibm.com:9443/rm/resources/TX_9tY_AFEhEe2d5dG-54qhbg,4238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCm1EhEe2d5dG-54qhbg,4239, https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,4240, +https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241, https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kClEhEe2d5dG-54qhbg,4242, https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMhVEhEe2d5dG-54qhbg,4243, +https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j9VEhEe2d5dG-54qhbg,4244, https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvlVEhEe2d5dG-54qhbg,4245, @@ -719,21 +719,22 @@ https://jazz.ibm.com:9443/rm/resources/BI_9o8kBVEhEe2d5dG-54qhbg,4249, https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mNFEhEe2d5dG-54qhbg,4250, https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8VEhEe2d5dG-54qhbg,4251, +https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjFEhEe2d5dG-54qhbg,4252, https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j81EhEe2d5dG-54qhbg,4253, https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tiI8FEhEe2d5dG-54qhbg,4254,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,4254, -https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tiI8FEhEe2d5dG-54qhbg,4254,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j9FEhEe2d5dG-54qhbg,4255, -https://jazz.ibm.com:9443/rm/resources/TX_9tlMQFEhEe2d5dG-54qhbg,4256,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-VEhEe2d5dG-54qhbg,4256, +https://jazz.ibm.com:9443/rm/resources/TX_9tlMQFEhEe2d5dG-54qhbg,4256,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_1EhEe2d5dG-54qhbg,4257, https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMFEhEe2d5dG-54qhbg,4258, https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259, +https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VjAoYNSMEe2AXbPl8fn2Aw,4738,/00 Admin/newfoldername113 diff --git a/elmclient/tests/results/test117.csv b/elmclient/tests/results/test117.csv index c9ae9d3..319b96b 100644 --- a/elmclient/tests/results/test117.csv +++ b/elmclient/tests/results/test117.csv @@ -167,8 +167,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,3972, https://jazz.ibm.com:9443/rm/resources/TX_9qy-AFEhEe2d5dG-54qhbg,3973,/Terms https://jazz.ibm.com:9443/rm/resources/TX_9qxv4FEhEe2d5dG-54qhbg,3974,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,3974, -https://jazz.ibm.com:9443/rm/resources/TX_9qzlEFEhEe2d5dG-54qhbg,3975,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j6lEhEe2d5dG-54qhbg,3975, +https://jazz.ibm.com:9443/rm/resources/TX_9qzlEFEhEe2d5dG-54qhbg,3975,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9q0MIFEhEe2d5dG-54qhbg,3976,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punEVEhEe2d5dG-54qhbg,3976, https://jazz.ibm.com:9443/rm/resources/TX_9q1aQFEhEe2d5dG-54qhbg,3977,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -205,8 +205,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9q_LQFEhEe2d5dG-54qhbg,3993,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punNFEhEe2d5dG-54qhbg,3993, https://jazz.ibm.com:9443/rm/resources/TX_9rC1oFEhEe2d5dG-54qhbg,3994,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMmFEhEe2d5dG-54qhbg,3994, -https://jazz.ibm.com:9443/rm/resources/TX_9rDcsFEhEe2d5dG-54qhbg,3995,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j6FEhEe2d5dG-54qhbg,3995, +https://jazz.ibm.com:9443/rm/resources/TX_9rDcsFEhEe2d5dG-54qhbg,3995,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rCOkFEhEe2d5dG-54qhbg,3996,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punM1EhEe2d5dG-54qhbg,3996, https://jazz.ibm.com:9443/rm/resources/TX_9rBngVEhEe2d5dG-54qhbg,3997,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -233,10 +233,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rIVMFEhEe2d5dG-54qhbg,4007,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punE1EhEe2d5dG-54qhbg,4007, https://jazz.ibm.com:9443/rm/resources/TX_9rI8QFEhEe2d5dG-54qhbg,4008,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBoVEhEe2d5dG-54qhbg,4008, -https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j4lEhEe2d5dG-54qhbg,4009, -https://jazz.ibm.com:9443/rm/resources/TX_9rKKYFEhEe2d5dG-54qhbg,4010,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvnlEhEe2d5dG-54qhbg,4010, +https://jazz.ibm.com:9443/rm/resources/TX_9rKKYFEhEe2d5dG-54qhbg,4010,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rI8QVEhEe2d5dG-54qhbg,4011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punNVEhEe2d5dG-54qhbg,4011, https://jazz.ibm.com:9443/rm/resources/TX_9rKKYVEhEe2d5dG-54qhbg,4012,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts @@ -256,8 +256,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rMmoFEhEe2d5dG-54qhbg,4018,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBt1EhEe2d5dG-54qhbg,4018, https://jazz.ibm.com:9443/rm/resources/TX_9rN0wFEhEe2d5dG-54qhbg,4019,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mKlEhEe2d5dG-54qhbg,4019, -https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j71EhEe2d5dG-54qhbg,4020, +https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rOb0FEhEe2d5dG-54qhbg,4021,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCnlEhEe2d5dG-54qhbg,4021, https://jazz.ibm.com:9443/rm/resources/TX_9rQRAFEhEe2d5dG-54qhbg,4022,/Terms @@ -273,8 +273,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rQ4EVEhEe2d5dG-54qhbg,4027,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punDlEhEe2d5dG-54qhbg,4027, https://jazz.ibm.com:9443/rm/resources/TX_9rTUUFEhEe2d5dG-54qhbg,4028,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMj1EhEe2d5dG-54qhbg,4028, -https://jazz.ibm.com:9443/rm/resources/TX_9rStQVEhEe2d5dG-54qhbg,4029,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mK1EhEe2d5dG-54qhbg,4029, +https://jazz.ibm.com:9443/rm/resources/TX_9rStQVEhEe2d5dG-54qhbg,4029,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rRfIFEhEe2d5dG-54qhbg,4030,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCoVEhEe2d5dG-54qhbg,4030, https://jazz.ibm.com:9443/rm/resources/TX_9rStQFEhEe2d5dG-54qhbg,4031,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -295,8 +295,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rXlwFEhEe2d5dG-54qhbg,4038,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9ovvpFEhEe2d5dG-54qhbg,4038, https://jazz.ibm.com:9443/rm/resources/TX_9rYz4FEhEe2d5dG-54qhbg,4039,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_1EhEe2d5dG-54qhbg,4039, -https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kAlEhEe2d5dG-54qhbg,4040, +https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmFEhEe2d5dG-54qhbg,4041, https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,4041, @@ -309,38 +309,38 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rbQIFEhEe2d5dG-54qhbg,4044,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9pwcM1EhEe2d5dG-54qhbg,4044, https://jazz.ibm.com:9443/rm/resources/TX_9rW-sFEhEe2d5dG-54qhbg,4045,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBhVEhEe2d5dG-54qhbg,4045, +https://jazz.ibm.com:9443/rm/resources/BI_9qHByFEhEe2d5dG-54qhbg,4046, https://jazz.ibm.com:9443/rm/resources/TX_9reTcFEhEe2d5dG-54qhbg,4046,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRoFEhEe2d5dG-54qhbg,4046, -https://jazz.ibm.com:9443/rm/resources/BI_9qHByFEhEe2d5dG-54qhbg,4046, https://jazz.ibm.com:9443/rm/resources/TX_9rdsYFEhEe2d5dG-54qhbg,4047,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,4047, https://jazz.ibm.com:9443/rm/resources/TX_9rceQVEhEe2d5dG-54qhbg,4048,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS91EhEe2d5dG-54qhbg,4048, -https://jazz.ibm.com:9443/rm/resources/TX_9rb3MVEhEe2d5dG-54qhbg,4049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j-1EhEe2d5dG-54qhbg,4049, -https://jazz.ibm.com:9443/rm/resources/TX_9rfhklEhEe2d5dG-54qhbg,4050,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rb3MVEhEe2d5dG-54qhbg,4049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8VEhEe2d5dG-54qhbg,4050, +https://jazz.ibm.com:9443/rm/resources/TX_9rfhklEhEe2d5dG-54qhbg,4050,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rdFVlEhEe2d5dG-54qhbg,4051,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,4051, https://jazz.ibm.com:9443/rm/resources/TX_9re6gFEhEe2d5dG-54qhbg,4052,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBr1EhEe2d5dG-54qhbg,4052, -https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kDFEhEe2d5dG-54qhbg,4053, +https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rgvsFEhEe2d5dG-54qhbg,4054,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,4054, -https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_FEhEe2d5dG-54qhbg,4055, +https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rhWwFEhEe2d5dG-54qhbg,4056,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpoVEhEe2d5dG-54qhbg,4056, -https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvl1EhEe2d5dG-54qhbg,4057, +https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rik4FEhEe2d5dG-54qhbg,4058,/Use Case Content/Actors https://jazz.ibm.com:9443/rm/resources/TX_9rmPQVEhEe2d5dG-54qhbg,4059,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,4059, -https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060, -https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7VEhEe2d5dG-54qhbg,4061, +https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rloNFEhEe2d5dG-54qhbg,4062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,4062, https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts @@ -365,8 +365,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rp5oVEhEe2d5dG-54qhbg,4072,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9pWMn1EhEe2d5dG-54qhbg,4072, https://jazz.ibm.com:9443/rm/resources/TX_9rru0FEhEe2d5dG-54qhbg,4073,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMlVEhEe2d5dG-54qhbg,4073, -https://jazz.ibm.com:9443/rm/resources/TX_9rp5oFEhEe2d5dG-54qhbg,4074,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kCVEhEe2d5dG-54qhbg,4074, +https://jazz.ibm.com:9443/rm/resources/TX_9rp5oFEhEe2d5dG-54qhbg,4074,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rrHwVEhEe2d5dG-54qhbg,4075,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMiVEhEe2d5dG-54qhbg,4075, https://jazz.ibm.com:9443/rm/resources/TX_9rs88VEhEe2d5dG-54qhbg,4076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -374,8 +374,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,4076, https://jazz.ibm.com:9443/rm/resources/TX_9ruLEFEhEe2d5dG-54qhbg,4077,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnFEhEe2d5dG-54qhbg,4077, https://jazz.ibm.com:9443/rm/resources/TX_9rtkAVEhEe2d5dG-54qhbg,4078,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079, +https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCp1EhEe2d5dG-54qhbg,4080, https://jazz.ibm.com:9443/rm/resources/TX_9rwAQFEhEe2d5dG-54qhbg,4081,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -387,26 +387,26 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rvZMFEhEe2d5dG-54qhbg,4083,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBhlEhEe2d5dG-54qhbg,4083, https://jazz.ibm.com:9443/rm/resources/TX_9rvZMVEhEe2d5dG-54qhbg,4084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,4084, -https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mLVEhEe2d5dG-54qhbg,4085, +https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rxOYFEhEe2d5dG-54qhbg,4086,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMkVEhEe2d5dG-54qhbg,4086, -https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8FEhEe2d5dG-54qhbg,4087, -https://jazz.ibm.com:9443/rm/resources/TX_9rwnUVEhEe2d5dG-54qhbg,4088,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCn1EhEe2d5dG-54qhbg,4088, -https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rwnUVEhEe2d5dG-54qhbg,4088,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mLlEhEe2d5dG-54qhbg,4089, +https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090, -https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091, +https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,4092, https://jazz.ibm.com:9443/rm/resources/TX_9r2G4FEhEe2d5dG-54qhbg,4093,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCpVEhEe2d5dG-54qhbg,4093, -https://jazz.ibm.com:9443/rm/resources/TX_9r1f0FEhEe2d5dG-54qhbg,4094,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j41EhEe2d5dG-54qhbg,4094, +https://jazz.ibm.com:9443/rm/resources/TX_9r1f0FEhEe2d5dG-54qhbg,4094,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9r0RsFEhEe2d5dG-54qhbg,4095,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_91EhEe2d5dG-54qhbg,4095, https://jazz.ibm.com:9443/rm/resources/TX_9rzqoFEhEe2d5dG-54qhbg,4096,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -456,8 +456,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9ovvklEhEe2d5dG-54qhbg,4117, https://jazz.ibm.com:9443/rm/resources/TX_9sBGAlEhEe2d5dG-54qhbg,4118,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCq1EhEe2d5dG-54qhbg,4118, -https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmFEhEe2d5dG-54qhbg,4119, +https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sBGAFEhEe2d5dG-54qhbg,4120,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8lEhEe2d5dG-54qhbg,4120, https://jazz.ibm.com:9443/rm/resources/TX_9sBtEFEhEe2d5dG-54qhbg,4121,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -472,112 +472,112 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,4125,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,4125, https://jazz.ibm.com:9443/rm/resources/TX_9sFXcFEhEe2d5dG-54qhbg,4126,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_FEhEe2d5dG-54qhbg,4126, -https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127, +https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBx1EhEe2d5dG-54qhbg,4127, https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128, -https://jazz.ibm.com:9443/rm/resources/TX_9sF-gFEhEe2d5dG-54qhbg,4129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7lEhEe2d5dG-54qhbg,4129, +https://jazz.ibm.com:9443/rm/resources/TX_9sF-gFEhEe2d5dG-54qhbg,4129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sEwYFEhEe2d5dG-54qhbg,4130,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,4130, https://jazz.ibm.com:9443/rm/resources/TX_9sJB0VEhEe2d5dG-54qhbg,4131,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBglEhEe2d5dG-54qhbg,4131, https://jazz.ibm.com:9443/rm/resources/TX_9sEJUFEhEe2d5dG-54qhbg,4132,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBpFEhEe2d5dG-54qhbg,4132, -https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7FEhEe2d5dG-54qhbg,4133, +https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sIawFEhEe2d5dG-54qhbg,4134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sOhYFEhEe2d5dG-54qhbg,4135,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBsFEhEe2d5dG-54qhbg,4135, -https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mM1EhEe2d5dG-54qhbg,4136, +https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,4137,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,4137, -https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBlEhEe2d5dG-54qhbg,4138, +https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sPIcVEhEe2d5dG-54qhbg,4139,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBilEhEe2d5dG-54qhbg,4139, https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,4140,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,4140, https://jazz.ibm.com:9443/rm/resources/TX_9sRksFEhEe2d5dG-54qhbg,4141,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmVEhEe2d5dG-54qhbg,4142, +https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sTZ4FEhEe2d5dG-54qhbg,4143,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBh1EhEe2d5dG-54qhbg,4143, -https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCmVEhEe2d5dG-54qhbg,4144, +https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sQWllEhEe2d5dG-54qhbg,4145,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBkFEhEe2d5dG-54qhbg,4145, -https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRlVEhEe2d5dG-54qhbg,4146, +https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sVPEFEhEe2d5dG-54qhbg,4147,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBuVEhEe2d5dG-54qhbg,4147, https://jazz.ibm.com:9443/rm/resources/TX_9sUoAFEhEe2d5dG-54qhbg,4148,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148, -https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o-ZE1EhEe2d5dG-54qhbg,4149, -https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mJFEhEe2d5dG-54qhbg,4150, +https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sYSYVEhEe2d5dG-54qhbg,4151,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnVEhEe2d5dG-54qhbg,4151, https://jazz.ibm.com:9443/rm/resources/TX_9sXrUFEhEe2d5dG-54qhbg,4152,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBg1EhEe2d5dG-54qhbg,4152, https://jazz.ibm.com:9443/rm/resources/TX_9sb8wFEhEe2d5dG-54qhbg,4153,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMm1EhEe2d5dG-54qhbg,4153, -https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRllEhEe2d5dG-54qhbg,4154, +https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,4154, https://jazz.ibm.com:9443/rm/resources/TX_9sauoFEhEe2d5dG-54qhbg,4155,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBwlEhEe2d5dG-54qhbg,4155, -https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kB1EhEe2d5dG-54qhbg,4156, -https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMnlEhEe2d5dG-54qhbg,4157, -https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpolEhEe2d5dG-54qhbg,4158, +https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sgOMFEhEe2d5dG-54qhbg,4159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMmVEhEe2d5dG-54qhbg,4159, https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,4160, -https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRkVEhEe2d5dG-54qhbg,4161, -https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_VEhEe2d5dG-54qhbg,4162, -https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163, +https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9shcUFEhEe2d5dG-54qhbg,4164,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-FEhEe2d5dG-54qhbg,4164, https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-lEhEe2d5dG-54qhbg,4165, -https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166, -https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j6VEhEe2d5dG-54qhbg,4167, +https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9skfoFEhEe2d5dG-54qhbg,4168,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBoFEhEe2d5dG-54qhbg,4168, https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,4169, -https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRlFEhEe2d5dG-54qhbg,4170, +https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sni8FEhEe2d5dG-54qhbg,4171,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS9FEhEe2d5dG-54qhbg,4171, -https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172, -https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCnVEhEe2d5dG-54qhbg,4173, -https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCmFEhEe2d5dG-54qhbg,4174, +https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMklEhEe2d5dG-54qhbg,4175, -https://jazz.ibm.com:9443/rm/resources/TX_9sltwlEhEe2d5dG-54qhbg,4176,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmVEhEe2d5dG-54qhbg,4176, +https://jazz.ibm.com:9443/rm/resources/TX_9sltwlEhEe2d5dG-54qhbg,4176,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMllEhEe2d5dG-54qhbg,4177, https://jazz.ibm.com:9443/rm/resources/TX_9soKAFEhEe2d5dG-54qhbg,4178,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBk1EhEe2d5dG-54qhbg,4178, -https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8lEhEe2d5dG-54qhbg,4179, +https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180, https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -586,38 +586,38 @@ https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182, https://jazz.ibm.com:9443/rm/resources/TX_9stCgFEhEe2d5dG-54qhbg,4183,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMi1EhEe2d5dG-54qhbg,4183, -https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCrFEhEe2d5dG-54qhbg,4184, +https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9swF0FEhEe2d5dG-54qhbg,4185,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBslEhEe2d5dG-54qhbg,4185, https://jazz.ibm.com:9443/rm/resources/TX_9sqmQFEhEe2d5dG-54qhbg,4186,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBpVEhEe2d5dG-54qhbg,4186, https://jazz.ibm.com:9443/rm/resources/TX_9stpkFEhEe2d5dG-54qhbg,4187,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,4187, -https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,4188, -https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189, -https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190, -https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191, +https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBrVEhEe2d5dG-54qhbg,4192, -https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCrVEhEe2d5dG-54qhbg,4193, -https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,4194, +https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpoFEhEe2d5dG-54qhbg,4195, https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,4196, -https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197, +https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198, -https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o-ZEVEhEe2d5dG-54qhbg,4199, +https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200, https://jazz.ibm.com:9443/rm/resources/TX_9s4BoFEhEe2d5dG-54qhbg,4201,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -637,32 +637,32 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,4207, https://jazz.ibm.com:9443/rm/resources/TX_9s-IQFEhEe2d5dG-54qhbg,4208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBolEhEe2d5dG-54qhbg,4208, https://jazz.ibm.com:9443/rm/resources/TX_9s_WYFEhEe2d5dG-54qhbg,4209,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210, +https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_lEhEe2d5dG-54qhbg,4211, -https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212, +https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBwVEhEe2d5dG-54qhbg,4213, -https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mIlEhEe2d5dG-54qhbg,4214, +https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tDAwFEhEe2d5dG-54qhbg,4215,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMoVEhEe2d5dG-54qhbg,4215, -https://jazz.ibm.com:9443/rm/resources/TX_9tDn0FEhEe2d5dG-54qhbg,4216,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kDVEhEe2d5dG-54qhbg,4216, +https://jazz.ibm.com:9443/rm/resources/TX_9tDn0FEhEe2d5dG-54qhbg,4216,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,4217, -https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvk1EhEe2d5dG-54qhbg,4218, +https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219, https://jazz.ibm.com:9443/rm/resources/TX_9tIgUVEhEe2d5dG-54qhbg,4220,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,4220, https://jazz.ibm.com:9443/rm/resources/TX_9tJHYFEhEe2d5dG-54qhbg,4221,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBtlEhEe2d5dG-54qhbg,4221, -https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMVEhEe2d5dG-54qhbg,4222, +https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tKVgFEhEe2d5dG-54qhbg,4223,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBtFEhEe2d5dG-54qhbg,4223, https://jazz.ibm.com:9443/rm/resources/TX_9tNY0FEhEe2d5dG-54qhbg,4224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -671,69 +671,70 @@ https://jazz.ibm.com:9443/rm/resources/TX_9tLjoFEhEe2d5dG-54qhbg,4225,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBqlEhEe2d5dG-54qhbg,4225, https://jazz.ibm.com:9443/rm/resources/TX_9tMKsFEhEe2d5dG-54qhbg,4226,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBl1EhEe2d5dG-54qhbg,4226, -https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvlFEhEe2d5dG-54qhbg,4227, +https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tRqQFEhEe2d5dG-54qhbg,4228,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBq1EhEe2d5dG-54qhbg,4228, https://jazz.ibm.com:9443/rm/resources/TX_9tQcIFEhEe2d5dG-54qhbg,4229,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvVEhEe2d5dG-54qhbg,4229, https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,4230, -https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j91EhEe2d5dG-54qhbg,4231, +https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMnFEhEe2d5dG-54qhbg,4232, -https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNColEhEe2d5dG-54qhbg,4233, +https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tUtkFEhEe2d5dG-54qhbg,4234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBlFEhEe2d5dG-54qhbg,4234, https://jazz.ibm.com:9443/rm/resources/TX_9tXJ0FEhEe2d5dG-54qhbg,4235,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvFEhEe2d5dG-54qhbg,4235, -https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j61EhEe2d5dG-54qhbg,4236, -https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mKFEhEe2d5dG-54qhbg,4237, +https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tY_AFEhEe2d5dG-54qhbg,4238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBllEhEe2d5dG-54qhbg,4238, -https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCm1EhEe2d5dG-54qhbg,4239, +https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,4240, -https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241, -https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kClEhEe2d5dG-54qhbg,4242, -https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMhVEhEe2d5dG-54qhbg,4243, -https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j9VEhEe2d5dG-54qhbg,4244, -https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvlVEhEe2d5dG-54qhbg,4245, -https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j-FEhEe2d5dG-54qhbg,4246, -https://jazz.ibm.com:9443/rm/resources/TX_9tfFoFEhEe2d5dG-54qhbg,4247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j4VEhEe2d5dG-54qhbg,4247, -https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tfFoFEhEe2d5dG-54qhbg,4247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCllEhEe2d5dG-54qhbg,4248, -https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBVEhEe2d5dG-54qhbg,4249, -https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mNFEhEe2d5dG-54qhbg,4250, +https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8VEhEe2d5dG-54qhbg,4251, -https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjFEhEe2d5dG-54qhbg,4252, -https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j81EhEe2d5dG-54qhbg,4253, +https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tiI8FEhEe2d5dG-54qhbg,4254,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,4254, -https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j9FEhEe2d5dG-54qhbg,4255, +https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tlMQFEhEe2d5dG-54qhbg,4256,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-VEhEe2d5dG-54qhbg,4256, -https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_1EhEe2d5dG-54qhbg,4257, -https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMFEhEe2d5dG-54qhbg,4258, +https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259, +https://jazz.ibm.com:9443/rm/resources/TX_VjAoYNSMEe2AXbPl8fn2Aw,4738,/00 Admin/newfoldername113 diff --git a/elmclient/tests/results/test119.csv b/elmclient/tests/results/test119.csv index 08029e2..9a15024 100644 --- a/elmclient/tests/results/test119.csv +++ b/elmclient/tests/results/test119.csv @@ -1,65 +1,65 @@ -$uri,Accepted,Contributor,Created On,Creator,Identifier,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://jazz.net/ns/rm/navigation#parent,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/TX_9qSAoFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3914,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3914,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9qW5IFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,3926,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,3926,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9qc_wFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,3939,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQ1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,3939,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9qdm0FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,3941,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punIVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,3941,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9qe08VEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,3943,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punH1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,3943,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9qjGZlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3954,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3954,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9qmJsFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,3959,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,3959,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9qyW8FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,3972,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,3972,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9qxv4FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,3974,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,3974,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9q9WEFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,3986,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,3986,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9rCOkFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,3996,2022-10-21T09:23:07.136Z,The meter interface unit shall store data for a defined period while powered off.,Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punM1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,3996,2022-10-21T09:23:07.136Z,The meter interface unit shall store data for a defined period while powered off.,Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9rC1oVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.141Z,https://jazz.ibm.com:9443/jts/users/ibm,3998,2022-10-21T09:23:07.141Z,The control computer must be capable of residing as a node on the City’s existing network.,Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punP1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.141Z,https://jazz.ibm.com:9443/jts/users/ibm,3998,2022-10-21T09:23:07.141Z,The control computer must be capable of residing as a node on the City’s existing network.,Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9rEq0FEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,4003,2022-10-21T09:23:07.129Z,Update client address and meter location information.,Approved,Update client address and meter location information.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punIFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,4003,2022-10-21T09:23:07.129Z,Update client address and meter location information.,Approved,Update client address and meter location information.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9rI8QVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,4011,2022-10-21T09:23:07.123Z,The meter interface shall detect water leaks and record leak status with the account data.,Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punNVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,4011,2022-10-21T09:23:07.123Z,The meter interface shall detect water leaks and record leak status with the account data.,Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9rPC4FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,4023,2022-10-21T09:23:07.109Z,The server shall communicate with the existing billing software.,Approved,The server shall communicate with the existing billing software.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punPVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,4023,2022-10-21T09:23:07.109Z,The server shall communicate with the existing billing software.,Approved,The server shall communicate with the existing billing software.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9rSGMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,4033,2022-10-21T09:23:07.119Z,The handheld device shall have a mechanism to recharge the unit.,Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punIlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,4033,2022-10-21T09:23:07.119Z,The handheld device shall have a mechanism to recharge the unit.,Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9rdsYFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,4047,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,4047,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9rloNFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,4062,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,4062,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9r6_YFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,4107,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,4107,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,4125,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,4125,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4128,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4128,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9sEwYFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,4130,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,4130,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,4137,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,4137,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4140,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4140,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,4160,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,4160,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,4182,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,4182,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9s6d4FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4204,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4204,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9s9hMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,4207,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,4207,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4217,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4217,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,4219,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,4219,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4230,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4230,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,4259,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,4259,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement +$uri,Accepted,Contributor,Created On,Creator,Identifier,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://jazz.net/ns/rm/navigation#parent,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape +https://jazz.ibm.com:9443/rm/resources/TX_9qSAoFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3914,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3914,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9qW5IFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,3926,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,3926,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQ1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,3939,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9qc_wFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,3939,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punIVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,3941,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9qdm0FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,3941,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9qe08VEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,3943,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punH1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,3943,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3954,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9qjGZlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3954,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9qmJsFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,3959,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,3959,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9qyW8FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,3972,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,3972,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,3974,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9qxv4FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,3974,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9q9WEFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,3986,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,3986,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punM1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,3996,2022-10-21T09:23:07.136Z,The meter interface unit shall store data for a defined period while powered off.,Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9rCOkFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,3996,2022-10-21T09:23:07.136Z,The meter interface unit shall store data for a defined period while powered off.,Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punP1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.141Z,https://jazz.ibm.com:9443/jts/users/ibm,3998,2022-10-21T09:23:07.141Z,The control computer must be capable of residing as a node on the City’s existing network.,Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9rC1oVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.141Z,https://jazz.ibm.com:9443/jts/users/ibm,3998,2022-10-21T09:23:07.141Z,The control computer must be capable of residing as a node on the City’s existing network.,Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punIFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,4003,2022-10-21T09:23:07.129Z,Update client address and meter location information.,Approved,Update client address and meter location information.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9rEq0FEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,4003,2022-10-21T09:23:07.129Z,Update client address and meter location information.,Approved,Update client address and meter location information.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punNVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,4011,2022-10-21T09:23:07.123Z,The meter interface shall detect water leaks and record leak status with the account data.,Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9rI8QVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,4011,2022-10-21T09:23:07.123Z,The meter interface shall detect water leaks and record leak status with the account data.,Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punPVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,4023,2022-10-21T09:23:07.109Z,The server shall communicate with the existing billing software.,Approved,The server shall communicate with the existing billing software.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9rPC4FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,4023,2022-10-21T09:23:07.109Z,The server shall communicate with the existing billing software.,Approved,The server shall communicate with the existing billing software.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punIlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,4033,2022-10-21T09:23:07.119Z,The handheld device shall have a mechanism to recharge the unit.,Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9rSGMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,4033,2022-10-21T09:23:07.119Z,The handheld device shall have a mechanism to recharge the unit.,Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9rdsYFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,4047,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,4047,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,4062,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9rloNFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,4062,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9r6_YFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,4107,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,4107,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,4125,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,4125,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4128,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4128,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9sEwYFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,4130,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,4130,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,4137,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,4137,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4140,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4140,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,4160,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,4160,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,4182,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,4182,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9s6d4FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4204,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4204,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9s9hMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,4207,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,4207,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4217,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4217,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,4219,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,4219,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4230,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4230,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,4259,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,4259,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test121.csv b/elmclient/tests/results/test121.csv index 843fb4d..e63a27c 100644 --- a/elmclient/tests/results/test121.csv +++ b/elmclient/tests/results/test121.csv @@ -57,26 +57,26 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rC1oVEhEe2d5dG-54qhbg,3998,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punP1EhEe2d5dG-54qhbg,3998, https://jazz.ibm.com:9443/rm/resources/TX_9rEq0FEhEe2d5dG-54qhbg,4003,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punIFEhEe2d5dG-54qhbg,4003, -https://jazz.ibm.com:9443/rm/resources/TX_9rI8QVEhEe2d5dG-54qhbg,4011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punNVEhEe2d5dG-54qhbg,4011, +https://jazz.ibm.com:9443/rm/resources/TX_9rI8QVEhEe2d5dG-54qhbg,4011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pDRnFEhEe2d5dG-54qhbg,4015, https://jazz.ibm.com:9443/rm/resources/TX_9rL_kFEhEe2d5dG-54qhbg,4015,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punJ1EhEe2d5dG-54qhbg,4015, -https://jazz.ibm.com:9443/rm/resources/BI_9pDRnFEhEe2d5dG-54qhbg,4015, -https://jazz.ibm.com:9443/rm/resources/TX_9rPC4FEhEe2d5dG-54qhbg,4023,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punPVEhEe2d5dG-54qhbg,4023, -https://jazz.ibm.com:9443/rm/resources/TX_9rPp8FEhEe2d5dG-54qhbg,4025,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rPC4FEhEe2d5dG-54qhbg,4023,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punC1EhEe2d5dG-54qhbg,4025, +https://jazz.ibm.com:9443/rm/resources/TX_9rPp8FEhEe2d5dG-54qhbg,4025,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rQ4EVEhEe2d5dG-54qhbg,4027,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punDlEhEe2d5dG-54qhbg,4027, https://jazz.ibm.com:9443/rm/resources/TX_9rSGMFEhEe2d5dG-54qhbg,4033,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punIlEhEe2d5dG-54qhbg,4033, -https://jazz.ibm.com:9443/rm/resources/TX_9rUicFEhEe2d5dG-54qhbg,4035,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punK1EhEe2d5dG-54qhbg,4035, -https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rUicFEhEe2d5dG-54qhbg,4035,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmFEhEe2d5dG-54qhbg,4041, +https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,4041, -https://jazz.ibm.com:9443/rm/resources/TX_9rZa8FEhEe2d5dG-54qhbg,4042,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRnlEhEe2d5dG-54qhbg,4042, +https://jazz.ibm.com:9443/rm/resources/TX_9rZa8FEhEe2d5dG-54qhbg,4042,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punKVEhEe2d5dG-54qhbg,4042, https://jazz.ibm.com:9443/rm/resources/TX_9rapEFEhEe2d5dG-54qhbg,4043,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puABVEhEe2d5dG-54qhbg,4043, @@ -90,8 +90,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,4062, https://jazz.ibm.com:9443/rm/resources/TX_9rm2UFEhEe2d5dG-54qhbg,4065,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,4065, https://jazz.ibm.com:9443/rm/resources/TX_9ruyIFEhEe2d5dG-54qhbg,4082,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,4082, https://jazz.ibm.com:9443/rm/resources/BI_9pDRmlEhEe2d5dG-54qhbg,4082, +https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,4082, https://jazz.ibm.com:9443/rm/resources/TX_9r6_YFEhEe2d5dG-54qhbg,4107,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,4107, https://jazz.ibm.com:9443/rm/resources/TX_9r5KMFEhEe2d5dG-54qhbg,4108,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -122,14 +122,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,4160, https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRlFEhEe2d5dG-54qhbg,4170, -https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180, -https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182, -https://jazz.ibm.com:9443/rm/resources/TX_9stpkFEhEe2d5dG-54qhbg,4187,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,4187, -https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9stpkFEhEe2d5dG-54qhbg,4187,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,4188, +https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,4196, https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts @@ -139,11 +139,12 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,4204, https://jazz.ibm.com:9443/rm/resources/TX_9s9hMFEhEe2d5dG-54qhbg,4207,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,4207, https://jazz.ibm.com:9443/rm/resources/TX_9s_WYFEhEe2d5dG-54qhbg,4209,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,4217, -https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219, -https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,4230, -https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259, +https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VjAoYNSMEe2AXbPl8fn2Aw,4738,/00 Admin/newfoldername113 diff --git a/elmclient/tests/results/test124.csv b/elmclient/tests/results/test124.csv index 5cdc9dd..a00a882 100644 --- a/elmclient/tests/results/test124.csv +++ b/elmclient/tests/results/test124.csv @@ -159,8 +159,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9q7g4VEhEe2d5dG-54qhbg,3985,"The handh https://jazz.ibm.com:9443/rm/resources/BI_9qHBxFEhEe2d5dG-54qhbg,3985,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9q9WEFEhEe2d5dG-54qhbg,3986,The processing servers/computers in the system shall run in a network configuration.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,3986,The processing servers/computers in the system shall run in a network configuration.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9q8vAFEhEe2d5dG-54qhbg,3987,Some text,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,3987,Some text,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9q8vAFEhEe2d5dG-54qhbg,3987,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,3987,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9q99IFEhEe2d5dG-54qhbg,3988,References,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j5VEhEe2d5dG-54qhbg,3988,References,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rBAcFEhEe2d5dG-54qhbg,3989,Brazil,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -369,8 +369,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,External W https://jazz.ibm.com:9443/rm/resources/BI_9p5mLlEhEe2d5dG-54qhbg,4089,External Weather,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,Scope,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,Data Elements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091,Data Elements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,Data Elements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,Scope of the System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,4092,Scope of the System,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r2G4FEhEe2d5dG-54qhbg,4093,Design Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading @@ -447,16 +447,16 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127,Any supple https://jazz.ibm.com:9443/rm/resources/BI_9qHBx1EhEe2d5dG-54qhbg,4127,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128,The AMR system shall have an operational life of no less than five years.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9sF-gFEhEe2d5dG-54qhbg,4129,Functional Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j7lEhEe2d5dG-54qhbg,4129,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9sF-gFEhEe2d5dG-54qhbg,4129,Functional Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sEwYFEhEe2d5dG-54qhbg,4130,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,4130,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sJB0VEhEe2d5dG-54qhbg,4131,Purpose of the Document,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qHBglEhEe2d5dG-54qhbg,4131,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sEJUFEhEe2d5dG-54qhbg,4132,The meter interface shall detect water leaks and record leak status with the account data.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBpFEhEe2d5dG-54qhbg,4132,The meter interface shall detect water leaks and record leak status with the account data.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,Assumptions and Dependencies,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j7FEhEe2d5dG-54qhbg,4133,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,Assumptions and Dependencies,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sIawFEhEe2d5dG-54qhbg,4134,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sOhYFEhEe2d5dG-54qhbg,4135,Control Computer,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qHBsFEhEe2d5dG-54qhbg,4135,Control Computer,,http://jazz.net/ns/rm#Text,Heading @@ -464,15 +464,15 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,Adequate w https://jazz.ibm.com:9443/rm/resources/BI_9p5mM1EhEe2d5dG-54qhbg,4136,Adequate wireless spectrum control,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,4137,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,4137,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,Availability,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kBlEhEe2d5dG-54qhbg,4138,Availability,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,Availability,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sPIcVEhEe2d5dG-54qhbg,4139,Environmental Considerations,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qHBilEhEe2d5dG-54qhbg,4139,Environmental Considerations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,4140,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,4140,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sRksFEhEe2d5dG-54qhbg,4141,Automatic Meter Reader,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,Success End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9ovvmVEhEe2d5dG-54qhbg,4142,Success End Condition,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,Success End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sTZ4FEhEe2d5dG-54qhbg,4143,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9qHBh1EhEe2d5dG-54qhbg,4143,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,Product Functions,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading @@ -485,8 +485,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sVPEFEhEe2d5dG-54qhbg,4147,"Warranty https://jazz.ibm.com:9443/rm/resources/BI_9qHBuVEhEe2d5dG-54qhbg,4147,"Warranty - 3 years parts on-site labor, next business day",,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sUoAFEhEe2d5dG-54qhbg,4148,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,Picture or Whitepaper,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o-ZE1EhEe2d5dG-54qhbg,4149,Picture or Whitepaper,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,Picture or Whitepaper,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,Pinch Areas,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/BI_9p5mJFEhEe2d5dG-54qhbg,4150,Pinch Areas,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sYSYVEhEe2d5dG-54qhbg,4151,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement @@ -500,8 +500,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pDRllEhEe2d5dG-54qhbg,4154,Any portab https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,4154,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sauoFEhEe2d5dG-54qhbg,4155,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBwlEhEe2d5dG-54qhbg,4155,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,Security,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kB1EhEe2d5dG-54qhbg,4156,Security,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,Security,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,Alternate Flows,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMnlEhEe2d5dG-54qhbg,4157,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,Appendixes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading @@ -514,22 +514,22 @@ https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,Reusable r https://jazz.ibm.com:9443/rm/resources/BI_9pDRkVEhEe2d5dG-54qhbg,4161,Reusable requirements for the AMR project,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,User Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j_VEhEe2d5dG-54qhbg,4162,User Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9shcUFEhEe2d5dG-54qhbg,4164,Precedence and criticality of requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS-FEhEe2d5dG-54qhbg,4164,Precedence and criticality of requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,Requirements traceability,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS-lEhEe2d5dG-54qhbg,4165,Requirements traceability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,Standards Compliance,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,Product Functions,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,Standards Compliance,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j6VEhEe2d5dG-54qhbg,4167,Product Functions,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,Product Functions,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9skfoFEhEe2d5dG-54qhbg,4168,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBoFEhEe2d5dG-54qhbg,4168,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,Product Perspective,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,4169,Product Perspective,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9pDRlFEhEe2d5dG-54qhbg,4170,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sni8FEhEe2d5dG-54qhbg,4171,Referenced documents,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS9FEhEe2d5dG-54qhbg,4171,Referenced documents,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,Security,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading @@ -546,8 +546,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,6. The usa https://jazz.ibm.com:9443/rm/resources/BI_9pWMllEhEe2d5dG-54qhbg,4177,6. The usage data is displayed on the handheld device.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9soKAFEhEe2d5dG-54qhbg,4178,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBk1EhEe2d5dG-54qhbg,4178,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9o8j8lEhEe2d5dG-54qhbg,4179,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,,http://jazz.net/ns/rm#Text,System Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,Support conservation monitoring and enforcement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180,Support conservation monitoring and enforcement,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,Performance,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -568,8 +568,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,Maximizati https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,4188,Maximization of existing investments in meter reading technology,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,It is assumed that Meter Reader is within range of the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189,It is assumed that Meter Reader is within range of the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement @@ -586,8 +586,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,Main Flow, https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,Goal,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198,Goal,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,Carbon Trust Standard,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o-ZEVEhEe2d5dG-54qhbg,4199,Carbon Trust Standard,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,Carbon Trust Standard,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9s4BoFEhEe2d5dG-54qhbg,4201,"Meter Reader, Water Meter",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information @@ -607,32 +607,32 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,4207,The handhe https://jazz.ibm.com:9443/rm/resources/TX_9s-IQFEhEe2d5dG-54qhbg,4208,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBolEhEe2d5dG-54qhbg,4208,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9s_WYFEhEe2d5dG-54qhbg,4209,Meter reading in the most cost effective manner possible.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,Trigger,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210,Trigger,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,Trigger,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS_lEhEe2d5dG-54qhbg,4211,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,Availability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212,Availability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBwVEhEe2d5dG-54qhbg,4213,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,Physical Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9p5mIlEhEe2d5dG-54qhbg,4214,Physical Hazards,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,Physical Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tDAwFEhEe2d5dG-54qhbg,4215,11a. The Meter Reader can press a button to clear the faults.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMoVEhEe2d5dG-54qhbg,4215,11a. The Meter Reader can press a button to clear the faults.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_9tDn0FEhEe2d5dG-54qhbg,4216,Appendixes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kDVEhEe2d5dG-54qhbg,4216,Appendixes,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tDn0FEhEe2d5dG-54qhbg,4216,Appendixes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,The meter interface unit shall be compatible with MMIU.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,4217,The meter interface unit shall be compatible with MMIU.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,Goal,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9ovvk1EhEe2d5dG-54qhbg,4218,Goal,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,Goal,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,The handheld device shall allow for the meter reader to collect and store information from the meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219,The handheld device shall allow for the meter reader to collect and store information from the meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tIgUVEhEe2d5dG-54qhbg,4220,ANSI 1252 Latin 1 for CSV Export,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,4220,ANSI 1252 Latin 1 for CSV Export,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9tJHYFEhEe2d5dG-54qhbg,4221,Database Server,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qHBtlEhEe2d5dG-54qhbg,4221,Database Server,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,External Communications,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9p5mMVEhEe2d5dG-54qhbg,4222,External Communications,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,External Communications,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tKVgFEhEe2d5dG-54qhbg,4223,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBtFEhEe2d5dG-54qhbg,4223,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tNY0FEhEe2d5dG-54qhbg,4224,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement @@ -641,69 +641,70 @@ https://jazz.ibm.com:9443/rm/resources/TX_9tLjoFEhEe2d5dG-54qhbg,4225,"The syste https://jazz.ibm.com:9443/rm/resources/BI_9qHBqlEhEe2d5dG-54qhbg,4225,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tMKsFEhEe2d5dG-54qhbg,4226,The handheld device shall include a leak indicator.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBl1EhEe2d5dG-54qhbg,4226,The handheld device shall include a leak indicator.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9ovvlFEhEe2d5dG-54qhbg,4227,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9tRqQFEhEe2d5dG-54qhbg,4228,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qHBq1EhEe2d5dG-54qhbg,4228,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tQcIFEhEe2d5dG-54qhbg,4229,The handheld unit shall function in environments from -5 degree C through +50 degree C.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBvVEhEe2d5dG-54qhbg,4229,The handheld unit shall function in environments from -5 degree C through +50 degree C.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,The meter interface shall log leakage data on the central office data store.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,4230,The meter interface shall log leakage data on the central office data store.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9o8j91EhEe2d5dG-54qhbg,4231,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,,http://jazz.net/ns/rm#Text,System Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,11. The fault status is displayed on a screen.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMnFEhEe2d5dG-54qhbg,4232,11. The fault status is displayed on a screen.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,Software Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNColEhEe2d5dG-54qhbg,4233,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,Software Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tUtkFEhEe2d5dG-54qhbg,4234,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBlFEhEe2d5dG-54qhbg,4234,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tXJ0FEhEe2d5dG-54qhbg,4235,The handheld unit shall have a mass no greater than 2.25kg.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBvFEhEe2d5dG-54qhbg,4235,The handheld unit shall have a mass no greater than 2.25kg.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,General Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j61EhEe2d5dG-54qhbg,4236,General Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,Future AMR handheld mass growth,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,General Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9p5mKFEhEe2d5dG-54qhbg,4237,Future AMR handheld mass growth,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,Future AMR handheld mass growth,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tY_AFEhEe2d5dG-54qhbg,4238,The handheld device shall be able to recharge using solar power.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBllEhEe2d5dG-54qhbg,4238,The handheld device shall be able to recharge using solar power.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,General Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCm1EhEe2d5dG-54qhbg,4239,General Constraints,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,General Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,4240,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,"Primary, Secondary Actors",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,Other Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kClEhEe2d5dG-54qhbg,4242,Other Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,Other Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,Scope & Level,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMhVEhEe2d5dG-54qhbg,4243,Scope & Level,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,detectLeak,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j9VEhEe2d5dG-54qhbg,4244,detectLeak,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,Scope & Level,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,detectLeak,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9ovvlVEhEe2d5dG-54qhbg,4245,Scope & Level,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,Scope & Level,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j-FEhEe2d5dG-54qhbg,4246,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,,http://jazz.net/ns/rm#Text,System Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tfFoFEhEe2d5dG-54qhbg,4247,Introduction,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j4VEhEe2d5dG-54qhbg,4247,Introduction,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,Overview,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCllEhEe2d5dG-54qhbg,4248,Overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,Attributes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kBVEhEe2d5dG-54qhbg,4249,Attributes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,Inadequate wireless coverage for all customers,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,Attributes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9p5mNFEhEe2d5dG-54qhbg,4250,Inadequate wireless coverage for all customers,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,Identification,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,Inadequate wireless coverage for all customers,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/BI_9qLS8VEhEe2d5dG-54qhbg,4251,Identification,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,Identification,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMjFEhEe2d5dG-54qhbg,4252,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9o8j81EhEe2d5dG-54qhbg,4253,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,,http://jazz.net/ns/rm#Text,System Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tiI8FEhEe2d5dG-54qhbg,4254,Assumptions and Dependencies,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,4254,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9o8j9FEhEe2d5dG-54qhbg,4255,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,,http://jazz.net/ns/rm#Text,System Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tlMQFEhEe2d5dG-54qhbg,4256,Qualification provisions,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS-VEhEe2d5dG-54qhbg,4256,Qualification provisions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,Software Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j_1EhEe2d5dG-54qhbg,4257,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,Humidity operational limits of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,Software Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9p5mMFEhEe2d5dG-54qhbg,4258,Humidity operational limits of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,Humidity operational limits of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,The Fixed Network Application software and data collection software must operate on a central server.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259,The Fixed Network Application software and data collection software must operate on a central server.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_VjAoYNSMEe2AXbPl8fn2Aw,4738,My first stakefilder requirement,/00 Admin/newfoldername113,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test125.csv b/elmclient/tests/results/test125.csv index 1db7a0b..42e6d25 100644 --- a/elmclient/tests/results/test125.csv +++ b/elmclient/tests/results/test125.csv @@ -80,7 +80,7 @@ https://jazz.ibm.com:9443/rm/resources/TX_9q7g4FEhEe2d5dG-54qhbg,3983,AMR Graphi https://jazz.ibm.com:9443/rm/resources/TX_9q6SwFEhEe2d5dG-54qhbg,3984,walk-by meter reading,/Terms,http://jazz.net/ns/rm#Text,Term https://jazz.ibm.com:9443/rm/resources/TX_9q7g4VEhEe2d5dG-54qhbg,3985,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9q9WEFEhEe2d5dG-54qhbg,3986,The processing servers/computers in the system shall run in a network configuration.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9q8vAFEhEe2d5dG-54qhbg,3987,Some text,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9q8vAFEhEe2d5dG-54qhbg,3987,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9q99IFEhEe2d5dG-54qhbg,3988,References,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rBAcFEhEe2d5dG-54qhbg,3989,Brazil,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9q-kMFEhEe2d5dG-54qhbg,3990,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement @@ -353,3 +353,4 @@ https://jazz.ibm.com:9443/rm/resources/TX_9tlMQFEhEe2d5dG-54qhbg,4256,Qualificat https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,Software Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,Humidity operational limits of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,The Fixed Network Application software and data collection software must operate on a central server.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_VjAoYNSMEe2AXbPl8fn2Aw,4738,My first stakefilder requirement,/00 Admin/newfoldername113,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test126.csv b/elmclient/tests/results/test126.csv index ce63da4..7333ee7 100644 --- a/elmclient/tests/results/test126.csv +++ b/elmclient/tests/results/test126.csv @@ -78,7 +78,7 @@ https://jazz.ibm.com:9443/rm/resources/BI_9qHBm1EhEe2d5dG-54qhbg,3982,Meter Inte https://jazz.ibm.com:9443/rm/resources/BI_9pwcMVEhEe2d5dG-54qhbg,3983,AMR Graphic,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qHBxFEhEe2d5dG-54qhbg,3985,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,3986,The processing servers/computers in the system shall run in a network configuration.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,3987,Some text,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,3987,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9o8j5VEhEe2d5dG-54qhbg,3988,References,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9punDFEhEe2d5dG-54qhbg,3989,Brazil,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9o8j-VEhEe2d5dG-54qhbg,3990,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,http://jazz.net/ns/rm#Text,System Requirement diff --git a/elmclient/tests/results/test127.csv b/elmclient/tests/results/test127.csv index e7b8b90..11dd53b 100644 --- a/elmclient/tests/results/test127.csv +++ b/elmclient/tests/results/test127.csv @@ -20,8 +20,8 @@ https://jazz.ibm.com:9443/rm/resources/WR_9qZVYVEhEe2d5dG-54qhbg,3902,Image 6,/B https://jazz.ibm.com:9443/rm/resources/BI_9pwcMlEhEe2d5dG-54qhbg,3902,Image 6,,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/WR_9s5PwFEhEe2d5dG-54qhbg,3903,Image 4,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/BI_9punLFEhEe2d5dG-54qhbg,3903,Image 4,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,Image 5,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,3904,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,Image 5,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/TX_9qLTC1EhEe2d5dG-54qhbg,3905,"Definitions, Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j5FEhEe2d5dG-54qhbg,3905,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qL6AFEhEe2d5dG-54qhbg,3906,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement @@ -42,8 +42,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qRZkFEhEe2d5dG-54qhbg,3913,Preconditi https://jazz.ibm.com:9443/rm/resources/BI_9pWMh1EhEe2d5dG-54qhbg,3913,Preconditions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qSAoFEhEe2d5dG-54qhbg,3914,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,3914,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/DM_9qQygVEhEe2d5dG-54qhbg,3915,Upaload Usage Data Locally,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Diagram,Diagrams and sketches https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,3915,Upaload Usage Data Locally,,http://jazz.net/ns/rm#Diagram,Diagrams and sketches +https://jazz.ibm.com:9443/rm/resources/DM_9qQygVEhEe2d5dG-54qhbg,3915,Upaload Usage Data Locally,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Diagram,Diagrams and sketches https://jazz.ibm.com:9443/rm/resources/TX_9qPkYVEhEe2d5dG-54qhbg,3916,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,3916,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9qSnsFEhEe2d5dG-54qhbg,3917,"Definitions Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -184,8 +184,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9q7g4VEhEe2d5dG-54qhbg,3985,"The handh https://jazz.ibm.com:9443/rm/resources/BI_9qHBxFEhEe2d5dG-54qhbg,3985,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9q9WEFEhEe2d5dG-54qhbg,3986,The processing servers/computers in the system shall run in a network configuration.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,3986,The processing servers/computers in the system shall run in a network configuration.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9q8vAFEhEe2d5dG-54qhbg,3987,Some text,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,3987,Some text,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9q8vAFEhEe2d5dG-54qhbg,3987,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,3987,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9q99IFEhEe2d5dG-54qhbg,3988,References,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j5VEhEe2d5dG-54qhbg,3988,References,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rBAcFEhEe2d5dG-54qhbg,3989,Brazil,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -222,16 +222,16 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rHuIVEhEe2d5dG-54qhbg,4004,"Definitio https://jazz.ibm.com:9443/rm/resources/BI_9pNClFEhEe2d5dG-54qhbg,4004,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rHHEFEhEe2d5dG-54qhbg,4005,References,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNClVEhEe2d5dG-54qhbg,4005,References,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9ovvo1EhEe2d5dG-54qhbg,4006,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rGgAFEhEe2d5dG-54qhbg,4006,Alternate Flows,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvo1EhEe2d5dG-54qhbg,4006,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rIVMFEhEe2d5dG-54qhbg,4007,Handheld device,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9punE1EhEe2d5dG-54qhbg,4007,Handheld device,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rI8QFEhEe2d5dG-54qhbg,4008,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBoVEhEe2d5dG-54qhbg,4008,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9o8j4lEhEe2d5dG-54qhbg,4009,Purpose,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,Purpose,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9ovvnlEhEe2d5dG-54qhbg,4010,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9o8j4lEhEe2d5dG-54qhbg,4009,Purpose,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rKKYFEhEe2d5dG-54qhbg,4010,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvnlEhEe2d5dG-54qhbg,4010,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9rI8QVEhEe2d5dG-54qhbg,4011,The meter interface shall detect water leaks and record leak status with the account data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punNVEhEe2d5dG-54qhbg,4011,The meter interface shall detect water leaks and record leak status with the account data.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rKKYVEhEe2d5dG-54qhbg,4012,Introduction,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -258,8 +258,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pNCnlEhEe2d5dG-54qhbg,4021,Functional https://jazz.ibm.com:9443/rm/resources/TX_9rQRAFEhEe2d5dG-54qhbg,4022,MMIU,/Terms,http://jazz.net/ns/rm#Text,Term https://jazz.ibm.com:9443/rm/resources/TX_9rPC4FEhEe2d5dG-54qhbg,4023,The server shall communicate with the existing billing software.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punPVEhEe2d5dG-54qhbg,4023,The server shall communicate with the existing billing software.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9rPp8VEhEe2d5dG-54qhbg,4024,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9ovvkVEhEe2d5dG-54qhbg,4024,,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9rPp8VEhEe2d5dG-54qhbg,4024,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rPp8FEhEe2d5dG-54qhbg,4025,The AMR system shall be approved for sale in the following markets:,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punC1EhEe2d5dG-54qhbg,4025,The AMR system shall be approved for sale in the following markets:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rQ4EFEhEe2d5dG-54qhbg,4026,Operational Environment,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -290,8 +290,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rXlwFEhEe2d5dG-54qhbg,4038,1a. During https://jazz.ibm.com:9443/rm/resources/BI_9ovvpFEhEe2d5dG-54qhbg,4038,1a. During the countdown the abort button is pressed.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9rYz4FEhEe2d5dG-54qhbg,4039,Appendix,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS_1EhEe2d5dG-54qhbg,4039,Appendix,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,Design Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kAlEhEe2d5dG-54qhbg,4040,Design Constraints,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,Design Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9pDRmFEhEe2d5dG-54qhbg,4041,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,4041,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -332,14 +332,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,Preconditi https://jazz.ibm.com:9443/rm/resources/TX_9rik4FEhEe2d5dG-54qhbg,4058,Meter Reader,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor https://jazz.ibm.com:9443/rm/resources/TX_9rmPQVEhEe2d5dG-54qhbg,4059,Usability,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,4059,Usability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,Sharp Edges,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060,Sharp Edges,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,Sharp Edges,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/BI_9o8j7VEhEe2d5dG-54qhbg,4061,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,Specific Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rloNFEhEe2d5dG-54qhbg,4062,Provide accurate meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,4062,Provide accurate meter readings,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,Electrocution,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/BI_9p5mJVEhEe2d5dG-54qhbg,4063,Electrocution,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,Electrocution,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rndYFEhEe2d5dG-54qhbg,4064,Regulatory,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,4064,Regulatory,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rm2UFEhEe2d5dG-54qhbg,4065,The handheld device shall record leakage data on the central office data store.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -375,25 +375,25 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,Hardware L https://jazz.ibm.com:9443/rm/resources/BI_9pNCp1EhEe2d5dG-54qhbg,4080,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rwAQFEhEe2d5dG-54qhbg,4081,User Characteristics,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,4081,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pDRmlEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9ruyIFEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pDRmlEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rvZMFEhEe2d5dG-54qhbg,4083,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9qHBhlEhEe2d5dG-54qhbg,4083,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9rvZMVEhEe2d5dG-54qhbg,4084,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,4084,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,Stray Animals,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/BI_9p5mLVEhEe2d5dG-54qhbg,4085,Stray Animals,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,Stray Animals,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rxOYFEhEe2d5dG-54qhbg,4086,Main Flow,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMkVEhEe2d5dG-54qhbg,4086,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j8FEhEe2d5dG-54qhbg,4087,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rwnUVEhEe2d5dG-54qhbg,4088,External Interface Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCn1EhEe2d5dG-54qhbg,4088,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,External Weather,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9p5mLlEhEe2d5dG-54qhbg,4089,External Weather,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090,Scope,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,External Weather,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,Scope,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090,Scope,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091,Data Elements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,Data Elements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,Scope of the System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -410,8 +410,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9r04wFEhEe2d5dG-54qhbg,4097,The handhe https://jazz.ibm.com:9443/rm/resources/BI_9qHBu1EhEe2d5dG-54qhbg,4097,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9r0RsVEhEe2d5dG-54qhbg,4098,The handheld unit external case shall have no sharp edges and no pointed corners.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBv1EhEe2d5dG-54qhbg,4098,The handheld unit external case shall have no sharp edges and no pointed corners.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9r2t8FEhEe2d5dG-54qhbg,4099,Overview,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j5lEhEe2d5dG-54qhbg,4099,Overview,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9r2t8FEhEe2d5dG-54qhbg,4099,Overview,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r2t8VEhEe2d5dG-54qhbg,4100,The handheld device shall provide a means to automatically (electronically) read the meter.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBmFEhEe2d5dG-54qhbg,4100,The handheld device shall provide a means to automatically (electronically) read the meter.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9r6YUFEhEe2d5dG-54qhbg,4101,The Meter Reader usage data is successfully recorded and the system updated accordingly.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information @@ -467,8 +467,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,4125,The system https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,4125,The systems shall meet the following objectives:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sFXcFEhEe2d5dG-54qhbg,4126,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS_FEhEe2d5dG-54qhbg,4126,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBx1EhEe2d5dG-54qhbg,4127,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128,The AMR system shall have an operational life of no less than five years.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -500,8 +500,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9ovvmVEhEe2d5dG-54qhbg,4142,Success En https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,Success End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sTZ4FEhEe2d5dG-54qhbg,4143,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9qHBh1EhEe2d5dG-54qhbg,4143,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9pNCmVEhEe2d5dG-54qhbg,4144,Product Functions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,Product Functions,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCmVEhEe2d5dG-54qhbg,4144,Product Functions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sQWllEhEe2d5dG-54qhbg,4145,The handheld device shall interfaces with the city's backoffice software.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBkFEhEe2d5dG-54qhbg,4145,The handheld device shall interfaces with the city's backoffice software.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9pDRlVEhEe2d5dG-54qhbg,4146,Operational Environment Requirements,,http://jazz.net/ns/rm#Text,Heading @@ -529,10 +529,10 @@ https://jazz.ibm.com:9443/rm/resources/BI_9o8kB1EhEe2d5dG-54qhbg,4156,Security,, https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,Security,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,Alternate Flows,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMnlEhEe2d5dG-54qhbg,4157,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,Appendixes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNpolEhEe2d5dG-54qhbg,4158,Appendixes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pWMmVEhEe2d5dG-54qhbg,4159,9. The system displays the leak data.,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,Appendixes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sgOMFEhEe2d5dG-54qhbg,4159,9. The system displays the leak data.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pWMmVEhEe2d5dG-54qhbg,4159,9. The system displays the leak data.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,4160,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9pDRkVEhEe2d5dG-54qhbg,4161,Reusable requirements for the AMR project,,http://jazz.net/ns/rm#Text,Heading @@ -543,8 +543,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9shcUFEhEe2d5dG-54qhbg,4164,Precedence and criticality of requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS-FEhEe2d5dG-54qhbg,4164,Precedence and criticality of requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,Requirements traceability,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS-lEhEe2d5dG-54qhbg,4165,Requirements traceability,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,Requirements traceability,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,Standards Compliance,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8j6VEhEe2d5dG-54qhbg,4167,Product Functions,,http://jazz.net/ns/rm#Text,Heading @@ -555,16 +555,16 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,Product Pe https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,4169,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pDRlFEhEe2d5dG-54qhbg,4170,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9qLS9FEhEe2d5dG-54qhbg,4171,Referenced documents,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sni8FEhEe2d5dG-54qhbg,4171,Referenced documents,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qLS9FEhEe2d5dG-54qhbg,4171,Referenced documents,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172,Security,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,Security,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCnVEhEe2d5dG-54qhbg,4173,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,Specific Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCmFEhEe2d5dG-54qhbg,4174,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,Product Perspective,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMklEhEe2d5dG-54qhbg,4175,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pDRmVEhEe2d5dG-54qhbg,4176,Envelope Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sltwlEhEe2d5dG-54qhbg,4176,Envelope Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,6. The usage data is displayed on the handheld device.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information @@ -575,8 +575,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9o8j8lEhEe2d5dG-54qhbg,4179,The meter https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,Support conservation monitoring and enforcement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180,Support conservation monitoring and enforcement,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,Performance,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,4181,Performance,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,Performance,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9stCgFEhEe2d5dG-54qhbg,4183,Failed End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading @@ -589,32 +589,32 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sqmQFEhEe2d5dG-54qhbg,4186,The meter https://jazz.ibm.com:9443/rm/resources/BI_9qHBpVEhEe2d5dG-54qhbg,4186,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9stpkFEhEe2d5dG-54qhbg,4187,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,4187,Ability to perform advanced data analysis of incremental meter readings,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,Maximization of existing investments in meter reading technology,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,4188,Maximization of existing investments in meter reading technology,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189,It is assumed that Meter Reader is within range of the Water Meter.,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,Maximization of existing investments in meter reading technology,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,It is assumed that Meter Reader is within range of the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189,It is assumed that Meter Reader is within range of the Water Meter.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBrVEhEe2d5dG-54qhbg,4192,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9pNCrVEhEe2d5dG-54qhbg,4193,Other Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,Other Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,Configuration,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,4194,Configuration,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,Configuration,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,Operations,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNpoFEhEe2d5dG-54qhbg,4195,Operations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,The AMR System control computer must operate on the most recent Windows platform currently available.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,4196,The AMR System control computer must operate on the most recent Windows platform currently available.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,Main Flow,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,Goal,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198,Goal,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o-ZEVEhEe2d5dG-54qhbg,4199,Carbon Trust Standard,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,Carbon Trust Standard,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9s4BoFEhEe2d5dG-54qhbg,4201,"Meter Reader, Water Meter",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9pWMjlEhEe2d5dG-54qhbg,4201,"Meter Reader, Water Meter",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9s86IFEhEe2d5dG-54qhbg,4202,General Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -623,8 +623,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9s4osFEhEe2d5dG-54qhbg,4203,Intentiona https://jazz.ibm.com:9443/rm/resources/BI_9qLS_VEhEe2d5dG-54qhbg,4203,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s6d4FEhEe2d5dG-54qhbg,4204,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,4204,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9p5mNlEhEe2d5dG-54qhbg,4205,Hazard Acronyms,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s7sAFEhEe2d5dG-54qhbg,4205,Hazard Acronyms,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mNlEhEe2d5dG-54qhbg,4205,Hazard Acronyms,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s8TEFEhEe2d5dG-54qhbg,4206,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/BI_9qHBsVEhEe2d5dG-54qhbg,4206,The control computer shall be capable of operating in a normal office environment.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9s9hMFEhEe2d5dG-54qhbg,4207,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -634,8 +634,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9qHBolEhEe2d5dG-54qhbg,4208,Meter usag https://jazz.ibm.com:9443/rm/resources/TX_9s_WYFEhEe2d5dG-54qhbg,4209,Meter reading in the most cost effective manner possible.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210,Trigger,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,Trigger,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qLS_lEhEe2d5dG-54qhbg,4211,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212,Availability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,Availability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement @@ -732,3 +732,4 @@ https://jazz.ibm.com:9443/rm/resources/BI_9p5mMFEhEe2d5dG-54qhbg,4258,Humidity o https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,Humidity operational limits of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,The Fixed Network Application software and data collection software must operate on a central server.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259,The Fixed Network Application software and data collection software must operate on a central server.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/TX_VjAoYNSMEe2AXbPl8fn2Aw,4738,My first stakefilder requirement,/00 Admin/newfoldername113,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test134.csv b/elmclient/tests/results/test134.csv index 777735d..a112a57 100644 --- a/elmclient/tests/results/test134.csv +++ b/elmclient/tests/results/test134.csv @@ -72,8 +72,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_SqZZ4FEhEe2d5dG-54qhbg,949,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_SoBbV1EhEe2d5dG-54qhbg,949, https://jazz.ibm.com:9443/rm/resources/TX_SqdEQFEhEe2d5dG-54qhbg,950,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpI1oFEhEe2d5dG-54qhbg,950, -https://jazz.ibm.com:9443/rm/resources/DM_SqSFIFEhEe2d5dG-54qhbg,951,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpmvuFEhEe2d5dG-54qhbg,951, +https://jazz.ibm.com:9443/rm/resources/DM_SqSFIFEhEe2d5dG-54qhbg,951,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_Sqb2IFEhEe2d5dG-54qhbg,952,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dklEhEe2d5dG-54qhbg,952, https://jazz.ibm.com:9443/rm/resources/TX_SqeSYFEhEe2d5dG-54qhbg,953,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts @@ -222,10 +222,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_SrEvUFEhEe2d5dG-54qhbg,1025,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SqHGGlEhEe2d5dG-54qhbg,1025, https://jazz.ibm.com:9443/rm/resources/TX_SrN5QFEhEe2d5dG-54qhbg,1026,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoBbX1EhEe2d5dG-54qhbg,1026, -https://jazz.ibm.com:9443/rm/resources/TX_SrOgUFEhEe2d5dG-54qhbg,1027,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dlVEhEe2d5dG-54qhbg,1027, -https://jazz.ibm.com:9443/rm/resources/TX_SrPHYFEhEe2d5dG-54qhbg,1028,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_SrOgUFEhEe2d5dG-54qhbg,1027,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dlFEhEe2d5dG-54qhbg,1028, +https://jazz.ibm.com:9443/rm/resources/TX_SrPHYFEhEe2d5dG-54qhbg,1028,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_SrJAwFEhEe2d5dG-54qhbg,1029,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spn92lEhEe2d5dG-54qhbg,1029, https://jazz.ibm.com:9443/rm/resources/TX_SrNSMFEhEe2d5dG-54qhbg,1030,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts @@ -236,8 +236,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_SrSxwFEhEe2d5dG-54qhbg,1032,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SoBbWlEhEe2d5dG-54qhbg,1032, https://jazz.ibm.com:9443/rm/resources/TX_SrSKsFEhEe2d5dG-54qhbg,1033,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok08VEhEe2d5dG-54qhbg,1033, -https://jazz.ibm.com:9443/rm/resources/TX_SrUm8FEhEe2d5dG-54qhbg,1034,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-doFEhEe2d5dG-54qhbg,1034, +https://jazz.ibm.com:9443/rm/resources/TX_SrUm8FEhEe2d5dG-54qhbg,1034,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_SrPucFEhEe2d5dG-54qhbg,1035,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnW31EhEe2d5dG-54qhbg,1035, https://jazz.ibm.com:9443/rm/resources/TX_SrT_4FEhEe2d5dG-54qhbg,1036,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts @@ -257,10 +257,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_SrY4YFEhEe2d5dG-54qhbg,1042,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_Sok0_lEhEe2d5dG-54qhbg,1042, https://jazz.ibm.com:9443/rm/resources/TX_SrYRUFEhEe2d5dG-54qhbg,1043,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spy8-lEhEe2d5dG-54qhbg,1043, -https://jazz.ibm.com:9443/rm/resources/TX_SrbUoFEhEe2d5dG-54qhbg,1044,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoA0QVEhEe2d5dG-54qhbg,1044, -https://jazz.ibm.com:9443/rm/resources/TX_SrZfcFEhEe2d5dG-54qhbg,1045,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_SrbUoFEhEe2d5dG-54qhbg,1044,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dnlEhEe2d5dG-54qhbg,1045, +https://jazz.ibm.com:9443/rm/resources/TX_SrZfcFEhEe2d5dG-54qhbg,1045,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_Srb7sFEhEe2d5dG-54qhbg,1046,/Terms https://jazz.ibm.com:9443/rm/resources/TX_SratkFEhEe2d5dG-54qhbg,1047,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnW11EhEe2d5dG-54qhbg,1047, @@ -272,8 +272,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_SrdJ0FEhEe2d5dG-54qhbg,1050,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpnW2lEhEe2d5dG-54qhbg,1050, https://jazz.ibm.com:9443/rm/resources/TX_SrciwFEhEe2d5dG-54qhbg,1051,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnW0lEhEe2d5dG-54qhbg,1051, -https://jazz.ibm.com:9443/rm/resources/TX_SreX8FEhEe2d5dG-54qhbg,1052,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-doVEhEe2d5dG-54qhbg,1052, +https://jazz.ibm.com:9443/rm/resources/TX_SreX8FEhEe2d5dG-54qhbg,1052,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_Sre_AFEhEe2d5dG-54qhbg,1053,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnW7lEhEe2d5dG-54qhbg,1053, https://jazz.ibm.com:9443/rm/resources/TX_SripYFEhEe2d5dG-54qhbg,1054,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts @@ -326,16 +326,16 @@ https://jazz.ibm.com:9443/rm/resources/BI_Sok1C1EhEe2d5dG-54qhbg,1075, https://jazz.ibm.com:9443/rm/resources/TX_SrtogFEhEe2d5dG-54qhbg,1076,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok1AFEhEe2d5dG-54qhbg,1076, https://jazz.ibm.com:9443/rm/resources/TX_Srwr0FEhEe2d5dG-54qhbg,1077,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_SrvdsFEhEe2d5dG-54qhbg,1078,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dr1EhEe2d5dG-54qhbg,1078, +https://jazz.ibm.com:9443/rm/resources/TX_SrvdsFEhEe2d5dG-54qhbg,1078,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_SrxS4FEhEe2d5dG-54qhbg,1079,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHtElEhEe2d5dG-54qhbg,1079, https://jazz.ibm.com:9443/rm/resources/TX_SrwEwFEhEe2d5dG-54qhbg,1080,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SolcD1EhEe2d5dG-54qhbg,1080, https://jazz.ibm.com:9443/rm/resources/TX_Sru2oFEhEe2d5dG-54qhbg,1081,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spmvs1EhEe2d5dG-54qhbg,1081, -https://jazz.ibm.com:9443/rm/resources/TX_SryhAFEhEe2d5dG-54qhbg,1082,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoBbU1EhEe2d5dG-54qhbg,1082, +https://jazz.ibm.com:9443/rm/resources/TX_SryhAFEhEe2d5dG-54qhbg,1082,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_Sr0WMFEhEe2d5dG-54qhbg,1083,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnWzFEhEe2d5dG-54qhbg,1083, https://jazz.ibm.com:9443/rm/resources/TX_SrrzUFEhEe2d5dG-54qhbg,1084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -379,12 +379,12 @@ https://jazz.ibm.com:9443/rm/resources/TX_SsDmwFEhEe2d5dG-54qhbg,1103,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpnWzVEhEe2d5dG-54qhbg,1103, https://jazz.ibm.com:9443/rm/resources/TX_Sr9gIFEhEe2d5dG-54qhbg,1104,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOmVEhEe2d5dG-54qhbg,1104, -https://jazz.ibm.com:9443/rm/resources/TX_SsE04FEhEe2d5dG-54qhbg,1105,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dn1EhEe2d5dG-54qhbg,1105, -https://jazz.ibm.com:9443/rm/resources/TX_Sr_VUFEhEe2d5dG-54qhbg,1106,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_SsE04FEhEe2d5dG-54qhbg,1105,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dp1EhEe2d5dG-54qhbg,1106, -https://jazz.ibm.com:9443/rm/resources/TX_SsEN0FEhEe2d5dG-54qhbg,1107,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Sr_VUFEhEe2d5dG-54qhbg,1106,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok0_1EhEe2d5dG-54qhbg,1107, +https://jazz.ibm.com:9443/rm/resources/TX_SsEN0FEhEe2d5dG-54qhbg,1107,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_SsBKgFEhEe2d5dG-54qhbg,1108,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoswylEhEe2d5dG-54qhbg,1108, https://jazz.ibm.com:9443/rm/resources/BI_SpnW8VEhEe2d5dG-54qhbg,1108, @@ -414,8 +414,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_SsJGUFEhEe2d5dG-54qhbg,1120,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SqL-gVEhEe2d5dG-54qhbg,1120, https://jazz.ibm.com:9443/rm/resources/TX_SsUFcFEhEe2d5dG-54qhbg,1121,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGCFEhEe2d5dG-54qhbg,1121, -https://jazz.ibm.com:9443/rm/resources/TX_SsRpMFEhEe2d5dG-54qhbg,1122,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok09VEhEe2d5dG-54qhbg,1122, +https://jazz.ibm.com:9443/rm/resources/TX_SsRpMFEhEe2d5dG-54qhbg,1122,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_SsVTkFEhEe2d5dG-54qhbg,1123,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SolcC1EhEe2d5dG-54qhbg,1123, https://jazz.ibm.com:9443/rm/resources/TX_SsXIwFEhEe2d5dG-54qhbg,1124,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -427,8 +427,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_SsN-0FEhEe2d5dG-54qhbg,1126,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_Sok08lEhEe2d5dG-54qhbg,1126, https://jazz.ibm.com:9443/rm/resources/BI_So-dl1EhEe2d5dG-54qhbg,1127, https://jazz.ibm.com:9443/rm/resources/TX_SsUsgFEhEe2d5dG-54qhbg,1127,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_SsOl4FEhEe2d5dG-54qhbg,1128,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dpVEhEe2d5dG-54qhbg,1128, +https://jazz.ibm.com:9443/rm/resources/TX_SsOl4FEhEe2d5dG-54qhbg,1128,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_SsXv0FEhEe2d5dG-54qhbg,1129,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOmlEhEe2d5dG-54qhbg,1129, https://jazz.ibm.com:9443/rm/resources/TX_SsV6oFEhEe2d5dG-54qhbg,1130,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -441,14 +441,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_SsazIFEhEe2d5dG-54qhbg,1133,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpIOkVEhEe2d5dG-54qhbg,1133, https://jazz.ibm.com:9443/rm/resources/TX_SsbaMFEhEe2d5dG-54qhbg,1134,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spy891EhEe2d5dG-54qhbg,1134, -https://jazz.ibm.com:9443/rm/resources/TX_SsaMEFEhEe2d5dG-54qhbg,1135,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoBbWVEhEe2d5dG-54qhbg,1135, +https://jazz.ibm.com:9443/rm/resources/TX_SsaMEFEhEe2d5dG-54qhbg,1135,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_SsZlAFEhEe2d5dG-54qhbg,1136,/Terms https://jazz.ibm.com:9443/rm/resources/TX_SsfEkFEhEe2d5dG-54qhbg,1137,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_Soswx1EhEe2d5dG-54qhbg,1137, https://jazz.ibm.com:9443/rm/resources/BI_SpnW2VEhEe2d5dG-54qhbg,1137, -https://jazz.ibm.com:9443/rm/resources/TX_SsgSsFEhEe2d5dG-54qhbg,1138,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoA0QlEhEe2d5dG-54qhbg,1138, +https://jazz.ibm.com:9443/rm/resources/TX_SsgSsFEhEe2d5dG-54qhbg,1138,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_Ssd2cFEhEe2d5dG-54qhbg,1139,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGGVEhEe2d5dG-54qhbg,1139, https://jazz.ibm.com:9443/rm/resources/TX_SsdPYFEhEe2d5dG-54qhbg,1140,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -457,8 +457,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_So-dq1EhEe2d5dG-54qhbg,1141, https://jazz.ibm.com:9443/rm/resources/TX_Ssiu8FEhEe2d5dG-54qhbg,1141,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_SsiH4FEhEe2d5dG-54qhbg,1142,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqL-g1EhEe2d5dG-54qhbg,1142, -https://jazz.ibm.com:9443/rm/resources/TX_SsfroFEhEe2d5dG-54qhbg,1143,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dslEhEe2d5dG-54qhbg,1143, +https://jazz.ibm.com:9443/rm/resources/TX_SsfroFEhEe2d5dG-54qhbg,1143,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_Sshg0FEhEe2d5dG-54qhbg,1144,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoBbVFEhEe2d5dG-54qhbg,1144, https://jazz.ibm.com:9443/rm/resources/BI_So-dnFEhEe2d5dG-54qhbg,1145, @@ -467,12 +467,12 @@ https://jazz.ibm.com:9443/rm/resources/TX_Sso1kFEhEe2d5dG-54qhbg,1146,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpIOlFEhEe2d5dG-54qhbg,1146, https://jazz.ibm.com:9443/rm/resources/TX_SsoOgFEhEe2d5dG-54qhbg,1147,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnWxlEhEe2d5dG-54qhbg,1147, -https://jazz.ibm.com:9443/rm/resources/TX_SstHAFEhEe2d5dG-54qhbg,1148,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok0_VEhEe2d5dG-54qhbg,1148, +https://jazz.ibm.com:9443/rm/resources/TX_SstHAFEhEe2d5dG-54qhbg,1148,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_SslyQFEhEe2d5dG-54qhbg,1149,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnWz1EhEe2d5dG-54qhbg,1149, -https://jazz.ibm.com:9443/rm/resources/TX_Ssu8MFEhEe2d5dG-54qhbg,1150,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sosw0VEhEe2d5dG-54qhbg,1150, +https://jazz.ibm.com:9443/rm/resources/TX_Ssu8MFEhEe2d5dG-54qhbg,1150,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHtG1EhEe2d5dG-54qhbg,1150, https://jazz.ibm.com:9443/rm/resources/TX_SsrR0FEhEe2d5dG-54qhbg,1151,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spn93VEhEe2d5dG-54qhbg,1151, @@ -480,10 +480,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_SsqqwFEhEe2d5dG-54qhbg,1152,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SqHGJFEhEe2d5dG-54qhbg,1152, https://jazz.ibm.com:9443/rm/resources/TX_SspcoFEhEe2d5dG-54qhbg,1153,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGI1EhEe2d5dG-54qhbg,1153, -https://jazz.ibm.com:9443/rm/resources/TX_Sssf8FEhEe2d5dG-54qhbg,1154,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqL-jVEhEe2d5dG-54qhbg,1154, -https://jazz.ibm.com:9443/rm/resources/TX_SswxYFEhEe2d5dG-54qhbg,1155,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Sssf8FEhEe2d5dG-54qhbg,1154,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok0-1EhEe2d5dG-54qhbg,1155, +https://jazz.ibm.com:9443/rm/resources/TX_SswxYFEhEe2d5dG-54qhbg,1155,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_SszNoFEhEe2d5dG-54qhbg,1156,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGMFEhEe2d5dG-54qhbg,1156, https://jazz.ibm.com:9443/rm/resources/TX_Ssz0sFEhEe2d5dG-54qhbg,1157,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -503,14 +503,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_Ss0bwFEhEe2d5dG-54qhbg,1164,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpnW01EhEe2d5dG-54qhbg,1164, https://jazz.ibm.com:9443/rm/resources/TX_SsxYcFEhEe2d5dG-54qhbg,1165,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGAlEhEe2d5dG-54qhbg,1165, -https://jazz.ibm.com:9443/rm/resources/TX_Ss3fEFEhEe2d5dG-54qhbg,1166,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dmVEhEe2d5dG-54qhbg,1166, +https://jazz.ibm.com:9443/rm/resources/TX_Ss3fEFEhEe2d5dG-54qhbg,1166,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_Ss5UQFEhEe2d5dG-54qhbg,1167,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpmvtVEhEe2d5dG-54qhbg,1167, https://jazz.ibm.com:9443/rm/resources/TX_SsymkFEhEe2d5dG-54qhbg,1168,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnW3lEhEe2d5dG-54qhbg,1168, -https://jazz.ibm.com:9443/rm/resources/TX_Ss4tMFEhEe2d5dG-54qhbg,1169,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoBbVVEhEe2d5dG-54qhbg,1169, +https://jazz.ibm.com:9443/rm/resources/TX_Ss4tMFEhEe2d5dG-54qhbg,1169,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_Ss5UQVEhEe2d5dG-54qhbg,1170,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGOVEhEe2d5dG-54qhbg,1170, https://jazz.ibm.com:9443/rm/resources/TX_Ss7JcVEhEe2d5dG-54qhbg,1171,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts @@ -526,10 +526,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_StAB8FEhEe2d5dG-54qhbg,1175,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpI1oVEhEe2d5dG-54qhbg,1175, https://jazz.ibm.com:9443/rm/resources/TX_Ss8-oFEhEe2d5dG-54qhbg,1176,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGHVEhEe2d5dG-54qhbg,1176, -https://jazz.ibm.com:9443/rm/resources/TX_StApAFEhEe2d5dG-54qhbg,1177,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoswwVEhEe2d5dG-54qhbg,1177, -https://jazz.ibm.com:9443/rm/resources/TX_StApAVEhEe2d5dG-54qhbg,1178,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_StApAFEhEe2d5dG-54qhbg,1177,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpI1pFEhEe2d5dG-54qhbg,1178, +https://jazz.ibm.com:9443/rm/resources/TX_StApAVEhEe2d5dG-54qhbg,1178,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/TX_Ss2Q8FEhEe2d5dG-54qhbg,1179,/Terms https://jazz.ibm.com:9443/rm/resources/TX_Ss-z0FEhEe2d5dG-54qhbg,1180,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHtFlEhEe2d5dG-54qhbg,1180, @@ -547,8 +547,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_StDFQFEhEe2d5dG-54qhbg,1186,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SolcBlEhEe2d5dG-54qhbg,1186, https://jazz.ibm.com:9443/rm/resources/TX_StDsUFEhEe2d5dG-54qhbg,1187,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOqVEhEe2d5dG-54qhbg,1187, -https://jazz.ibm.com:9443/rm/resources/TX_StGIkFEhEe2d5dG-54qhbg,1188,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoswxFEhEe2d5dG-54qhbg,1188, +https://jazz.ibm.com:9443/rm/resources/TX_StGIkFEhEe2d5dG-54qhbg,1188,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_StCeMFEhEe2d5dG-54qhbg,1189,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnW5FEhEe2d5dG-54qhbg,1189, https://jazz.ibm.com:9443/rm/resources/BI_SoBbWFEhEe2d5dG-54qhbg,1190, @@ -565,8 +565,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_StLoIFEhEe2d5dG-54qhbg,1195,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpIOplEhEe2d5dG-54qhbg,1195, https://jazz.ibm.com:9443/rm/resources/TX_StIk0VEhEe2d5dG-54qhbg,1196,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoswyVEhEe2d5dG-54qhbg,1196, -https://jazz.ibm.com:9443/rm/resources/BI_SqL-hVEhEe2d5dG-54qhbg,1197, https://jazz.ibm.com:9443/rm/resources/TX_StKaAFEhEe2d5dG-54qhbg,1197,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SqL-hVEhEe2d5dG-54qhbg,1197, https://jazz.ibm.com:9443/rm/resources/BI_So-dnVEhEe2d5dG-54qhbg,1198, https://jazz.ibm.com:9443/rm/resources/TX_StIk0FEhEe2d5dG-54qhbg,1198,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dqlEhEe2d5dG-54qhbg,1199, @@ -575,8 +575,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_StMPMFEhEe2d5dG-54qhbg,1200,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpIOolEhEe2d5dG-54qhbg,1200, https://jazz.ibm.com:9443/rm/resources/TX_StLBEFEhEe2d5dG-54qhbg,1201,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGE1EhEe2d5dG-54qhbg,1201, -https://jazz.ibm.com:9443/rm/resources/TX_StQgoFEhEe2d5dG-54qhbg,1202,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOm1EhEe2d5dG-54qhbg,1202, +https://jazz.ibm.com:9443/rm/resources/TX_StQgoFEhEe2d5dG-54qhbg,1202,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/TX_StOrcFEhEe2d5dG-54qhbg,1203,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnWy1EhEe2d5dG-54qhbg,1203, https://jazz.ibm.com:9443/rm/resources/TX_StOEYFEhEe2d5dG-54qhbg,1204,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -589,8 +589,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_StRHsFEhEe2d5dG-54qhbg,1207,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpnWyVEhEe2d5dG-54qhbg,1207, https://jazz.ibm.com:9443/rm/resources/TX_StM2QFEhEe2d5dG-54qhbg,1208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGJVEhEe2d5dG-54qhbg,1208, -https://jazz.ibm.com:9443/rm/resources/TX_StPSgFEhEe2d5dG-54qhbg,1209,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok1AVEhEe2d5dG-54qhbg,1209, +https://jazz.ibm.com:9443/rm/resources/TX_StPSgFEhEe2d5dG-54qhbg,1209,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoBbXFEhEe2d5dG-54qhbg,1210, https://jazz.ibm.com:9443/rm/resources/TX_StUyEFEhEe2d5dG-54qhbg,1210,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_StULAFEhEe2d5dG-54qhbg,1211,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -607,22 +607,22 @@ https://jazz.ibm.com:9443/rm/resources/TX_StWnQFEhEe2d5dG-54qhbg,1216,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpnWxFEhEe2d5dG-54qhbg,1216, https://jazz.ibm.com:9443/rm/resources/BI_So-drlEhEe2d5dG-54qhbg,1217, https://jazz.ibm.com:9443/rm/resources/TX_StZqkFEhEe2d5dG-54qhbg,1217,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_StYccFEhEe2d5dG-54qhbg,1218,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOk1EhEe2d5dG-54qhbg,1218, +https://jazz.ibm.com:9443/rm/resources/TX_StYccFEhEe2d5dG-54qhbg,1218,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/TX_StbfwFEhEe2d5dG-54qhbg,1219,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOnlEhEe2d5dG-54qhbg,1219, -https://jazz.ibm.com:9443/rm/resources/TX_StWAMFEhEe2d5dG-54qhbg,1220,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOmFEhEe2d5dG-54qhbg,1220, -https://jazz.ibm.com:9443/rm/resources/TX_Sta4sFEhEe2d5dG-54qhbg,1221,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_StWAMFEhEe2d5dG-54qhbg,1220,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sosww1EhEe2d5dG-54qhbg,1221, +https://jazz.ibm.com:9443/rm/resources/TX_Sta4sFEhEe2d5dG-54qhbg,1221,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoBbVlEhEe2d5dG-54qhbg,1222, https://jazz.ibm.com:9443/rm/resources/TX_StZDgFEhEe2d5dG-54qhbg,1222,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoBbXVEhEe2d5dG-54qhbg,1223, https://jazz.ibm.com:9443/rm/resources/TX_StX1YFEhEe2d5dG-54qhbg,1223,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_StaRoFEhEe2d5dG-54qhbg,1224,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spn92VEhEe2d5dG-54qhbg,1224, -https://jazz.ibm.com:9443/rm/resources/TX_StdU8FEhEe2d5dG-54qhbg,1225,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_SonRMVEhEe2d5dG-54qhbg,1225, +https://jazz.ibm.com:9443/rm/resources/TX_StdU8FEhEe2d5dG-54qhbg,1225,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/TX_Std8AFEhEe2d5dG-54qhbg,1226,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnW-VEhEe2d5dG-54qhbg,1226, https://jazz.ibm.com:9443/rm/resources/TX_StcG0FEhEe2d5dG-54qhbg,1227,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts @@ -638,14 +638,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_StjbkFEhEe2d5dG-54qhbg,1232,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SqL-j1EhEe2d5dG-54qhbg,1232, https://jazz.ibm.com:9443/rm/resources/TX_StfKIFEhEe2d5dG-54qhbg,1233,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGMVEhEe2d5dG-54qhbg,1233, -https://jazz.ibm.com:9443/rm/resources/TX_Stme4FEhEe2d5dG-54qhbg,1234,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SolcEFEhEe2d5dG-54qhbg,1234, +https://jazz.ibm.com:9443/rm/resources/TX_Stme4FEhEe2d5dG-54qhbg,1234,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_Stg_UFEhEe2d5dG-54qhbg,1235,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGIlEhEe2d5dG-54qhbg,1235, https://jazz.ibm.com:9443/rm/resources/TX_StkpsFEhEe2d5dG-54qhbg,1236,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHtFVEhEe2d5dG-54qhbg,1236, -https://jazz.ibm.com:9443/rm/resources/TX_StoUEFEhEe2d5dG-54qhbg,1237,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoA0Q1EhEe2d5dG-54qhbg,1237, +https://jazz.ibm.com:9443/rm/resources/TX_StoUEFEhEe2d5dG-54qhbg,1237,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_StejEFEhEe2d5dG-54qhbg,1238,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spy9BlEhEe2d5dG-54qhbg,1238, https://jazz.ibm.com:9443/rm/resources/TX_StnF8FEhEe2d5dG-54qhbg,1239,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts @@ -654,8 +654,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_So-dqVEhEe2d5dG-54qhbg,1240, https://jazz.ibm.com:9443/rm/resources/TX_StntAFEhEe2d5dG-54qhbg,1240,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_StqwUFEhEe2d5dG-54qhbg,1241,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpmvslEhEe2d5dG-54qhbg,1241, -https://jazz.ibm.com:9443/rm/resources/TX_Stl30FEhEe2d5dG-54qhbg,1242,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpI1p1EhEe2d5dG-54qhbg,1242, +https://jazz.ibm.com:9443/rm/resources/TX_Stl30FEhEe2d5dG-54qhbg,1242,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/TX_StpiMFEhEe2d5dG-54qhbg,1243,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnW4lEhEe2d5dG-54qhbg,1243, https://jazz.ibm.com:9443/rm/resources/TX_SttzoFEhEe2d5dG-54qhbg,1244,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -672,8 +672,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_StslgFEhEe2d5dG-54qhbg,1249,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SqHGNFEhEe2d5dG-54qhbg,1249, https://jazz.ibm.com:9443/rm/resources/TX_Stvo0FEhEe2d5dG-54qhbg,1250,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGH1EhEe2d5dG-54qhbg,1250, -https://jazz.ibm.com:9443/rm/resources/TX_StysIFEhEe2d5dG-54qhbg,1251,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoBbUFEhEe2d5dG-54qhbg,1251, +https://jazz.ibm.com:9443/rm/resources/TX_StysIFEhEe2d5dG-54qhbg,1251,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_StuasFEhEe2d5dG-54qhbg,1252,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGF1EhEe2d5dG-54qhbg,1252, https://jazz.ibm.com:9443/rm/resources/TX_Stz6QFEhEe2d5dG-54qhbg,1253,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -686,16 +686,16 @@ https://jazz.ibm.com:9443/rm/resources/TX_St29kFEhEe2d5dG-54qhbg,1256,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SqHGFFEhEe2d5dG-54qhbg,1256, https://jazz.ibm.com:9443/rm/resources/BI_So-dolEhEe2d5dG-54qhbg,1257, https://jazz.ibm.com:9443/rm/resources/TX_St3koFEhEe2d5dG-54qhbg,1257,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_St0hUFEhEe2d5dG-54qhbg,1258,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok1BlEhEe2d5dG-54qhbg,1258, -https://jazz.ibm.com:9443/rm/resources/TX_St5Z0FEhEe2d5dG-54qhbg,1259,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_St0hUFEhEe2d5dG-54qhbg,1258,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok0-lEhEe2d5dG-54qhbg,1259, +https://jazz.ibm.com:9443/rm/resources/TX_St5Z0FEhEe2d5dG-54qhbg,1259,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_St7PAFEhEe2d5dG-54qhbg,1260,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGFlEhEe2d5dG-54qhbg,1260, -https://jazz.ibm.com:9443/rm/resources/TX_St-SUFEhEe2d5dG-54qhbg,1261,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok1BFEhEe2d5dG-54qhbg,1261, -https://jazz.ibm.com:9443/rm/resources/TX_St8dIFEhEe2d5dG-54qhbg,1262,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_St-SUFEhEe2d5dG-54qhbg,1261,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SolcDVEhEe2d5dG-54qhbg,1262, +https://jazz.ibm.com:9443/rm/resources/TX_St8dIFEhEe2d5dG-54qhbg,1262,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dm1EhEe2d5dG-54qhbg,1263, https://jazz.ibm.com:9443/rm/resources/TX_St9EMFEhEe2d5dG-54qhbg,1263,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_St-5YFEhEe2d5dG-54qhbg,1264,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -706,35 +706,35 @@ https://jazz.ibm.com:9443/rm/resources/TX_St1IYFEhEe2d5dG-54qhbg,1266,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_Spy8-FEhEe2d5dG-54qhbg,1266, https://jazz.ibm.com:9443/rm/resources/TX_St6A4FEhEe2d5dG-54qhbg,1267,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHtEFEhEe2d5dG-54qhbg,1267, -https://jazz.ibm.com:9443/rm/resources/TX_SuAukFEhEe2d5dG-54qhbg,1268,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok1B1EhEe2d5dG-54qhbg,1268, +https://jazz.ibm.com:9443/rm/resources/TX_SuAukFEhEe2d5dG-54qhbg,1268,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok08FEhEe2d5dG-54qhbg,1269, https://jazz.ibm.com:9443/rm/resources/TX_SuB8sFEhEe2d5dG-54qhbg,1269,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_St_gcFEhEe2d5dG-54qhbg,1270,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOlVEhEe2d5dG-54qhbg,1270, +https://jazz.ibm.com:9443/rm/resources/TX_St_gcFEhEe2d5dG-54qhbg,1270,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SoBbUVEhEe2d5dG-54qhbg,1271, https://jazz.ibm.com:9443/rm/resources/TX_SuAHgFEhEe2d5dG-54qhbg,1271,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_SuDx4FEhEe2d5dG-54qhbg,1272,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqL-glEhEe2d5dG-54qhbg,1272, https://jazz.ibm.com:9443/rm/resources/BI_So-dllEhEe2d5dG-54qhbg,1273, https://jazz.ibm.com:9443/rm/resources/TX_SuFAAFEhEe2d5dG-54qhbg,1273,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_SuBVoFEhEe2d5dG-54qhbg,1274,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOnFEhEe2d5dG-54qhbg,1274, +https://jazz.ibm.com:9443/rm/resources/TX_SuBVoFEhEe2d5dG-54qhbg,1274,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/TX_SuDK0FEhEe2d5dG-54qhbg,1275,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spy9BFEhEe2d5dG-54qhbg,1275, https://jazz.ibm.com:9443/rm/resources/BI_SolcAlEhEe2d5dG-54qhbg,1276, https://jazz.ibm.com:9443/rm/resources/TX_SuHcQFEhEe2d5dG-54qhbg,1276,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_SuFnEFEhEe2d5dG-54qhbg,1277,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnW21EhEe2d5dG-54qhbg,1277, -https://jazz.ibm.com:9443/rm/resources/TX_SuG1MFEhEe2d5dG-54qhbg,1278,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok1A1EhEe2d5dG-54qhbg,1278, +https://jazz.ibm.com:9443/rm/resources/TX_SuG1MFEhEe2d5dG-54qhbg,1278,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_SuJRcFEhEe2d5dG-54qhbg,1279,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqL-ilEhEe2d5dG-54qhbg,1279, https://jazz.ibm.com:9443/rm/resources/TX_SuIDUFEhEe2d5dG-54qhbg,1280,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spy9AFEhEe2d5dG-54qhbg,1280, -https://jazz.ibm.com:9443/rm/resources/TX_SuEY8FEhEe2d5dG-54qhbg,1281,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SolcCFEhEe2d5dG-54qhbg,1281, -https://jazz.ibm.com:9443/rm/resources/TX_SuGOIFEhEe2d5dG-54qhbg,1282,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_SuEY8FEhEe2d5dG-54qhbg,1281,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok1AlEhEe2d5dG-54qhbg,1282, +https://jazz.ibm.com:9443/rm/resources/TX_SuGOIFEhEe2d5dG-54qhbg,1282,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_SuJ4gFEhEe2d5dG-54qhbg,1283,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spn921EhEe2d5dG-54qhbg,1283, diff --git a/elmclient/tests/results/test135.csv b/elmclient/tests/results/test135.csv index 397ff0f..b1dc065 100644 --- a/elmclient/tests/results/test135.csv +++ b/elmclient/tests/results/test135.csv @@ -18,14 +18,14 @@ https://jazz.ibm.com:9443/rm/resources/MD_WdX8RVEhEe2d5dG-54qhbg,1293,/Use Case https://jazz.ibm.com:9443/rm/resources/MD_WdX8SFEhEe2d5dG-54qhbg,1294,/02 Reference https://jazz.ibm.com:9443/rm/resources/WR_Wg38MVEhEe2d5dG-54qhbg,1295,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdScuFEhEe2d5dG-54qhbg,1295, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1xDlEhEe2d5dG-54qhbg,1296, https://jazz.ibm.com:9443/rm/resources/WR_Wgp5wFEhEe2d5dG-54qhbg,1296,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc3l9FEhEe2d5dG-54qhbg,1297, +https://jazz.ibm.com:9443/rm/resources/BI_Wc1xDlEhEe2d5dG-54qhbg,1296, https://jazz.ibm.com:9443/rm/resources/WR_WeU-gFEhEe2d5dG-54qhbg,1297,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1xAVEhEe2d5dG-54qhbg,1298, +https://jazz.ibm.com:9443/rm/resources/BI_Wc3l9FEhEe2d5dG-54qhbg,1297, https://jazz.ibm.com:9443/rm/resources/WR_WgdFcFEhEe2d5dG-54qhbg,1298,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc3l8lEhEe2d5dG-54qhbg,1299, +https://jazz.ibm.com:9443/rm/resources/BI_Wc1xAVEhEe2d5dG-54qhbg,1298, https://jazz.ibm.com:9443/rm/resources/WR_WdreQVEhEe2d5dG-54qhbg,1299,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc3l8lEhEe2d5dG-54qhbg,1299, https://jazz.ibm.com:9443/rm/resources/BI_Wc1w6lEhEe2d5dG-54qhbg,1300, https://jazz.ibm.com:9443/rm/resources/WR_WgvZUFEhEe2d5dG-54qhbg,1300,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_WdaYg1EhEe2d5dG-54qhbg,1301,/Base Artifacts/Module Template/Use Case Template artifacts @@ -236,8 +236,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WeWMoFEhEe2d5dG-54qhbg,1404,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WdSc81EhEe2d5dG-54qhbg,1404, https://jazz.ibm.com:9443/rm/resources/TX_WemrUFEhEe2d5dG-54qhbg,1405,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGw8lEhEe2d5dG-54qhbg,1405, -https://jazz.ibm.com:9443/rm/resources/BI_Wb8__lEhEe2d5dG-54qhbg,1406, https://jazz.ibm.com:9443/rm/resources/TX_Wen5cFEhEe2d5dG-54qhbg,1406,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wb8__lEhEe2d5dG-54qhbg,1406, https://jazz.ibm.com:9443/rm/resources/TX_WepuoFEhEe2d5dG-54qhbg,1407,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPsFEhEe2d5dG-54qhbg,1407, https://jazz.ibm.com:9443/rm/resources/TX_WeoggFEhEe2d5dG-54qhbg,1408,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts @@ -259,8 +259,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_Werj0FEhEe2d5dG-54qhbg,1415,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WdSc5lEhEe2d5dG-54qhbg,1415, https://jazz.ibm.com:9443/rm/resources/TX_WevOMlEhEe2d5dG-54qhbg,1416,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc1w4FEhEe2d5dG-54qhbg,1416, -https://jazz.ibm.com:9443/rm/resources/BI_Wb8_8VEhEe2d5dG-54qhbg,1417, https://jazz.ibm.com:9443/rm/resources/TX_WewcUFEhEe2d5dG-54qhbg,1417,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wb8_8VEhEe2d5dG-54qhbg,1417, https://jazz.ibm.com:9443/rm/resources/TX_WetZAVEhEe2d5dG-54qhbg,1418,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPrlEhEe2d5dG-54qhbg,1418, https://jazz.ibm.com:9443/rm/resources/TX_WeuAEFEhEe2d5dG-54qhbg,1419,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -327,8 +327,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WfDXQFEhEe2d5dG-54qhbg,1448,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WcGxAVEhEe2d5dG-54qhbg,1448, https://jazz.ibm.com:9443/rm/resources/TX_WfD-UFEhEe2d5dG-54qhbg,1449,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGxDFEhEe2d5dG-54qhbg,1449, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1Js1EhEe2d5dG-54qhbg,1450, https://jazz.ibm.com:9443/rm/resources/TX_WfElYFEhEe2d5dG-54qhbg,1450,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1Js1EhEe2d5dG-54qhbg,1450, https://jazz.ibm.com:9443/rm/resources/TX_WfFMcFEhEe2d5dG-54qhbg,1451,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPv1EhEe2d5dG-54qhbg,1451, https://jazz.ibm.com:9443/rm/resources/TX_WfFMcVEhEe2d5dG-54qhbg,1452,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts @@ -337,21 +337,21 @@ https://jazz.ibm.com:9443/rm/resources/TX_WfI20FEhEe2d5dG-54qhbg,1453,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WcGw_VEhEe2d5dG-54qhbg,1453, https://jazz.ibm.com:9443/rm/resources/TX_WfHBoFEhEe2d5dG-54qhbg,1454,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc7VEhEe2d5dG-54qhbg,1454, -https://jazz.ibm.com:9443/rm/resources/BI_Wb8_91EhEe2d5dG-54qhbg,1455, https://jazz.ibm.com:9443/rm/resources/TX_WfHosFEhEe2d5dG-54qhbg,1455,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wb8_91EhEe2d5dG-54qhbg,1455, https://jazz.ibm.com:9443/rm/resources/TX_WfFzgFEhEe2d5dG-54qhbg,1456,/Use Case Content/Actors https://jazz.ibm.com:9443/rm/resources/TX_WfIPwFEhEe2d5dG-54qhbg,1457,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc8ec1EhEe2d5dG-54qhbg,1457, https://jazz.ibm.com:9443/rm/resources/TX_WfKsAFEhEe2d5dG-54qhbg,1458,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc9FgVEhEe2d5dG-54qhbg,1458, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w1VEhEe2d5dG-54qhbg,1459, https://jazz.ibm.com:9443/rm/resources/TX_WfJd4FEhEe2d5dG-54qhbg,1459,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w11EhEe2d5dG-54qhbg,1460, +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w1VEhEe2d5dG-54qhbg,1459, https://jazz.ibm.com:9443/rm/resources/TX_WfLTEFEhEe2d5dG-54qhbg,1460,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w31EhEe2d5dG-54qhbg,1461, +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w11EhEe2d5dG-54qhbg,1460, https://jazz.ibm.com:9443/rm/resources/TX_WfMhMFEhEe2d5dG-54qhbg,1461,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w-VEhEe2d5dG-54qhbg,1462, +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w31EhEe2d5dG-54qhbg,1461, https://jazz.ibm.com:9443/rm/resources/TX_WfL6IFEhEe2d5dG-54qhbg,1462,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w-VEhEe2d5dG-54qhbg,1462, https://jazz.ibm.com:9443/rm/resources/TX_WfO9cFEhEe2d5dG-54qhbg,1463,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchAwFEhEe2d5dG-54qhbg,1463, https://jazz.ibm.com:9443/rm/resources/TX_WfOWYFEhEe2d5dG-54qhbg,1464,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts @@ -362,8 +362,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WfNvUFEhEe2d5dG-54qhbg,1466,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WchAs1EhEe2d5dG-54qhbg,1466, https://jazz.ibm.com:9443/rm/resources/TX_WfPkgFEhEe2d5dG-54qhbg,1467,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc2FEhEe2d5dG-54qhbg,1467, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1JsVEhEe2d5dG-54qhbg,1468, https://jazz.ibm.com:9443/rm/resources/TX_WfTO4FEhEe2d5dG-54qhbg,1468,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1JsVEhEe2d5dG-54qhbg,1468, https://jazz.ibm.com:9443/rm/resources/TX_WfSAwFEhEe2d5dG-54qhbg,1469,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchAqVEhEe2d5dG-54qhbg,1469, https://jazz.ibm.com:9443/rm/resources/TX_WfSn0FEhEe2d5dG-54qhbg,1470,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -376,8 +376,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WfRZsFEhEe2d5dG-54qhbg,1473,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WcGxFFEhEe2d5dG-54qhbg,1473, https://jazz.ibm.com:9443/rm/resources/TX_WfQyoFEhEe2d5dG-54qhbg,1474,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchAv1EhEe2d5dG-54qhbg,1474, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w-lEhEe2d5dG-54qhbg,1475, https://jazz.ibm.com:9443/rm/resources/TX_WfVrIFEhEe2d5dG-54qhbg,1475,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w-lEhEe2d5dG-54qhbg,1475, https://jazz.ibm.com:9443/rm/resources/BI_WcOFulEhEe2d5dG-54qhbg,1475, https://jazz.ibm.com:9443/rm/resources/TX_WfWSMFEhEe2d5dG-54qhbg,1476,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSctVEhEe2d5dG-54qhbg,1476, @@ -392,8 +392,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WfYHYVEhEe2d5dG-54qhbg,1481,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WcXPr1EhEe2d5dG-54qhbg,1481, https://jazz.ibm.com:9443/rm/resources/TX_WfYHYFEhEe2d5dG-54qhbg,1482,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGxAFEhEe2d5dG-54qhbg,1482, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1wyFEhEe2d5dG-54qhbg,1483, https://jazz.ibm.com:9443/rm/resources/TX_WfZ8kFEhEe2d5dG-54qhbg,1483,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1wyFEhEe2d5dG-54qhbg,1483, https://jazz.ibm.com:9443/rm/resources/TX_WfYucFEhEe2d5dG-54qhbg,1484,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchAsVEhEe2d5dG-54qhbg,1484, https://jazz.ibm.com:9443/rm/resources/TX_WfZVgFEhEe2d5dG-54qhbg,1485,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts @@ -424,8 +424,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WfifcFEhEe2d5dG-54qhbg,1497,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WdSct1EhEe2d5dG-54qhbg,1497, https://jazz.ibm.com:9443/rm/resources/TX_WfliwFEhEe2d5dG-54qhbg,1498,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchAqlEhEe2d5dG-54qhbg,1498, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w81EhEe2d5dG-54qhbg,1499, https://jazz.ibm.com:9443/rm/resources/TX_WfjtkVEhEe2d5dG-54qhbg,1499,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w81EhEe2d5dG-54qhbg,1499, https://jazz.ibm.com:9443/rm/resources/TX_WfifcVEhEe2d5dG-54qhbg,1500,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPp1EhEe2d5dG-54qhbg,1500, https://jazz.ibm.com:9443/rm/resources/TX_Wfk7sFEhEe2d5dG-54qhbg,1501,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -435,36 +435,36 @@ https://jazz.ibm.com:9443/rm/resources/BI_WcOFv1EhEe2d5dG-54qhbg,1502, https://jazz.ibm.com:9443/rm/resources/BI_WdSc9FEhEe2d5dG-54qhbg,1502, https://jazz.ibm.com:9443/rm/resources/TX_WfjGgFEhEe2d5dG-54qhbg,1503,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGxGFEhEe2d5dG-54qhbg,1503, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1xA1EhEe2d5dG-54qhbg,1504, https://jazz.ibm.com:9443/rm/resources/TX_WfmJ0FEhEe2d5dG-54qhbg,1504,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1xA1EhEe2d5dG-54qhbg,1504, https://jazz.ibm.com:9443/rm/resources/TX_Wfmw4FEhEe2d5dG-54qhbg,1505,/Terms -https://jazz.ibm.com:9443/rm/resources/BI_Wb8__VEhEe2d5dG-54qhbg,1506, https://jazz.ibm.com:9443/rm/resources/TX_WfnX8FEhEe2d5dG-54qhbg,1506,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wb8__VEhEe2d5dG-54qhbg,1506, https://jazz.ibm.com:9443/rm/resources/TX_Wfn_AFEhEe2d5dG-54qhbg,1507,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchAoVEhEe2d5dG-54qhbg,1507, https://jazz.ibm.com:9443/rm/resources/TX_WfsQcFEhEe2d5dG-54qhbg,1508,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPwlEhEe2d5dG-54qhbg,1508, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w4lEhEe2d5dG-54qhbg,1509, https://jazz.ibm.com:9443/rm/resources/TX_WfrpYFEhEe2d5dG-54qhbg,1509,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w4lEhEe2d5dG-54qhbg,1509, https://jazz.ibm.com:9443/rm/resources/BI_WcOFt1EhEe2d5dG-54qhbg,1509, https://jazz.ibm.com:9443/rm/resources/TX_WfqbQFEhEe2d5dG-54qhbg,1510,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdScyFEhEe2d5dG-54qhbg,1510, https://jazz.ibm.com:9443/rm/resources/TX_Wfp0MFEhEe2d5dG-54qhbg,1511,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc1VEhEe2d5dG-54qhbg,1511, -https://jazz.ibm.com:9443/rm/resources/BI_Wb8_-FEhEe2d5dG-54qhbg,1512, https://jazz.ibm.com:9443/rm/resources/TX_WftekFEhEe2d5dG-54qhbg,1512,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wb8_-FEhEe2d5dG-54qhbg,1512, https://jazz.ibm.com:9443/rm/resources/TX_Wfs3gVEhEe2d5dG-54qhbg,1513,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPrFEhEe2d5dG-54qhbg,1513, -https://jazz.ibm.com:9443/rm/resources/BI_Wb8_8lEhEe2d5dG-54qhbg,1514, https://jazz.ibm.com:9443/rm/resources/TX_Wfs3gFEhEe2d5dG-54qhbg,1514,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wb8_8lEhEe2d5dG-54qhbg,1514, https://jazz.ibm.com:9443/rm/resources/TX_WfuFoFEhEe2d5dG-54qhbg,1515,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdXVM1EhEe2d5dG-54qhbg,1515, https://jazz.ibm.com:9443/rm/resources/TX_WfomEFEhEe2d5dG-54qhbg,1516,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc9Fg1EhEe2d5dG-54qhbg,1516, https://jazz.ibm.com:9443/rm/resources/TX_WfvTwFEhEe2d5dG-54qhbg,1517,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc1w2FEhEe2d5dG-54qhbg,1517, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1wz1EhEe2d5dG-54qhbg,1518, https://jazz.ibm.com:9443/rm/resources/TX_Wfv60FEhEe2d5dG-54qhbg,1518,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1wz1EhEe2d5dG-54qhbg,1518, https://jazz.ibm.com:9443/rm/resources/TX_WfussFEhEe2d5dG-54qhbg,1519,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPu1EhEe2d5dG-54qhbg,1519, https://jazz.ibm.com:9443/rm/resources/TX_WfxI8FEhEe2d5dG-54qhbg,1520,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -478,8 +478,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_WcOFwVEhEe2d5dG-54qhbg,1523, https://jazz.ibm.com:9443/rm/resources/BI_WdSc9lEhEe2d5dG-54qhbg,1523, https://jazz.ibm.com:9443/rm/resources/TX_Wf0zUFEhEe2d5dG-54qhbg,1524,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc1w2lEhEe2d5dG-54qhbg,1524, -https://jazz.ibm.com:9443/rm/resources/TX_WfzlMFEhEe2d5dG-54qhbg,1525,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdXVPVEhEe2d5dG-54qhbg,1525, +https://jazz.ibm.com:9443/rm/resources/TX_WfzlMFEhEe2d5dG-54qhbg,1525,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_Wf0MQFEhEe2d5dG-54qhbg,1526,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGw_lEhEe2d5dG-54qhbg,1526, https://jazz.ibm.com:9443/rm/resources/TX_Wf2ogFEhEe2d5dG-54qhbg,1527,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts @@ -497,8 +497,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_Wf6S4FEhEe2d5dG-54qhbg,1533,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WdScuVEhEe2d5dG-54qhbg,1533, https://jazz.ibm.com:9443/rm/resources/TX_Wf32oFEhEe2d5dG-54qhbg,1534,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc9Fj1EhEe2d5dG-54qhbg,1534, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w3FEhEe2d5dG-54qhbg,1535, https://jazz.ibm.com:9443/rm/resources/TX_Wf658FEhEe2d5dG-54qhbg,1535,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w3FEhEe2d5dG-54qhbg,1535, https://jazz.ibm.com:9443/rm/resources/TX_Wf8IElEhEe2d5dG-54qhbg,1536,/Terms https://jazz.ibm.com:9443/rm/resources/TX_Wf8vIFEhEe2d5dG-54qhbg,1537,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGxFlEhEe2d5dG-54qhbg,1537, @@ -510,16 +510,16 @@ https://jazz.ibm.com:9443/rm/resources/TX_Wf99QFEhEe2d5dG-54qhbg,1540,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WcXPqVEhEe2d5dG-54qhbg,1540, https://jazz.ibm.com:9443/rm/resources/TX_WgBnplEhEe2d5dG-54qhbg,1541,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcOFtVEhEe2d5dG-54qhbg,1541, -https://jazz.ibm.com:9443/rm/resources/BI_Wb8_-VEhEe2d5dG-54qhbg,1542, https://jazz.ibm.com:9443/rm/resources/TX_Wf_LYFEhEe2d5dG-54qhbg,1542,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wb8_-VEhEe2d5dG-54qhbg,1542, https://jazz.ibm.com:9443/rm/resources/TX_WgAZgFEhEe2d5dG-54qhbg,1543,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc6FEhEe2d5dG-54qhbg,1543, https://jazz.ibm.com:9443/rm/resources/TX_Wf_ycFEhEe2d5dG-54qhbg,1544,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc1wwVEhEe2d5dG-54qhbg,1544, -https://jazz.ibm.com:9443/rm/resources/BI_Wc9FgFEhEe2d5dG-54qhbg,1545, https://jazz.ibm.com:9443/rm/resources/TX_WgBAkFEhEe2d5dG-54qhbg,1545,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w3VEhEe2d5dG-54qhbg,1546, +https://jazz.ibm.com:9443/rm/resources/BI_Wc9FgFEhEe2d5dG-54qhbg,1545, https://jazz.ibm.com:9443/rm/resources/TX_WgCOsFEhEe2d5dG-54qhbg,1546,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w3VEhEe2d5dG-54qhbg,1546, https://jazz.ibm.com:9443/rm/resources/BI_WcOFtlEhEe2d5dG-54qhbg,1546, https://jazz.ibm.com:9443/rm/resources/TX_WgFSAVEhEe2d5dG-54qhbg,1547,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGxDVEhEe2d5dG-54qhbg,1547, @@ -545,8 +545,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgI8YVEhEe2d5dG-54qhbg,1557,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WcGxE1EhEe2d5dG-54qhbg,1557, https://jazz.ibm.com:9443/rm/resources/TX_WgKKgFEhEe2d5dG-54qhbg,1558,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdXVO1EhEe2d5dG-54qhbg,1558, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w7VEhEe2d5dG-54qhbg,1559, https://jazz.ibm.com:9443/rm/resources/TX_WgI8YFEhEe2d5dG-54qhbg,1559,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w7VEhEe2d5dG-54qhbg,1559, https://jazz.ibm.com:9443/rm/resources/TX_WgL_sFEhEe2d5dG-54qhbg,1560,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcOFtFEhEe2d5dG-54qhbg,1560, https://jazz.ibm.com:9443/rm/resources/TX_WgKKgVEhEe2d5dG-54qhbg,1561,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts @@ -557,8 +557,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgJjclEhEe2d5dG-54qhbg,1563,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WchAuVEhEe2d5dG-54qhbg,1563, https://jazz.ibm.com:9443/rm/resources/TX_WgMmwFEhEe2d5dG-54qhbg,1564,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGw-VEhEe2d5dG-54qhbg,1564, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1wzFEhEe2d5dG-54qhbg,1565, https://jazz.ibm.com:9443/rm/resources/TX_WgNN0FEhEe2d5dG-54qhbg,1565,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1wzFEhEe2d5dG-54qhbg,1565, https://jazz.ibm.com:9443/rm/resources/TX_WgNN0VEhEe2d5dG-54qhbg,1566,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdScz1EhEe2d5dG-54qhbg,1566, https://jazz.ibm.com:9443/rm/resources/TX_WgN04FEhEe2d5dG-54qhbg,1567,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts @@ -571,26 +571,26 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgRfQFEhEe2d5dG-54qhbg,1570,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WchAtlEhEe2d5dG-54qhbg,1570, https://jazz.ibm.com:9443/rm/resources/TX_WgRfQVEhEe2d5dG-54qhbg,1571,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchAslEhEe2d5dG-54qhbg,1571, -https://jazz.ibm.com:9443/rm/resources/BI_WdXVNVEhEe2d5dG-54qhbg,1572, https://jazz.ibm.com:9443/rm/resources/TX_WgQRIFEhEe2d5dG-54qhbg,1572,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_WdXVNVEhEe2d5dG-54qhbg,1572, https://jazz.ibm.com:9443/rm/resources/TX_WgQRIVEhEe2d5dG-54qhbg,1573,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdScwlEhEe2d5dG-54qhbg,1573, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w1FEhEe2d5dG-54qhbg,1574, https://jazz.ibm.com:9443/rm/resources/TX_WgTUcFEhEe2d5dG-54qhbg,1574,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w1FEhEe2d5dG-54qhbg,1574, https://jazz.ibm.com:9443/rm/resources/TX_WgT7gFEhEe2d5dG-54qhbg,1575,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGxAlEhEe2d5dG-54qhbg,1575, https://jazz.ibm.com:9443/rm/resources/TX_WgSGVlEhEe2d5dG-54qhbg,1576,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc1FEhEe2d5dG-54qhbg,1576, https://jazz.ibm.com:9443/rm/resources/TX_WgUikFEhEe2d5dG-54qhbg,1577,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchAq1EhEe2d5dG-54qhbg,1577, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1wylEhEe2d5dG-54qhbg,1578, https://jazz.ibm.com:9443/rm/resources/TX_WgStYFEhEe2d5dG-54qhbg,1578,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1wzlEhEe2d5dG-54qhbg,1579, +https://jazz.ibm.com:9443/rm/resources/BI_Wc1wylEhEe2d5dG-54qhbg,1578, https://jazz.ibm.com:9443/rm/resources/TX_WgVwsFEhEe2d5dG-54qhbg,1579,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1wzlEhEe2d5dG-54qhbg,1579, https://jazz.ibm.com:9443/rm/resources/TX_WgVJoVEhEe2d5dG-54qhbg,1580,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPvFEhEe2d5dG-54qhbg,1580, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w0lEhEe2d5dG-54qhbg,1581, https://jazz.ibm.com:9443/rm/resources/TX_WgVJoFEhEe2d5dG-54qhbg,1581,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w0lEhEe2d5dG-54qhbg,1581, https://jazz.ibm.com:9443/rm/resources/TX_WgWXwVEhEe2d5dG-54qhbg,1582,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc4VEhEe2d5dG-54qhbg,1582, https://jazz.ibm.com:9443/rm/resources/BI_Wb9AAFEhEe2d5dG-54qhbg,1583, @@ -601,8 +601,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_Wc1w01EhEe2d5dG-54qhbg,1585, https://jazz.ibm.com:9443/rm/resources/TX_WgWXwFEhEe2d5dG-54qhbg,1585,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_WgPqEFEhEe2d5dG-54qhbg,1586,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPulEhEe2d5dG-54qhbg,1586, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1wzVEhEe2d5dG-54qhbg,1587, https://jazz.ibm.com:9443/rm/resources/TX_WgYM8VEhEe2d5dG-54qhbg,1587,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1wzVEhEe2d5dG-54qhbg,1587, https://jazz.ibm.com:9443/rm/resources/BI_Wb9AAVEhEe2d5dG-54qhbg,1588, https://jazz.ibm.com:9443/rm/resources/TX_WgZbEFEhEe2d5dG-54qhbg,1588,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_WgYM8FEhEe2d5dG-54qhbg,1589,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -615,8 +615,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgapMFEhEe2d5dG-54qhbg,1592,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WcXPvlEhEe2d5dG-54qhbg,1592, https://jazz.ibm.com:9443/rm/resources/TX_Wgb3UFEhEe2d5dG-54qhbg,1593,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcOFs1EhEe2d5dG-54qhbg,1593, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1xE1EhEe2d5dG-54qhbg,1594, https://jazz.ibm.com:9443/rm/resources/TX_WgapMVEhEe2d5dG-54qhbg,1594,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1xE1EhEe2d5dG-54qhbg,1594, https://jazz.ibm.com:9443/rm/resources/BI_Wb8_-lEhEe2d5dG-54qhbg,1595, https://jazz.ibm.com:9443/rm/resources/TX_WgaCIFEhEe2d5dG-54qhbg,1595,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_WgceYFEhEe2d5dG-54qhbg,1596,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -625,12 +625,12 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgceYVEhEe2d5dG-54qhbg,1597,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WdXVPlEhEe2d5dG-54qhbg,1597, https://jazz.ibm.com:9443/rm/resources/TX_Wge6oFEhEe2d5dG-54qhbg,1598,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc4FEhEe2d5dG-54qhbg,1598, -https://jazz.ibm.com:9443/rm/resources/BI_Wc9FklEhEe2d5dG-54qhbg,1599, https://jazz.ibm.com:9443/rm/resources/TX_WgeTkFEhEe2d5dG-54qhbg,1599,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1xAlEhEe2d5dG-54qhbg,1600, +https://jazz.ibm.com:9443/rm/resources/BI_Wc9FklEhEe2d5dG-54qhbg,1599, https://jazz.ibm.com:9443/rm/resources/TX_WgdsgVEhEe2d5dG-54qhbg,1600,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w8FEhEe2d5dG-54qhbg,1601, +https://jazz.ibm.com:9443/rm/resources/BI_Wc1xAlEhEe2d5dG-54qhbg,1600, https://jazz.ibm.com:9443/rm/resources/TX_WggIwFEhEe2d5dG-54qhbg,1601,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w8FEhEe2d5dG-54qhbg,1601, https://jazz.ibm.com:9443/rm/resources/TX_WgdsgFEhEe2d5dG-54qhbg,1602,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcImIlEhEe2d5dG-54qhbg,1602, https://jazz.ibm.com:9443/rm/resources/TX_WghW4FEhEe2d5dG-54qhbg,1603,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts @@ -642,8 +642,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_WdSc0VEhEe2d5dG-54qhbg,1605, https://jazz.ibm.com:9443/rm/resources/BI_Wb8__1EhEe2d5dG-54qhbg,1606, https://jazz.ibm.com:9443/rm/resources/TX_Wgh98FEhEe2d5dG-54qhbg,1606,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_Wggv0FEhEe2d5dG-54qhbg,1607,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1wx1EhEe2d5dG-54qhbg,1608, https://jazz.ibm.com:9443/rm/resources/TX_WgfhsFEhEe2d5dG-54qhbg,1608,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1wx1EhEe2d5dG-54qhbg,1608, https://jazz.ibm.com:9443/rm/resources/TX_WgjMEFEhEe2d5dG-54qhbg,1609,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGxHVEhEe2d5dG-54qhbg,1609, https://jazz.ibm.com:9443/rm/resources/TX_WgilAFEhEe2d5dG-54qhbg,1610,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -652,20 +652,20 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgjzIVEhEe2d5dG-54qhbg,1611,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WcXPuVEhEe2d5dG-54qhbg,1611, https://jazz.ibm.com:9443/rm/resources/BI_Wc1JslEhEe2d5dG-54qhbg,1612, https://jazz.ibm.com:9443/rm/resources/TX_WgmPYFEhEe2d5dG-54qhbg,1612,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc9FjVEhEe2d5dG-54qhbg,1613, https://jazz.ibm.com:9443/rm/resources/TX_Wgm2cFEhEe2d5dG-54qhbg,1613,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc9FjVEhEe2d5dG-54qhbg,1613, https://jazz.ibm.com:9443/rm/resources/BI_Wb8_81EhEe2d5dG-54qhbg,1614, https://jazz.ibm.com:9443/rm/resources/TX_WgkaMFEhEe2d5dG-54qhbg,1614,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_WgmPYVEhEe2d5dG-54qhbg,1615,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc5VEhEe2d5dG-54qhbg,1615, https://jazz.ibm.com:9443/rm/resources/TX_Wgm2cVEhEe2d5dG-54qhbg,1616,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc41EhEe2d5dG-54qhbg,1616, -https://jazz.ibm.com:9443/rm/resources/BI_Wc8eclEhEe2d5dG-54qhbg,1617, https://jazz.ibm.com:9443/rm/resources/TX_WgjzIFEhEe2d5dG-54qhbg,1617,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc8eclEhEe2d5dG-54qhbg,1617, https://jazz.ibm.com:9443/rm/resources/BI_Wc1w61EhEe2d5dG-54qhbg,1618, https://jazz.ibm.com:9443/rm/resources/TX_WgloUFEhEe2d5dG-54qhbg,1618,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1xC1EhEe2d5dG-54qhbg,1619, https://jazz.ibm.com:9443/rm/resources/TX_WgpSsVEhEe2d5dG-54qhbg,1619,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1xC1EhEe2d5dG-54qhbg,1619, https://jazz.ibm.com:9443/rm/resources/TX_WgoroFEhEe2d5dG-54qhbg,1620,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdScxlEhEe2d5dG-54qhbg,1620, https://jazz.ibm.com:9443/rm/resources/TX_WgndgFEhEe2d5dG-54qhbg,1621,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -674,14 +674,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgpSsFEhEe2d5dG-54qhbg,1622,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WdSczlEhEe2d5dG-54qhbg,1622, https://jazz.ibm.com:9443/rm/resources/BI_Wb8_9FEhEe2d5dG-54qhbg,1623, https://jazz.ibm.com:9443/rm/resources/TX_Wgqg0FEhEe2d5dG-54qhbg,1623,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc1xBVEhEe2d5dG-54qhbg,1624, https://jazz.ibm.com:9443/rm/resources/TX_WgkaMVEhEe2d5dG-54qhbg,1624,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1xBVEhEe2d5dG-54qhbg,1624, https://jazz.ibm.com:9443/rm/resources/TX_WgrH4FEhEe2d5dG-54qhbg,1625,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc7FEhEe2d5dG-54qhbg,1625, -https://jazz.ibm.com:9443/rm/resources/BI_WcGw-1EhEe2d5dG-54qhbg,1626, https://jazz.ibm.com:9443/rm/resources/TX_WguLMVEhEe2d5dG-54qhbg,1626,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_WcGxB1EhEe2d5dG-54qhbg,1627, +https://jazz.ibm.com:9443/rm/resources/BI_WcGw-1EhEe2d5dG-54qhbg,1626, https://jazz.ibm.com:9443/rm/resources/TX_Wgru8FEhEe2d5dG-54qhbg,1627,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_WcGxB1EhEe2d5dG-54qhbg,1627, https://jazz.ibm.com:9443/rm/resources/TX_WguLMFEhEe2d5dG-54qhbg,1628,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchAvFEhEe2d5dG-54qhbg,1628, https://jazz.ibm.com:9443/rm/resources/TX_WgrH5FEhEe2d5dG-54qhbg,1629,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -692,30 +692,30 @@ https://jazz.ibm.com:9443/rm/resources/TX_WguyQFEhEe2d5dG-54qhbg,1631,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WdSc61EhEe2d5dG-54qhbg,1631, https://jazz.ibm.com:9443/rm/resources/TX_WgtkIFEhEe2d5dG-54qhbg,1632,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPslEhEe2d5dG-54qhbg,1632, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1xEFEhEe2d5dG-54qhbg,1633, https://jazz.ibm.com:9443/rm/resources/TX_WgxOgFEhEe2d5dG-54qhbg,1633,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1xEFEhEe2d5dG-54qhbg,1633, https://jazz.ibm.com:9443/rm/resources/TX_WgwncVEhEe2d5dG-54qhbg,1634,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcXPq1EhEe2d5dG-54qhbg,1634, https://jazz.ibm.com:9443/rm/resources/TX_WgwncFEhEe2d5dG-54qhbg,1635,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGxGlEhEe2d5dG-54qhbg,1635, -https://jazz.ibm.com:9443/rm/resources/BI_WdScxVEhEe2d5dG-54qhbg,1636, https://jazz.ibm.com:9443/rm/resources/TX_WgwAYFEhEe2d5dG-54qhbg,1636,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Wc9FhFEhEe2d5dG-54qhbg,1637, +https://jazz.ibm.com:9443/rm/resources/BI_WdScxVEhEe2d5dG-54qhbg,1636, https://jazz.ibm.com:9443/rm/resources/TX_WgsWAFEhEe2d5dG-54qhbg,1637,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc9FhFEhEe2d5dG-54qhbg,1637, https://jazz.ibm.com:9443/rm/resources/TX_WgycoFEhEe2d5dG-54qhbg,1638,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchApVEhEe2d5dG-54qhbg,1638, https://jazz.ibm.com:9443/rm/resources/TX_Wgx1kVEhEe2d5dG-54qhbg,1639,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchArVEhEe2d5dG-54qhbg,1639, -https://jazz.ibm.com:9443/rm/resources/BI_WcGxBVEhEe2d5dG-54qhbg,1640, https://jazz.ibm.com:9443/rm/resources/TX_Wgx1kFEhEe2d5dG-54qhbg,1640,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_WcGxBVEhEe2d5dG-54qhbg,1640, https://jazz.ibm.com:9443/rm/resources/TX_Wg0R0FEhEe2d5dG-54qhbg,1641,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc9FkFEhEe2d5dG-54qhbg,1641, https://jazz.ibm.com:9443/rm/resources/TX_WgzqwFEhEe2d5dG-54qhbg,1642,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_WchArFEhEe2d5dG-54qhbg,1642, https://jazz.ibm.com:9443/rm/resources/TX_WgzDsFEhEe2d5dG-54qhbg,1643,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGxCFEhEe2d5dG-54qhbg,1643, -https://jazz.ibm.com:9443/rm/resources/BI_WcGw8VEhEe2d5dG-54qhbg,1644, https://jazz.ibm.com:9443/rm/resources/TX_WgzqwVEhEe2d5dG-54qhbg,1644,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_WcGw8VEhEe2d5dG-54qhbg,1644, https://jazz.ibm.com:9443/rm/resources/BI_Wb8_9VEhEe2d5dG-54qhbg,1645, https://jazz.ibm.com:9443/rm/resources/TX_WgycoVEhEe2d5dG-54qhbg,1645,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_Wg044FEhEe2d5dG-54qhbg,1646,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts @@ -732,8 +732,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_Wg5KUFEhEe2d5dG-54qhbg,1651,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_Wc1xFVEhEe2d5dG-54qhbg,1651, https://jazz.ibm.com:9443/rm/resources/TX_Wg4jQFEhEe2d5dG-54qhbg,1652,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdXVOlEhEe2d5dG-54qhbg,1652, -https://jazz.ibm.com:9443/rm/resources/BI_Wc1w5FEhEe2d5dG-54qhbg,1653, https://jazz.ibm.com:9443/rm/resources/TX_Wg2HAFEhEe2d5dG-54qhbg,1653,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wc1w5FEhEe2d5dG-54qhbg,1653, https://jazz.ibm.com:9443/rm/resources/TX_Wg38MFEhEe2d5dG-54qhbg,1654,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc9FjFEhEe2d5dG-54qhbg,1654, https://jazz.ibm.com:9443/rm/resources/TX_Wg3VIlEhEe2d5dG-54qhbg,1655,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts diff --git a/elmclient/tests/results/test136.csv b/elmclient/tests/results/test136.csv index 4b378ae..edfc04b 100644 --- a/elmclient/tests/results/test136.csv +++ b/elmclient/tests/results/test136.csv @@ -1,52 +1,52 @@ $uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/resources/TX_9qPkYFEhEe2d5dG-54qhbg,3909,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRklEhEe2d5dG-54qhbg,3909, -https://jazz.ibm.com:9443/rm/resources/TX_9qZVYFEhEe2d5dG-54qhbg,3932,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9qPkYFEhEe2d5dG-54qhbg,3909,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kC1EhEe2d5dG-54qhbg,3932, -https://jazz.ibm.com:9443/rm/resources/TX_9qcYsFEhEe2d5dG-54qhbg,3936,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9qZVYFEhEe2d5dG-54qhbg,3932,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mL1EhEe2d5dG-54qhbg,3936, -https://jazz.ibm.com:9443/rm/resources/TX_9qgqIFEhEe2d5dG-54qhbg,3946,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9qcYsFEhEe2d5dG-54qhbg,3936,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnlEhEe2d5dG-54qhbg,3946, -https://jazz.ibm.com:9443/rm/resources/TX_9qnX0lEhEe2d5dG-54qhbg,3962,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9qgqIFEhEe2d5dG-54qhbg,3946,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBi1EhEe2d5dG-54qhbg,3962, -https://jazz.ibm.com:9443/rm/resources/TX_9qyW8FEhEe2d5dG-54qhbg,3972,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9qnX0lEhEe2d5dG-54qhbg,3962,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,3972, +https://jazz.ibm.com:9443/rm/resources/TX_9qyW8FEhEe2d5dG-54qhbg,3972,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9q32gFEhEe2d5dG-54qhbg,3980,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt__1EhEe2d5dG-54qhbg,3980, -https://jazz.ibm.com:9443/rm/resources/TX_9rQ4EFEhEe2d5dG-54qhbg,4026,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBlEhEe2d5dG-54qhbg,4026, -https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rQ4EFEhEe2d5dG-54qhbg,4026,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmFEhEe2d5dG-54qhbg,4041, https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,4041, -https://jazz.ibm.com:9443/rm/resources/TX_9re6gFEhEe2d5dG-54qhbg,4052,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBr1EhEe2d5dG-54qhbg,4052, -https://jazz.ibm.com:9443/rm/resources/TX_9ruLEFEhEe2d5dG-54qhbg,4077,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9re6gFEhEe2d5dG-54qhbg,4052,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnFEhEe2d5dG-54qhbg,4077, -https://jazz.ibm.com:9443/rm/resources/TX_9r6_YFEhEe2d5dG-54qhbg,4107,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9ruLEFEhEe2d5dG-54qhbg,4077,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,4107, -https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9r6_YFEhEe2d5dG-54qhbg,4107,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128, -https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,4140,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,4140, -https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,4140,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRlVEhEe2d5dG-54qhbg,4146, -https://jazz.ibm.com:9443/rm/resources/TX_9sUoAFEhEe2d5dG-54qhbg,4148,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148, +https://jazz.ibm.com:9443/rm/resources/TX_9sUoAFEhEe2d5dG-54qhbg,4148,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sYSYVEhEe2d5dG-54qhbg,4151,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnVEhEe2d5dG-54qhbg,4151, https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBrVEhEe2d5dG-54qhbg,4192, -https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpoFEhEe2d5dG-54qhbg,4195, -https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,4196, -https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200, +https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s8TEFEhEe2d5dG-54qhbg,4206,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBsVEhEe2d5dG-54qhbg,4206, https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBwVEhEe2d5dG-54qhbg,4213, -https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMFEhEe2d5dG-54qhbg,4258, +https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259, diff --git a/elmclient/tests/results/test137.csv b/elmclient/tests/results/test137.csv index 9137c1f..0274f69 100644 --- a/elmclient/tests/results/test137.csv +++ b/elmclient/tests/results/test137.csv @@ -1,121 +1,121 @@ -$uri,Accepted,Contributor,Created On,Creator,Identifier,Mitigates,Modified On,Primary Text,Priority,Requirement Type,Satisfies,Schedule,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://jazz.net/ns/rm/navigation#parent,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/TX_9soKAFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.288Z,https://jazz.ibm.com:9443/jts/users/ibm,4178,,2022-10-21T09:23:07.288Z,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the address of each account. For completed (read) accounts, the display",,Functional,,,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,"['Test', 'Analysis']",rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9qHBk1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.288Z,https://jazz.ibm.com:9443/jts/users/ibm,4178,,2022-10-21T09:23:07.288Z,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the address of each account. For completed (read) accounts, the display",,Functional,3941,,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,"['Test', 'Analysis']",rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,System Requirement +$uri,Accepted,Contributor,Created On,Creator,Identifier,Mitigates,Modified On,Primary Text,Priority,Requirement Type,Satisfies,Schedule,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://jazz.net/ns/rm/navigation#parent,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape +https://jazz.ibm.com:9443/rm/resources/TX_9soKAFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.288Z,https://jazz.ibm.com:9443/jts/users/ibm,4178,,2022-10-21T09:23:07.288Z,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the address of each account. For completed (read) accounts, the display",,Functional,,,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,"['Test', 'Analysis']",rp1:_9WxOwFEhEe2d5dG-54qhbg,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_9h4SkFEhEe2d5dG-54qhbg,,http://jazz.net/ns/rm#Text,System Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9qHBk1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.288Z,https://jazz.ibm.com:9443/jts/users/ibm,4178,,2022-10-21T09:23:07.288Z,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the address of each account. For completed (read) accounts, the display",,Functional,3941,,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,"['Test', 'Analysis']",rp1:_9WxOwFEhEe2d5dG-54qhbg,,rp0:_9h4SkFEhEe2d5dG-54qhbg,3889,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9qXgMVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.277Z,https://jazz.ibm.com:9443/jts/users/ibm,3925,,2022-10-21T09:23:07.277Z,"Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB) Memory - 12GB fully buffered DIMM -,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3954,,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punFFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,3958,,2022-10-21T09:23:07.109Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,,3959,,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punHFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,3965,,2022-10-21T09:23:07.111Z,meter irregularities;,Rejected,meter irregularities;,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3972,,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3974,,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punEVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3976,,2022-10-21T09:23:07.114Z,Description,,Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt_9lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3978,,2022-10-21T09:23:07.108Z,Intended Use,,Intended Use,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt__1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.138Z,https://jazz.ibm.com:9443/jts/users/ibm,,3980,,2022-10-21T09:23:07.138Z,The AMR system shall have an operational life of no less than five years.,,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3986,,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.121Z,https://jazz.ibm.com:9443/jts/users/ibm,,3987,,2023-03-14T12:11:27.815Z,"Some text -The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",In Process,Some text,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement +$uri,Accepted,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape +https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.310Z,https://jazz.ibm.com:9443/jts/users/ibm,3900,3900,,2022-10-21T09:23:07.310Z,,,Image 3,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punLFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.258Z,https://jazz.ibm.com:9443/jts/users/ibm,3903,3903,,2022-10-21T09:23:07.258Z,,,Image 4,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.306Z,https://jazz.ibm.com:9443/jts/users/ibm,3904,3904,,2022-10-21T09:23:07.306Z,,,Image 5,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3914,,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.307Z,https://jazz.ibm.com:9443/jts/users/ibm,,3915,4058,2022-10-21T09:23:07.307Z,,,Upaload Usage Data Locally,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Diagram,Diagrams and sketches +https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,3916,,2022-10-21T09:23:07.123Z,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,3917,,2022-10-21T09:23:07.123Z,"Definitions Acronyms, and Abbreviations",,"Definitions Acronyms, and Abbreviations",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punHVEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3920,,2022-10-21T09:23:07.143Z,damage equipment (such as broken seals);,Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,3924,,2022-10-21T09:23:07.118Z,Meter reading in the most cost effective manner possible,In Process,Meter reading in the most cost effective manner possible,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,,3926,,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punI1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,,3938,,2022-10-21T09:23:07.119Z,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQ1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,,3939,,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punIVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,3941,,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punH1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3943,,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punKFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3945,,2022-10-21T09:23:07.127Z,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punJlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3951,,2022-10-21T09:23:07.144Z,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punOFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3953,,2022-10-21T09:23:07.127Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3954,,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punFFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,3958,,2022-10-21T09:23:07.109Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,,3959,,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punHFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,3965,,2022-10-21T09:23:07.111Z,meter irregularities;,Rejected,meter irregularities;,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3972,,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3974,,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punEVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3976,,2022-10-21T09:23:07.114Z,Description,,Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3978,,2022-10-21T09:23:07.108Z,Intended Use,,Intended Use,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt__1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.138Z,https://jazz.ibm.com:9443/jts/users/ibm,,3980,,2022-10-21T09:23:07.138Z,The AMR system shall have an operational life of no less than five years.,,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3986,,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.121Z,https://jazz.ibm.com:9443/jts/users/ibm,,3987,,2022-10-21T09:23:07.121Z,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punDFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.154Z,https://jazz.ibm.com:9443/jts/users/ibm,,3989,,2022-10-21T09:23:07.154Z,"Brazil Canada China -,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punN1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4037,,2022-10-21T09:23:07.109Z,Fixed Network Automated Meter Reading System,,Fixed Network Automated Meter Reading System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4041,,2022-10-21T09:23:07.107Z,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punKVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,4042,,2022-10-21T09:23:07.137Z,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4043,,2022-10-21T09:23:07.129Z,"A system goal of 100% accurate, 100% reliable, 100% of the time",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,4047,,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.133Z,https://jazz.ibm.com:9443/jts/users/ibm,,4051,,2022-10-21T09:23:07.133Z,Reliability and Service,,Reliability and Service,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,4054,,2022-10-21T09:23:07.144Z,Purpose of the Document,,Purpose of the Document,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4059,,2022-10-21T09:23:07.143Z,Usability,,Usability,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4062,,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.110Z,https://jazz.ibm.com:9443/jts/users/ibm,,4064,,2022-10-21T09:23:07.110Z,Regulatory,,Regulatory,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.147Z,https://jazz.ibm.com:9443/jts/users/ibm,,4065,,2022-10-21T09:23:07.147Z,The handheld device shall record leakage data on the central office data store.,In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4076,,2022-10-21T09:23:07.122Z,Introduction,,Introduction,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4081,,2022-10-21T09:23:07.122Z,User Characteristics,,User Characteristics,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.131Z,https://jazz.ibm.com:9443/jts/users/ibm,,4082,,2022-10-21T09:23:07.131Z,Any portable equipment shall be yellow.,,Any portable equipment shall be yellow.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4084,,2022-10-21T09:23:07.111Z,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4092,,2022-10-21T09:23:07.112Z,Scope of the System,,Scope of the System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt_91EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,4095,,2022-10-21T09:23:07.127Z,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,,4107,,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punHlEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4108,,2022-10-21T09:23:07.146Z,"impediments to meter access, including dogs;",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4115,,2022-10-21T09:23:07.129Z,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.145Z,https://jazz.ibm.com:9443/jts/users/ibm,,4121,,2022-10-21T09:23:07.145Z,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4125,,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4128,,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4130,,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,,4137,,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4140,,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.120Z,https://jazz.ibm.com:9443/jts/users/ibm,,4148,,2022-10-21T09:23:07.120Z,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4154,,2022-10-21T09:23:07.122Z,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4160,,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4169,,2022-10-21T09:23:07.143Z,Product Perspective,,Product Perspective,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4180,,2022-10-21T09:23:07.111Z,Support conservation monitoring and enforcement,Obsolete,Support conservation monitoring and enforcement,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.117Z,https://jazz.ibm.com:9443/jts/users/ibm,,4181,,2022-10-21T09:23:07.117Z,Performance,,Performance,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,,4182,,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4187,,2022-10-21T09:23:07.132Z,Ability to perform advanced data analysis of incremental meter readings,,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.128Z,https://jazz.ibm.com:9443/jts/users/ibm,,4188,,2022-10-21T09:23:07.128Z,Maximization of existing investments in meter reading technology,Postponed,Maximization of existing investments in meter reading technology,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.124Z,https://jazz.ibm.com:9443/jts/users/ibm,,4194,,2022-10-21T09:23:07.124Z,Configuration,,Configuration,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4196,,2022-10-21T09:23:07.118Z,The AMR System control computer must operate on the most recent Windows platform currently available.,In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_-1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4202,,2022-10-21T09:23:07.109Z,General Description,,General Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4204,,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4207,,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4217,,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,,4219,,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4220,,2022-10-21T09:23:07.132Z,ANSI 1252 Latin 1 for CSV Export,,ANSI 1252 Latin 1 for CSV Export,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4230,,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,4240,,2022-10-21T09:23:07.114Z,Control Computer and Related Hardware,,Control Computer and Related Hardware,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4254,,2022-10-21T09:23:07.111Z,Assumptions and Dependencies,,Assumptions and Dependencies,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,4259,,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement +

,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punN1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4037,,2022-10-21T09:23:07.109Z,Fixed Network Automated Meter Reading System,,Fixed Network Automated Meter Reading System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4041,,2022-10-21T09:23:07.107Z,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punKVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,4042,,2022-10-21T09:23:07.137Z,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4043,,2022-10-21T09:23:07.129Z,"A system goal of 100% accurate, 100% reliable, 100% of the time",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,4047,,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.133Z,https://jazz.ibm.com:9443/jts/users/ibm,,4051,,2022-10-21T09:23:07.133Z,Reliability and Service,,Reliability and Service,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,4054,,2022-10-21T09:23:07.144Z,Purpose of the Document,,Purpose of the Document,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4059,,2022-10-21T09:23:07.143Z,Usability,,Usability,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4062,,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.110Z,https://jazz.ibm.com:9443/jts/users/ibm,,4064,,2022-10-21T09:23:07.110Z,Regulatory,,Regulatory,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.147Z,https://jazz.ibm.com:9443/jts/users/ibm,,4065,,2022-10-21T09:23:07.147Z,The handheld device shall record leakage data on the central office data store.,In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4076,,2022-10-21T09:23:07.122Z,Introduction,,Introduction,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4081,,2022-10-21T09:23:07.122Z,User Characteristics,,User Characteristics,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.131Z,https://jazz.ibm.com:9443/jts/users/ibm,,4082,,2022-10-21T09:23:07.131Z,Any portable equipment shall be yellow.,,Any portable equipment shall be yellow.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4084,,2022-10-21T09:23:07.111Z,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4092,,2022-10-21T09:23:07.112Z,Scope of the System,,Scope of the System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_91EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,4095,,2022-10-21T09:23:07.127Z,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,,4107,,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punHlEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4108,,2022-10-21T09:23:07.146Z,"impediments to meter access, including dogs;",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4115,,2022-10-21T09:23:07.129Z,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.145Z,https://jazz.ibm.com:9443/jts/users/ibm,,4121,,2022-10-21T09:23:07.145Z,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4125,,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4128,,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4130,,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,,4137,,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4140,,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.120Z,https://jazz.ibm.com:9443/jts/users/ibm,,4148,,2022-10-21T09:23:07.120Z,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4154,,2022-10-21T09:23:07.122Z,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4160,,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4169,,2022-10-21T09:23:07.143Z,Product Perspective,,Product Perspective,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4180,,2022-10-21T09:23:07.111Z,Support conservation monitoring and enforcement,Obsolete,Support conservation monitoring and enforcement,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.117Z,https://jazz.ibm.com:9443/jts/users/ibm,,4181,,2022-10-21T09:23:07.117Z,Performance,,Performance,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,,4182,,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4187,,2022-10-21T09:23:07.132Z,Ability to perform advanced data analysis of incremental meter readings,,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.128Z,https://jazz.ibm.com:9443/jts/users/ibm,,4188,,2022-10-21T09:23:07.128Z,Maximization of existing investments in meter reading technology,Postponed,Maximization of existing investments in meter reading technology,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.124Z,https://jazz.ibm.com:9443/jts/users/ibm,,4194,,2022-10-21T09:23:07.124Z,Configuration,,Configuration,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4196,,2022-10-21T09:23:07.118Z,The AMR System control computer must operate on the most recent Windows platform currently available.,In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4202,,2022-10-21T09:23:07.109Z,General Description,,General Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4204,,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4207,,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4217,,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,,4219,,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4220,,2022-10-21T09:23:07.132Z,ANSI 1252 Latin 1 for CSV Export,,ANSI 1252 Latin 1 for CSV Export,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4230,,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,4240,,2022-10-21T09:23:07.114Z,Control Computer and Related Hardware,,Control Computer and Related Hardware,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4254,,2022-10-21T09:23:07.111Z,Assumptions and Dependencies,,Assumptions and Dependencies,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,4259,,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test146.csv b/elmclient/tests/results/test146.csv index 5676fc5..5788b39 100644 --- a/elmclient/tests/results/test146.csv +++ b/elmclient/tests/results/test146.csv @@ -1,67 +1,66 @@ -$uri,Accepted,Contributor,Created On,Creator,Identifier,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3914,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,3916,2022-10-21T09:23:07.123Z,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punHVEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,3920,2022-10-21T09:23:07.143Z,damage equipment (such as broken seals);,Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,3924,2022-10-21T09:23:07.118Z,Meter reading in the most cost effective manner possible,In Process,Meter reading in the most cost effective manner possible,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,3926,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punI1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,3938,2022-10-21T09:23:07.119Z,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQ1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,3939,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punIVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,3941,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punH1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,3943,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punKFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,3945,2022-10-21T09:23:07.127Z,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punJlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,3951,2022-10-21T09:23:07.144Z,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punOFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,3953,2022-10-21T09:23:07.127Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3954,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punFFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,3958,2022-10-21T09:23:07.109Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,3959,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punHFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,3965,2022-10-21T09:23:07.111Z,meter irregularities;,Rejected,meter irregularities;,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,3972,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,3974,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.138Z,https://jazz.ibm.com:9443/jts/users/ibm,3980,2022-10-21T09:23:07.138Z,The AMR system shall have an operational life of no less than five years.,,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,3986,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.121Z,https://jazz.ibm.com:9443/jts/users/ibm,3987,2023-03-14T12:11:27.815Z,"Some text -The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",In Process,Some text,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement +$uri,Accepted,Contributor,Created On,Creator,Identifier,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape +https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3914,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,3916,2022-10-21T09:23:07.123Z,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punHVEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,3920,2022-10-21T09:23:07.143Z,damage equipment (such as broken seals);,Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,3924,2022-10-21T09:23:07.118Z,Meter reading in the most cost effective manner possible,In Process,Meter reading in the most cost effective manner possible,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,3926,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punI1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,3938,2022-10-21T09:23:07.119Z,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQ1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,3939,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punIVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,3941,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punH1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,3943,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punKFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,3945,2022-10-21T09:23:07.127Z,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punJlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,3951,2022-10-21T09:23:07.144Z,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punOFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,3953,2022-10-21T09:23:07.127Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,3954,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punFFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,3958,2022-10-21T09:23:07.109Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,3959,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punHFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,3965,2022-10-21T09:23:07.111Z,meter irregularities;,Rejected,meter irregularities;,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,3972,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,3974,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.138Z,https://jazz.ibm.com:9443/jts/users/ibm,3980,2022-10-21T09:23:07.138Z,The AMR system shall have an operational life of no less than five years.,,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,3986,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.121Z,https://jazz.ibm.com:9443/jts/users/ibm,3987,2022-10-21T09:23:07.121Z,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punDFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.154Z,https://jazz.ibm.com:9443/jts/users/ibm,3989,2022-10-21T09:23:07.154Z,"Brazil Canada China -,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,4041,2022-10-21T09:23:07.107Z,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punKVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,4042,2022-10-21T09:23:07.137Z,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,4043,2022-10-21T09:23:07.129Z,"A system goal of 100% accurate, 100% reliable, 100% of the time",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,4047,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,4062,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.147Z,https://jazz.ibm.com:9443/jts/users/ibm,4065,2022-10-21T09:23:07.147Z,The handheld device shall record leakage data on the central office data store.,In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.131Z,https://jazz.ibm.com:9443/jts/users/ibm,4082,2022-10-21T09:23:07.131Z,Any portable equipment shall be yellow.,,Any portable equipment shall be yellow.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,4107,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punHlEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,4108,2022-10-21T09:23:07.146Z,"impediments to meter access, including dogs;",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,4115,2022-10-21T09:23:07.129Z,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.145Z,https://jazz.ibm.com:9443/jts/users/ibm,4121,2022-10-21T09:23:07.145Z,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,4125,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4128,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,4130,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,4137,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4140,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,4154,2022-10-21T09:23:07.122Z,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,4160,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4180,2022-10-21T09:23:07.111Z,Support conservation monitoring and enforcement,Obsolete,Support conservation monitoring and enforcement,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,4182,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4187,2022-10-21T09:23:07.132Z,Ability to perform advanced data analysis of incremental meter readings,,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.128Z,https://jazz.ibm.com:9443/jts/users/ibm,4188,2022-10-21T09:23:07.128Z,Maximization of existing investments in meter reading technology,Postponed,Maximization of existing investments in meter reading technology,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,4196,2022-10-21T09:23:07.118Z,The AMR System control computer must operate on the most recent Windows platform currently available.,In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4204,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,4207,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4217,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,4219,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4230,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,4259,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement +,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,4041,2022-10-21T09:23:07.107Z,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punKVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,4042,2022-10-21T09:23:07.137Z,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,4043,2022-10-21T09:23:07.129Z,"A system goal of 100% accurate, 100% reliable, 100% of the time",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,4047,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,4062,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.147Z,https://jazz.ibm.com:9443/jts/users/ibm,4065,2022-10-21T09:23:07.147Z,The handheld device shall record leakage data on the central office data store.,In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.131Z,https://jazz.ibm.com:9443/jts/users/ibm,4082,2022-10-21T09:23:07.131Z,Any portable equipment shall be yellow.,,Any portable equipment shall be yellow.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,4107,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punHlEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,4108,2022-10-21T09:23:07.146Z,"impediments to meter access, including dogs;",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,4115,2022-10-21T09:23:07.129Z,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.145Z,https://jazz.ibm.com:9443/jts/users/ibm,4121,2022-10-21T09:23:07.145Z,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,4125,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4128,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,4130,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,4137,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4140,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,4154,2022-10-21T09:23:07.122Z,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,4160,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4180,2022-10-21T09:23:07.111Z,Support conservation monitoring and enforcement,Obsolete,Support conservation monitoring and enforcement,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,4182,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4187,2022-10-21T09:23:07.132Z,Ability to perform advanced data analysis of incremental meter readings,,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.128Z,https://jazz.ibm.com:9443/jts/users/ibm,4188,2022-10-21T09:23:07.128Z,Maximization of existing investments in meter reading technology,Postponed,Maximization of existing investments in meter reading technology,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,4196,2022-10-21T09:23:07.118Z,The AMR System control computer must operate on the most recent Windows platform currently available.,In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4204,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,4207,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,4217,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,4219,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,4230,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,4259,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test147.csv b/elmclient/tests/results/test147.csv index 6aa815a..75e7313 100644 --- a/elmclient/tests/results/test147.csv +++ b/elmclient/tests/results/test147.csv @@ -1,98 +1,97 @@ -$uri,Accepted,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.310Z,https://jazz.ibm.com:9443/jts/users/ibm,3900,3900,,2022-10-21T09:23:07.310Z,,,Image 3,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punLFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.258Z,https://jazz.ibm.com:9443/jts/users/ibm,3903,3903,,2022-10-21T09:23:07.258Z,,,Image 4,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.306Z,https://jazz.ibm.com:9443/jts/users/ibm,3904,3904,,2022-10-21T09:23:07.306Z,,,Image 5,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3914,,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.307Z,https://jazz.ibm.com:9443/jts/users/ibm,,3915,4058,2022-10-21T09:23:07.307Z,,,Upaload Usage Data Locally,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Diagram,Diagrams and sketches -https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,3916,,2022-10-21T09:23:07.123Z,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_-VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,3917,,2022-10-21T09:23:07.123Z,"Definitions Acronyms, and Abbreviations",,"Definitions Acronyms, and Abbreviations",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punHVEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3920,,2022-10-21T09:23:07.143Z,damage equipment (such as broken seals);,Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,3924,,2022-10-21T09:23:07.118Z,Meter reading in the most cost effective manner possible,In Process,Meter reading in the most cost effective manner possible,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,,3926,,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punI1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,,3938,,2022-10-21T09:23:07.119Z,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQ1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,,3939,,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punIVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,3941,,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punH1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3943,,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punKFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3945,,2022-10-21T09:23:07.127Z,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punJlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3951,,2022-10-21T09:23:07.144Z,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punOFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3953,,2022-10-21T09:23:07.127Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3954,,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punFFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,3958,,2022-10-21T09:23:07.109Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,,3959,,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punHFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,3965,,2022-10-21T09:23:07.111Z,meter irregularities;,Rejected,meter irregularities;,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3972,,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3974,,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punEVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3976,,2022-10-21T09:23:07.114Z,Description,,Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt_9lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3978,,2022-10-21T09:23:07.108Z,Intended Use,,Intended Use,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt__1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.138Z,https://jazz.ibm.com:9443/jts/users/ibm,,3980,,2022-10-21T09:23:07.138Z,The AMR system shall have an operational life of no less than five years.,,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3986,,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.121Z,https://jazz.ibm.com:9443/jts/users/ibm,,3987,,2023-03-14T12:11:27.815Z,"Some text -The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",In Process,Some text,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement +$uri,Accepted,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape +https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.310Z,https://jazz.ibm.com:9443/jts/users/ibm,3900,3900,,2022-10-21T09:23:07.310Z,,,Image 3,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punLFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.258Z,https://jazz.ibm.com:9443/jts/users/ibm,3903,3903,,2022-10-21T09:23:07.258Z,,,Image 4,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.306Z,https://jazz.ibm.com:9443/jts/users/ibm,3904,3904,,2022-10-21T09:23:07.306Z,,,Image 5,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3914,,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.307Z,https://jazz.ibm.com:9443/jts/users/ibm,,3915,4058,2022-10-21T09:23:07.307Z,,,Upaload Usage Data Locally,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Diagram,Diagrams and sketches +https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,3916,,2022-10-21T09:23:07.123Z,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,3917,,2022-10-21T09:23:07.123Z,"Definitions Acronyms, and Abbreviations",,"Definitions Acronyms, and Abbreviations",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punHVEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3920,,2022-10-21T09:23:07.143Z,damage equipment (such as broken seals);,Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,3924,,2022-10-21T09:23:07.118Z,Meter reading in the most cost effective manner possible,In Process,Meter reading in the most cost effective manner possible,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,,3926,,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punI1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,,3938,,2022-10-21T09:23:07.119Z,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQ1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,,3939,,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punIVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,3941,,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punH1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3943,,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punKFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3945,,2022-10-21T09:23:07.127Z,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punJlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3951,,2022-10-21T09:23:07.144Z,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punOFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3953,,2022-10-21T09:23:07.127Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3954,,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punFFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,3958,,2022-10-21T09:23:07.109Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,,3959,,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punHFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,3965,,2022-10-21T09:23:07.111Z,meter irregularities;,Rejected,meter irregularities;,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3972,,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3974,,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punEVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3976,,2022-10-21T09:23:07.114Z,Description,,Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3978,,2022-10-21T09:23:07.108Z,Intended Use,,Intended Use,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt__1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.138Z,https://jazz.ibm.com:9443/jts/users/ibm,,3980,,2022-10-21T09:23:07.138Z,The AMR system shall have an operational life of no less than five years.,,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3986,,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.121Z,https://jazz.ibm.com:9443/jts/users/ibm,,3987,,2022-10-21T09:23:07.121Z,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punDFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.154Z,https://jazz.ibm.com:9443/jts/users/ibm,,3989,,2022-10-21T09:23:07.154Z,"Brazil Canada China -,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punN1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4037,,2022-10-21T09:23:07.109Z,Fixed Network Automated Meter Reading System,,Fixed Network Automated Meter Reading System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4041,,2022-10-21T09:23:07.107Z,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punKVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,4042,,2022-10-21T09:23:07.137Z,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4043,,2022-10-21T09:23:07.129Z,"A system goal of 100% accurate, 100% reliable, 100% of the time",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,4047,,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.133Z,https://jazz.ibm.com:9443/jts/users/ibm,,4051,,2022-10-21T09:23:07.133Z,Reliability and Service,,Reliability and Service,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,4054,,2022-10-21T09:23:07.144Z,Purpose of the Document,,Purpose of the Document,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4059,,2022-10-21T09:23:07.143Z,Usability,,Usability,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4062,,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.110Z,https://jazz.ibm.com:9443/jts/users/ibm,,4064,,2022-10-21T09:23:07.110Z,Regulatory,,Regulatory,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.147Z,https://jazz.ibm.com:9443/jts/users/ibm,,4065,,2022-10-21T09:23:07.147Z,The handheld device shall record leakage data on the central office data store.,In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4076,,2022-10-21T09:23:07.122Z,Introduction,,Introduction,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4081,,2022-10-21T09:23:07.122Z,User Characteristics,,User Characteristics,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.131Z,https://jazz.ibm.com:9443/jts/users/ibm,,4082,,2022-10-21T09:23:07.131Z,Any portable equipment shall be yellow.,,Any portable equipment shall be yellow.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4084,,2022-10-21T09:23:07.111Z,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4092,,2022-10-21T09:23:07.112Z,Scope of the System,,Scope of the System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt_91EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,4095,,2022-10-21T09:23:07.127Z,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,,4107,,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punHlEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4108,,2022-10-21T09:23:07.146Z,"impediments to meter access, including dogs;",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4115,,2022-10-21T09:23:07.129Z,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.145Z,https://jazz.ibm.com:9443/jts/users/ibm,,4121,,2022-10-21T09:23:07.145Z,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4125,,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4128,,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4130,,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,,4137,,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4140,,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.120Z,https://jazz.ibm.com:9443/jts/users/ibm,,4148,,2022-10-21T09:23:07.120Z,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4154,,2022-10-21T09:23:07.122Z,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4160,,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4169,,2022-10-21T09:23:07.143Z,Product Perspective,,Product Perspective,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4180,,2022-10-21T09:23:07.111Z,Support conservation monitoring and enforcement,Obsolete,Support conservation monitoring and enforcement,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.117Z,https://jazz.ibm.com:9443/jts/users/ibm,,4181,,2022-10-21T09:23:07.117Z,Performance,,Performance,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,,4182,,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4187,,2022-10-21T09:23:07.132Z,Ability to perform advanced data analysis of incremental meter readings,,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.128Z,https://jazz.ibm.com:9443/jts/users/ibm,,4188,,2022-10-21T09:23:07.128Z,Maximization of existing investments in meter reading technology,Postponed,Maximization of existing investments in meter reading technology,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.124Z,https://jazz.ibm.com:9443/jts/users/ibm,,4194,,2022-10-21T09:23:07.124Z,Configuration,,Configuration,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4196,,2022-10-21T09:23:07.118Z,The AMR System control computer must operate on the most recent Windows platform currently available.,In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_-1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4202,,2022-10-21T09:23:07.109Z,General Description,,General Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4204,,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4207,,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4217,,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,,4219,,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4220,,2022-10-21T09:23:07.132Z,ANSI 1252 Latin 1 for CSV Export,,ANSI 1252 Latin 1 for CSV Export,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4230,,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,4240,,2022-10-21T09:23:07.114Z,Control Computer and Related Hardware,,Control Computer and Related Hardware,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4254,,2022-10-21T09:23:07.111Z,Assumptions and Dependencies,,Assumptions and Dependencies,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,4259,,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement +

,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punN1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4037,,2022-10-21T09:23:07.109Z,Fixed Network Automated Meter Reading System,,Fixed Network Automated Meter Reading System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4041,,2022-10-21T09:23:07.107Z,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punKVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,4042,,2022-10-21T09:23:07.137Z,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4043,,2022-10-21T09:23:07.129Z,"A system goal of 100% accurate, 100% reliable, 100% of the time",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,4047,,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.133Z,https://jazz.ibm.com:9443/jts/users/ibm,,4051,,2022-10-21T09:23:07.133Z,Reliability and Service,,Reliability and Service,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,4054,,2022-10-21T09:23:07.144Z,Purpose of the Document,,Purpose of the Document,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4059,,2022-10-21T09:23:07.143Z,Usability,,Usability,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4062,,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.110Z,https://jazz.ibm.com:9443/jts/users/ibm,,4064,,2022-10-21T09:23:07.110Z,Regulatory,,Regulatory,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.147Z,https://jazz.ibm.com:9443/jts/users/ibm,,4065,,2022-10-21T09:23:07.147Z,The handheld device shall record leakage data on the central office data store.,In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4076,,2022-10-21T09:23:07.122Z,Introduction,,Introduction,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4081,,2022-10-21T09:23:07.122Z,User Characteristics,,User Characteristics,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.131Z,https://jazz.ibm.com:9443/jts/users/ibm,,4082,,2022-10-21T09:23:07.131Z,Any portable equipment shall be yellow.,,Any portable equipment shall be yellow.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4084,,2022-10-21T09:23:07.111Z,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4092,,2022-10-21T09:23:07.112Z,Scope of the System,,Scope of the System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_91EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,4095,,2022-10-21T09:23:07.127Z,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,,4107,,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punHlEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4108,,2022-10-21T09:23:07.146Z,"impediments to meter access, including dogs;",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4115,,2022-10-21T09:23:07.129Z,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.145Z,https://jazz.ibm.com:9443/jts/users/ibm,,4121,,2022-10-21T09:23:07.145Z,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4125,,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4128,,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4130,,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,,4137,,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4140,,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.120Z,https://jazz.ibm.com:9443/jts/users/ibm,,4148,,2022-10-21T09:23:07.120Z,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4154,,2022-10-21T09:23:07.122Z,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4160,,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4169,,2022-10-21T09:23:07.143Z,Product Perspective,,Product Perspective,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4180,,2022-10-21T09:23:07.111Z,Support conservation monitoring and enforcement,Obsolete,Support conservation monitoring and enforcement,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.117Z,https://jazz.ibm.com:9443/jts/users/ibm,,4181,,2022-10-21T09:23:07.117Z,Performance,,Performance,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,,4182,,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4187,,2022-10-21T09:23:07.132Z,Ability to perform advanced data analysis of incremental meter readings,,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.128Z,https://jazz.ibm.com:9443/jts/users/ibm,,4188,,2022-10-21T09:23:07.128Z,Maximization of existing investments in meter reading technology,Postponed,Maximization of existing investments in meter reading technology,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.124Z,https://jazz.ibm.com:9443/jts/users/ibm,,4194,,2022-10-21T09:23:07.124Z,Configuration,,Configuration,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4196,,2022-10-21T09:23:07.118Z,The AMR System control computer must operate on the most recent Windows platform currently available.,In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4202,,2022-10-21T09:23:07.109Z,General Description,,General Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4204,,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4207,,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4217,,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,,4219,,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4220,,2022-10-21T09:23:07.132Z,ANSI 1252 Latin 1 for CSV Export,,ANSI 1252 Latin 1 for CSV Export,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4230,,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,4240,,2022-10-21T09:23:07.114Z,Control Computer and Related Hardware,,Control Computer and Related Hardware,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4254,,2022-10-21T09:23:07.111Z,Assumptions and Dependencies,,Assumptions and Dependencies,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,4259,,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test149.csv b/elmclient/tests/results/test149.csv index 6aa815a..75e7313 100644 --- a/elmclient/tests/results/test149.csv +++ b/elmclient/tests/results/test149.csv @@ -1,98 +1,97 @@ -$uri,Accepted,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.310Z,https://jazz.ibm.com:9443/jts/users/ibm,3900,3900,,2022-10-21T09:23:07.310Z,,,Image 3,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punLFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.258Z,https://jazz.ibm.com:9443/jts/users/ibm,3903,3903,,2022-10-21T09:23:07.258Z,,,Image 4,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.306Z,https://jazz.ibm.com:9443/jts/users/ibm,3904,3904,,2022-10-21T09:23:07.306Z,,,Image 5,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3914,,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.307Z,https://jazz.ibm.com:9443/jts/users/ibm,,3915,4058,2022-10-21T09:23:07.307Z,,,Upaload Usage Data Locally,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Diagram,Diagrams and sketches -https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,3916,,2022-10-21T09:23:07.123Z,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_-VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,3917,,2022-10-21T09:23:07.123Z,"Definitions Acronyms, and Abbreviations",,"Definitions Acronyms, and Abbreviations",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punHVEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3920,,2022-10-21T09:23:07.143Z,damage equipment (such as broken seals);,Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,3924,,2022-10-21T09:23:07.118Z,Meter reading in the most cost effective manner possible,In Process,Meter reading in the most cost effective manner possible,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,,3926,,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punI1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,,3938,,2022-10-21T09:23:07.119Z,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQ1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,,3939,,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punIVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,3941,,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punH1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3943,,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punKFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3945,,2022-10-21T09:23:07.127Z,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punJlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3951,,2022-10-21T09:23:07.144Z,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punOFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3953,,2022-10-21T09:23:07.127Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3954,,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punFFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,3958,,2022-10-21T09:23:07.109Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,,3959,,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punHFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,3965,,2022-10-21T09:23:07.111Z,meter irregularities;,Rejected,meter irregularities;,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3972,,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3974,,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punEVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3976,,2022-10-21T09:23:07.114Z,Description,,Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt_9lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3978,,2022-10-21T09:23:07.108Z,Intended Use,,Intended Use,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt__1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.138Z,https://jazz.ibm.com:9443/jts/users/ibm,,3980,,2022-10-21T09:23:07.138Z,The AMR system shall have an operational life of no less than five years.,,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3986,,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.121Z,https://jazz.ibm.com:9443/jts/users/ibm,,3987,,2023-03-14T12:11:27.815Z,"Some text -The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",In Process,Some text,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement +$uri,Accepted,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape +https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.310Z,https://jazz.ibm.com:9443/jts/users/ibm,3900,3900,,2022-10-21T09:23:07.310Z,,,Image 3,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punLFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.258Z,https://jazz.ibm.com:9443/jts/users/ibm,3903,3903,,2022-10-21T09:23:07.258Z,,,Image 4,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.306Z,https://jazz.ibm.com:9443/jts/users/ibm,3904,3904,,2022-10-21T09:23:07.306Z,,,Image 5,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3914,,2022-10-21T09:23:07.108Z,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.307Z,https://jazz.ibm.com:9443/jts/users/ibm,,3915,4058,2022-10-21T09:23:07.307Z,,,Upaload Usage Data Locally,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Diagram,Diagrams and sketches +https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,3916,,2022-10-21T09:23:07.123Z,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,3917,,2022-10-21T09:23:07.123Z,"Definitions Acronyms, and Abbreviations",,"Definitions Acronyms, and Abbreviations",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punHVEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3920,,2022-10-21T09:23:07.143Z,damage equipment (such as broken seals);,Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,3924,,2022-10-21T09:23:07.118Z,Meter reading in the most cost effective manner possible,In Process,Meter reading in the most cost effective manner possible,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.135Z,https://jazz.ibm.com:9443/jts/users/ibm,,3926,,2022-10-21T09:23:07.135Z,The meter interface unit shall be powered by a replaceable long lasting battery.,Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punI1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.119Z,https://jazz.ibm.com:9443/jts/users/ibm,,3938,,2022-10-21T09:23:07.119Z,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQ1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.115Z,https://jazz.ibm.com:9443/jts/users/ibm,,3939,,2022-10-21T09:23:07.115Z,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punIVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,3941,,2022-10-21T09:23:07.137Z,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punH1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3943,,2022-10-21T09:23:07.127Z,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punKFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3945,,2022-10-21T09:23:07.127Z,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punJlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3951,,2022-10-21T09:23:07.144Z,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punOFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,3953,,2022-10-21T09:23:07.127Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3954,,2022-10-21T09:23:07.108Z,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punFFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,3958,,2022-10-21T09:23:07.109Z,<Picture>,,,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.126Z,https://jazz.ibm.com:9443/jts/users/ibm,,3959,,2022-10-21T09:23:07.126Z,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punHFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,3965,,2022-10-21T09:23:07.111Z,meter irregularities;,Rejected,meter irregularities;,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3972,,2022-10-21T09:23:07.114Z,The control computer shall be capable of operating in a normal office environment.,Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,3974,,2022-10-21T09:23:07.143Z,The handheld device shall allow the meter reader to access account information for a given address or meter.,Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punEVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,3976,,2022-10-21T09:23:07.114Z,Description,,Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,3978,,2022-10-21T09:23:07.108Z,Intended Use,,Intended Use,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt__1EhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.138Z,https://jazz.ibm.com:9443/jts/users/ibm,,3980,,2022-10-21T09:23:07.138Z,The AMR system shall have an operational life of no less than five years.,,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punPFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,3986,,2022-10-21T09:23:07.144Z,The processing servers/computers in the system shall run in a network configuration.,Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt__VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.121Z,https://jazz.ibm.com:9443/jts/users/ibm,,3987,,2022-10-21T09:23:07.121Z,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punDFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.154Z,https://jazz.ibm.com:9443/jts/users/ibm,,3989,,2022-10-21T09:23:07.154Z,"Brazil Canada China -,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punN1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4037,,2022-10-21T09:23:07.109Z,Fixed Network Automated Meter Reading System,,Fixed Network Automated Meter Reading System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4041,,2022-10-21T09:23:07.107Z,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punKVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,4042,,2022-10-21T09:23:07.137Z,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4043,,2022-10-21T09:23:07.129Z,"A system goal of 100% accurate, 100% reliable, 100% of the time",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,4047,,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.133Z,https://jazz.ibm.com:9443/jts/users/ibm,,4051,,2022-10-21T09:23:07.133Z,Reliability and Service,,Reliability and Service,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,4054,,2022-10-21T09:23:07.144Z,Purpose of the Document,,Purpose of the Document,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4059,,2022-10-21T09:23:07.143Z,Usability,,Usability,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4062,,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.110Z,https://jazz.ibm.com:9443/jts/users/ibm,,4064,,2022-10-21T09:23:07.110Z,Regulatory,,Regulatory,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.147Z,https://jazz.ibm.com:9443/jts/users/ibm,,4065,,2022-10-21T09:23:07.147Z,The handheld device shall record leakage data on the central office data store.,In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4076,,2022-10-21T09:23:07.122Z,Introduction,,Introduction,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4081,,2022-10-21T09:23:07.122Z,User Characteristics,,User Characteristics,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.131Z,https://jazz.ibm.com:9443/jts/users/ibm,,4082,,2022-10-21T09:23:07.131Z,Any portable equipment shall be yellow.,,Any portable equipment shall be yellow.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4084,,2022-10-21T09:23:07.111Z,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4092,,2022-10-21T09:23:07.112Z,Scope of the System,,Scope of the System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt_91EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,4095,,2022-10-21T09:23:07.127Z,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,,4107,,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punHlEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4108,,2022-10-21T09:23:07.146Z,"impediments to meter access, including dogs;",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4115,,2022-10-21T09:23:07.129Z,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.145Z,https://jazz.ibm.com:9443/jts/users/ibm,,4121,,2022-10-21T09:23:07.145Z,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4125,,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4128,,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4130,,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,,4137,,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4140,,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.120Z,https://jazz.ibm.com:9443/jts/users/ibm,,4148,,2022-10-21T09:23:07.120Z,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4154,,2022-10-21T09:23:07.122Z,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4160,,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4169,,2022-10-21T09:23:07.143Z,Product Perspective,,Product Perspective,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4180,,2022-10-21T09:23:07.111Z,Support conservation monitoring and enforcement,Obsolete,Support conservation monitoring and enforcement,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.117Z,https://jazz.ibm.com:9443/jts/users/ibm,,4181,,2022-10-21T09:23:07.117Z,Performance,,Performance,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,,4182,,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4187,,2022-10-21T09:23:07.132Z,Ability to perform advanced data analysis of incremental meter readings,,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.128Z,https://jazz.ibm.com:9443/jts/users/ibm,,4188,,2022-10-21T09:23:07.128Z,Maximization of existing investments in meter reading technology,Postponed,Maximization of existing investments in meter reading technology,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.124Z,https://jazz.ibm.com:9443/jts/users/ibm,,4194,,2022-10-21T09:23:07.124Z,Configuration,,Configuration,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4196,,2022-10-21T09:23:07.118Z,The AMR System control computer must operate on the most recent Windows platform currently available.,In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_-1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4202,,2022-10-21T09:23:07.109Z,General Description,,General Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4204,,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4207,,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4217,,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,,4219,,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4220,,2022-10-21T09:23:07.132Z,ANSI 1252 Latin 1 for CSV Export,,ANSI 1252 Latin 1 for CSV Export,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4230,,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,4240,,2022-10-21T09:23:07.114Z,Control Computer and Related Hardware,,Control Computer and Related Hardware,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4254,,2022-10-21T09:23:07.111Z,Assumptions and Dependencies,,Assumptions and Dependencies,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,4259,,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,http://jazz.net/ns/rm#Text,Stakeholder Requirement +

,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punN1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4037,,2022-10-21T09:23:07.109Z,Fixed Network Automated Meter Reading System,,Fixed Network Automated Meter Reading System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4041,,2022-10-21T09:23:07.107Z,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punKVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.137Z,https://jazz.ibm.com:9443/jts/users/ibm,,4042,,2022-10-21T09:23:07.137Z,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4043,,2022-10-21T09:23:07.129Z,"A system goal of 100% accurate, 100% reliable, 100% of the time",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.108Z,https://jazz.ibm.com:9443/jts/users/ibm,,4047,,2022-10-21T09:23:07.108Z,The handheld device shall have a human readable display for information collected from the meter.,Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.133Z,https://jazz.ibm.com:9443/jts/users/ibm,,4051,,2022-10-21T09:23:07.133Z,Reliability and Service,,Reliability and Service,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.144Z,https://jazz.ibm.com:9443/jts/users/ibm,,4054,,2022-10-21T09:23:07.144Z,Purpose of the Document,,Purpose of the Document,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4059,,2022-10-21T09:23:07.143Z,Usability,,Usability,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.107Z,https://jazz.ibm.com:9443/jts/users/ibm,,4062,,2022-10-21T09:23:07.107Z,Provide accurate meter readings,Approved,Provide accurate meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.110Z,https://jazz.ibm.com:9443/jts/users/ibm,,4064,,2022-10-21T09:23:07.110Z,Regulatory,,Regulatory,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.147Z,https://jazz.ibm.com:9443/jts/users/ibm,,4065,,2022-10-21T09:23:07.147Z,The handheld device shall record leakage data on the central office data store.,In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4076,,2022-10-21T09:23:07.122Z,Introduction,,Introduction,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4081,,2022-10-21T09:23:07.122Z,User Characteristics,,User Characteristics,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.131Z,https://jazz.ibm.com:9443/jts/users/ibm,,4082,,2022-10-21T09:23:07.131Z,Any portable equipment shall be yellow.,,Any portable equipment shall be yellow.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4084,,2022-10-21T09:23:07.111Z,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4092,,2022-10-21T09:23:07.112Z,Scope of the System,,Scope of the System,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_91EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.127Z,https://jazz.ibm.com:9443/jts/users/ibm,,4095,,2022-10-21T09:23:07.127Z,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punLlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.125Z,https://jazz.ibm.com:9443/jts/users/ibm,,4107,,2022-10-21T09:23:07.125Z,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punHlEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4108,,2022-10-21T09:23:07.146Z,"impediments to meter access, including dogs;",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.129Z,https://jazz.ibm.com:9443/jts/users/ibm,,4115,,2022-10-21T09:23:07.129Z,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.145Z,https://jazz.ibm.com:9443/jts/users/ibm,,4121,,2022-10-21T09:23:07.145Z,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4125,,2022-10-21T09:23:07.118Z,The systems shall meet the following objectives:,Approved,The systems shall meet the following objectives:,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4128,,2022-10-21T09:23:07.111Z,The AMR system shall have an operational life of no less than five years.,Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.112Z,https://jazz.ibm.com:9443/jts/users/ibm,,4130,,2022-10-21T09:23:07.112Z,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.222Z,https://jazz.ibm.com:9443/jts/users/ibm,,4137,,2022-10-21T09:23:07.222Z,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld comput",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4140,,2022-10-21T09:23:07.111Z,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.120Z,https://jazz.ibm.com:9443/jts/users/ibm,,4148,,2022-10-21T09:23:07.120Z,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,false,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.122Z,https://jazz.ibm.com:9443/jts/users/ibm,,4154,,2022-10-21T09:23:07.122Z,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.146Z,https://jazz.ibm.com:9443/jts/users/ibm,,4160,,2022-10-21T09:23:07.146Z,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.143Z,https://jazz.ibm.com:9443/jts/users/ibm,,4169,,2022-10-21T09:23:07.143Z,Product Perspective,,Product Perspective,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4180,,2022-10-21T09:23:07.111Z,Support conservation monitoring and enforcement,Obsolete,Support conservation monitoring and enforcement,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.117Z,https://jazz.ibm.com:9443/jts/users/ibm,,4181,,2022-10-21T09:23:07.117Z,Performance,,Performance,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.252Z,https://jazz.ibm.com:9443/jts/users/ibm,,4182,,2022-10-21T09:23:07.252Z,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be ma",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4187,,2022-10-21T09:23:07.132Z,Ability to perform advanced data analysis of incremental meter readings,,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.128Z,https://jazz.ibm.com:9443/jts/users/ibm,,4188,,2022-10-21T09:23:07.128Z,Maximization of existing investments in meter reading technology,Postponed,Maximization of existing investments in meter reading technology,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.124Z,https://jazz.ibm.com:9443/jts/users/ibm,,4194,,2022-10-21T09:23:07.124Z,Configuration,,Configuration,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.118Z,https://jazz.ibm.com:9443/jts/users/ibm,,4196,,2022-10-21T09:23:07.118Z,The AMR System control computer must operate on the most recent Windows platform currently available.,In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4202,,2022-10-21T09:23:07.109Z,General Description,,General Description,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4204,,2022-10-21T09:23:07.132Z,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.109Z,https://jazz.ibm.com:9443/jts/users/ibm,,4207,,2022-10-21T09:23:07.109Z,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4217,,2022-10-21T09:23:07.111Z,The meter interface unit shall be compatible with MMIU.,Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.136Z,https://jazz.ibm.com:9443/jts/users/ibm,,4219,,2022-10-21T09:23:07.136Z,The handheld device shall allow for the meter reader to collect and store information from the meter.,Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4220,,2022-10-21T09:23:07.132Z,ANSI 1252 Latin 1 for CSV Export,,ANSI 1252 Latin 1 for CSV Export,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.132Z,https://jazz.ibm.com:9443/jts/users/ibm,,4230,,2022-10-21T09:23:07.132Z,The meter interface shall log leakage data on the central office data store.,Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.114Z,https://jazz.ibm.com:9443/jts/users/ibm,,4240,,2022-10-21T09:23:07.114Z,Control Computer and Related Hardware,,Control Computer and Related Hardware,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.111Z,https://jazz.ibm.com:9443/jts/users/ibm,,4254,,2022-10-21T09:23:07.111Z,Assumptions and Dependencies,,Assumptions and Dependencies,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,,https://jazz.ibm.com:9443/jts/users/ibm,2022-10-21T09:23:07.123Z,https://jazz.ibm.com:9443/jts/users/ibm,,4259,,2022-10-21T09:23:07.123Z,The Fixed Network Application software and data collection software must operate on a central server.,Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_9WxOwFEhEe2d5dG-54qhbg,rp0:_9h4SkFEhEe2d5dG-54qhbg,3891,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test301.csv b/elmclient/tests/results/test301.csv index 963e2c4..c9f71e6 100644 --- a/elmclient/tests/results/test301.csv +++ b/elmclient/tests/results/test301.csv @@ -33,58 +33,58 @@ https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/3 https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T14:18:41.072Z,https://jazz.ibm.com:9443/jts/users/marco,,,,,http://open-services.net/ns/cm#ChangeRequest,32,Fixed,rp51:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.092Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 3,Change and Configuration Management,Business Recovery Matters,rp51:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp51:schedule,SGC Planning and Tasks,32,Retrospective 32,New,Retrospective for Sprint 2,Sprint 3,Business Recovery Matters,rp51:rtc_cm:timeSheet,,Retrospective,Retrospective https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,JKE,,,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-29T12:28:41.150Z,https://jazz.ibm.com:9443/jts/users/marco,We have to get new build engines with more RAM to speed up development.,,,,http://open-services.net/ns/cm#ChangeRequest,33,Git Commits,rp53:rtc_cm:comments,Unassigned,,Normal,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.287Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,,rp53:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.201Z,https://jazz.ibm.com:9443/jts/users/marco,,rp53:schedule,SGC Planning and Tasks,33,Impediment 33,Resolved,New Build Engines required,Sprint 1,,rp53:rtc_cm:timeSheet,,Impediment,Impediment https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T11:38:41.318Z,https://jazz.ibm.com:9443/jts/users/bob,We should try to limit our meetings to half an hour.,,,,http://open-services.net/ns/cm#ChangeRequest,34,Created By,rp108:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:41.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp108:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp108:schedule,SGC Planning and Tasks,34,Impediment 34,New,Meetings are too long,Sprint 2,Business Recovery Matters,rp108:rtc_cm:timeSheet,,Impediment,Impediment -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,36: Found this SWT Exception in the logs,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,,Defect,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,,36: Found this SWT Exception in the logs,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T00:16:41.446Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),,36000000,,http://open-services.net/ns/cm#ChangeRequest,36,Time Spent,rp83:rtc_cm:comments,Unassigned,Duplicate,Critical,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.729Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp83:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.594Z,https://jazz.ibm.com:9443/jts/users/ibm,,rp83:schedule,SGC Planning and Tasks,36,Defect 36,Resolved,Found this SWT Exception in the logs,Sprint 2,,rp83:rtc_cm:timeSheet,,Defect,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,SWT Exception,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,,Defect,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,,SWT Exception,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T00:16:41.446Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),,36000000,,http://open-services.net/ns/cm#ChangeRequest,36,Time Spent,rp83:rtc_cm:comments,Unassigned,Duplicate,Critical,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.729Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp83:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.594Z,https://jazz.ibm.com:9443/jts/users/ibm,,rp83:schedule,SGC Planning and Tasks,36,Defect 36,Resolved,Found this SWT Exception in the logs,Sprint 2,,rp83:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],37: SWT Exception,,,<03:04:41>: SWT Exception,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T10:04:41.530Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),,43200000,,http://open-services.net/ns/cm#ChangeRequest,37,Affects Test Case Result,rp73:rtc_cm:comments,Medium,,Critical,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.664Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp73:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp73:schedule,SGC Planning and Tasks,37,Defect 37,New,SWT Exception,Sprint 2,Business Recovery Matters,rp73:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Web UI,,,[],[],[],"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ipvn8FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ic1NUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hy_mIFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hZHtkFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_iiUxUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_inwD4FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_il8GAFEgEe2UhZTKNaJuJg']",[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-16T09:05:41.890Z,https://jazz.ibm.com:9443/jts/users/tanuj,The picklist for selection of organizations contains no values,,14400000,Sprint 1,http://open-services.net/ns/cm#ChangeRequest,38,Implements Requirement,rp43:rtc_cm:comments,High,,Major,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.522Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,,rp43:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp43:schedule,SGC Planning and Tasks,38,Defect 38,New,Organization selection list is empty,Sprint 2,,rp43:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Web UI,,,[],[],[],"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ihXIAFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_h2kekFEgEe2UhZTKNaJuJg']",[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:41.937Z,https://jazz.ibm.com:9443/jts/users/tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,,43200000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,39,Resolves,rp125:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.248Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 3,Change and Configuration Management,,rp125:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp125:schedule,SGC Planning and Tasks,39,Defect 39,New,"Failing Test Case ""Pay Bills Online""",Sprint 3,,rp125:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/40,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Web UI,,,[],[],[],['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_h5HcQFEgEe2UhZTKNaJuJg'],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:41.997Z,https://jazz.ibm.com:9443/jts/users/tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",,43200000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,40,Promoted Build Maps,rp111:rtc_cm:comments,High,,Blocker,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.049Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,,rp111:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp111:schedule,SGC Planning and Tasks,40,Defect 40,New,Credit Increase request is registered against the wrong account,Sprint 2,,rp111:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/41,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Frequency of dividend transfer,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:42.049Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,41,Description,rp84:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.071Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp84:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp84:schedule,SGC Planning and Tasks,41,Task 41,New,Implement - Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp84:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA']",[],"['rp65:_pc5zQFEfEe2WNNAD5CjSHA', 'rp65:_pWkhwFEfEe2WNNAD5CjSHA', 'rp65:_paL2cFEfEe2WNNAD5CjSHA', 'rp65:_pJxb4FEfEe2WNNAD5CjSHA', 'rp65:_pPtEwFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Allocate Dividends by Percentage,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.104Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,42,Severity,rp74:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp74:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.167Z,https://jazz.ibm.com:9443/jts/users/deb,,rp74:schedule,SGC Planning and Tasks,42,Task 42,Done,Implement - Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp74:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA']",[],"['rp65:_pc5zQFEfEe2WNNAD5CjSHA', 'rp65:_pWkhwFEfEe2WNNAD5CjSHA', 'rp65:_paL2cFEfEe2WNNAD5CjSHA', 'rp65:_pJxb4FEfEe2WNNAD5CjSHA', 'rp65:_pPtEwFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Water Meter,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.104Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,42,Severity,rp74:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp74:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.167Z,https://jazz.ibm.com:9443/jts/users/deb,,rp74:schedule,SGC Planning and Tasks,42,Task 42,Done,Implement - Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp74:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],43: Implement - Requests sent in form of email,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:42.243Z,https://jazz.ibm.com:9443/jts/users/marco,,,115200000,,http://open-services.net/ns/cm#ChangeRequest,43,Approval Tasks,rp41:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.262Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp41:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp41:schedule,SGC Planning and Tasks,43,Task 43,New,Implement - Requests sent in form of email,Sprint 2,Business Recovery Matters,rp41:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organization must identify how much money is desired,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.291Z,https://jazz.ibm.com:9443/jts/users/marco,,,43200000,,http://open-services.net/ns/cm#ChangeRequest,44,Change Sets (Remote),rp126:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.318Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp126:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp126:schedule,SGC Planning and Tasks,44,Task 44,New,Implement - Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp126:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organizations may apply with an initial request,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.347Z,https://jazz.ibm.com:9443/jts/users/marco,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,45,Related Test Case Result,rp100:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.378Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp100:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp100:schedule,SGC Planning and Tasks,45,Task 45,New,Implement - Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp100:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_ajGQ8FEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA']",[],"['rp65:_qx7sgFEfEe2WNNAD5CjSHA', 'rp65:_q-FSIFEfEe2WNNAD5CjSHA', 'rp65:_rBlSEFEfEe2WNNAD5CjSHA', 'rp65:_q6krIFEfEe2WNNAD5CjSHA', 'rp65:_rF-C0FEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors Can Choose to Support an Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.419Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,46,Service Provider,rp102:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.587Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp102:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.507Z,https://jazz.ibm.com:9443/jts/users/deb,,rp102:schedule,SGC Planning and Tasks,46,Task 46,Done,Implement - Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp102:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Log in to JKE Banking mobile app,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.291Z,https://jazz.ibm.com:9443/jts/users/marco,,,43200000,,http://open-services.net/ns/cm#ChangeRequest,44,Change Sets (Remote),rp126:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.318Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp126:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp126:schedule,SGC Planning and Tasks,44,Task 44,New,Implement - Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp126:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],45: Implement - Organizations may apply with an initial request,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.347Z,https://jazz.ibm.com:9443/jts/users/marco,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,45,Related Test Case Result,rp100:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.378Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp100:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp100:schedule,SGC Planning and Tasks,45,Task 45,New,Implement - Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp100:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_ajGQ8FEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA']",[],"['rp65:_qx7sgFEfEe2WNNAD5CjSHA', 'rp65:_q-FSIFEfEe2WNNAD5CjSHA', 'rp65:_rBlSEFEfEe2WNNAD5CjSHA', 'rp65:_q6krIFEfEe2WNNAD5CjSHA', 'rp65:_rF-C0FEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors can choose to support an organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.419Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,46,Service Provider,rp102:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.587Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp102:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.507Z,https://jazz.ibm.com:9443/jts/users/deb,,rp102:schedule,SGC Planning and Tasks,46,Task 46,Done,Implement - Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp102:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Customers can Nominate an Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.606Z,https://jazz.ibm.com:9443/jts/users/marco,,,28800000,,http://open-services.net/ns/cm#ChangeRequest,47,Resolution,rp63:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.636Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp63:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp63:schedule,SGC Planning and Tasks,47,Task 47,New,Implement - Customers can Nominate an Organization,Sprint 2,Business Recovery Matters,rp63:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA']",[],"['rp65:_py1nAFEfEe2WNNAD5CjSHA', 'rp65:_pwSpUFEfEe2WNNAD5CjSHA', 'rp65:_poYDcFEfEe2WNNAD5CjSHA', 'rp65:_pkRmkFEfEe2WNNAD5CjSHA', 'rp65:_ptOuQFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors Chooses an Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.667Z,https://jazz.ibm.com:9443/jts/users/marco,,,72000000,,http://open-services.net/ns/cm#ChangeRequest,48,Related Test Case Result,rp67:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.824Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp67:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.757Z,https://jazz.ibm.com:9443/jts/users/marco,,rp67:schedule,SGC Planning and Tasks,48,Task 48,Done,Implement - Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp67:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA']",[],"['rp65:_py1nAFEfEe2WNNAD5CjSHA', 'rp65:_pwSpUFEfEe2WNNAD5CjSHA', 'rp65:_poYDcFEfEe2WNNAD5CjSHA', 'rp65:_pkRmkFEfEe2WNNAD5CjSHA', 'rp65:_ptOuQFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],48: Implement - Donors Chooses an Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.667Z,https://jazz.ibm.com:9443/jts/users/marco,,,72000000,,http://open-services.net/ns/cm#ChangeRequest,48,Related Test Case Result,rp67:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.824Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp67:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.757Z,https://jazz.ibm.com:9443/jts/users/marco,,rp67:schedule,SGC Planning and Tasks,48,Task 48,Done,Implement - Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp67:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organization must provide justification for why funds are needed,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.844Z,https://jazz.ibm.com:9443/jts/users/bob,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,49,Reviewed,rp121:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:42.864Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp121:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp121:schedule,SGC Planning and Tasks,49,Task 49,New,Implement - Organization must provide justification for why funds are needed,Sprint 2,Business Recovery Matters,rp121:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA']",[],"['rp65:_qFlj4FEfEe2WNNAD5CjSHA', 'rp65:_qLwdUFEfEe2WNNAD5CjSHA', 'rp65:_qIgVAFEfEe2WNNAD5CjSHA', 'rp65:_p-LUUFEfEe2WNNAD5CjSHA', 'rp65:_qQcwEFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors will receive confirmation and receipt,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.904Z,https://jazz.ibm.com:9443/jts/users/marco,,,43200000,,http://open-services.net/ns/cm#ChangeRequest,50,Approvals,rp88:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:43.042Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp88:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.966Z,https://jazz.ibm.com:9443/jts/users/marco,,rp88:schedule,SGC Planning and Tasks,50,Task 50,Done,Implement - Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp88:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],51: Implement - Organizations can Apply,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.083Z,https://jazz.ibm.com:9443/jts/users/marco,,,28800000,,http://open-services.net/ns/cm#ChangeRequest,51,Related,rp92:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.101Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp92:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp92:schedule,SGC Planning and Tasks,51,Task 51,New,Implement - Organizations can Apply,Sprint 2,Business Recovery Matters,rp92:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organizations can apply,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.083Z,https://jazz.ibm.com:9443/jts/users/marco,,,28800000,,http://open-services.net/ns/cm#ChangeRequest,51,Related,rp92:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.101Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp92:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp92:schedule,SGC Planning and Tasks,51,Task 51,New,Implement - Organizations can Apply,Sprint 2,Business Recovery Matters,rp92:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],52: Implement - Donor Dividend Allocation Criteria,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.130Z,https://jazz.ibm.com:9443/jts/users/marco,,,72000000,,http://open-services.net/ns/cm#ChangeRequest,52,Tested By Test Case,rp52:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.153Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp52:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp52:schedule,SGC Planning and Tasks,52,Task 52,New,Implement - Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp52:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],JKE Charity Coordinator responds to online request,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.179Z,https://jazz.ibm.com:9443/jts/users/bob,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,53,Complexity,rp54:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:43.196Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp54:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp54:schedule,SGC Planning and Tasks,53,Task 53,New,Implement - JKE Charity Coordinator will respond to request in the website triggering,Sprint 2,Business Recovery Matters,rp54:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_abnI4FEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_a0JksFEgEe2WNNAD5CjSHA', 'rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA']",[],"['rp65:_qYU5sFEfEe2WNNAD5CjSHA', 'rp65:_qfpCoFEfEe2WNNAD5CjSHA', 'rp65:_qsRwcFEfEe2WNNAD5CjSHA', 'rp65:_qmFB0FEfEe2WNNAD5CjSHA', 'rp65:_qika0FEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],54: Implement - Dividend Allocation by Percentage,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.225Z,https://jazz.ibm.com:9443/jts/users/marco,,,115200000,,http://open-services.net/ns/cm#ChangeRequest,54,ClearCase Activities ,rp107:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:43.336Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp107:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.290Z,https://jazz.ibm.com:9443/jts/users/deb,,rp107:schedule,SGC Planning and Tasks,54,Task 54,Done,Implement - Dividend Allocation by Percentage,Sprint 1,Business Recovery Matters,rp107:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aSBkgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6evMFEfEe2d5dG-54qhbg']",Implement - Frequency of dividend transfer,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.382Z,https://jazz.ibm.com:9443/jts/users/bob,A donor can choose the following frequencies.,,,,http://open-services.net/ns/cm#ChangeRequest,55,Promoted Build Maps,rp112:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp112:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp112:schedule,SGC Planning and Tasks,55,Story 55,New,Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp112:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aRwewVEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S4SW0FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.566Z,https://jazz.ibm.com:9443/jts/users/bob,,,,,http://open-services.net/ns/cm#ChangeRequest,56,Git Issues,rp71:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.292Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp71:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp71:schedule,SGC Planning and Tasks,56,Story 56,New,Donors Deposit Money Into a Pooled Assistance Fund,Release 1.0,Business Recovery Matters,rp71:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']","Changes in: Web UI - Allocate Dividends by Percentage (Implementation) - Deb - Oct 9, 2022 9:50 AM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['IBD AMRSystem', 'IBD_Capture Usage Data', 'FunctionalAnalysisPkg']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']",jke.qa.maintenance M20221019-0702,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['Internal Block Diagram', 'Internal Block Diagram', 'Package']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,8 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S7GaQFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aSrr0FEfEe2d5dG-54qhbg']",Implement - Requests sent in form of email,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.910Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of email.,,,,http://open-services.net/ns/cm#ChangeRequest,59,Related Artifacts,rp127:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.473Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp127:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp127:schedule,SGC Planning and Tasks,59,Story 59,New,Requests sent in form of email,Sprint 2,Business Recovery Matters,rp127:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,3 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/BI_YCyFwFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S12t4FEfEe2d5dG-54qhbg']",Implement - Organization must identify how much money is desired,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.991Z,https://jazz.ibm.com:9443/jts/users/bob,Organization must identify how much money is desired.,,,,http://open-services.net/ns/cm#ChangeRequest,60,Electronic Signatures,rp79:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.535Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp79:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp79:schedule,SGC Planning and Tasks,60,Story 60,New,Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp79:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['Package', 'Upload Usage Data Locally', 'MeterReader']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['A_ItemDefinition', 'Upload Usage Data Locally', 'MeterReader']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,1 pt,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S3r54FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFxFEfEe2d5dG-54qhbg']",Implement - Organizations may apply with an initial request,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.126Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations may apply with an initial request using the following request methods.,,,,http://open-services.net/ns/cm#ChangeRequest,62,Change Sets That Were Not Promoted,rp130:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.658Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp130:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp130:schedule,SGC Planning and Tasks,62,Story 62,New,Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp130:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",brm.continuous C20221020-0047,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",jke.qa.maintenance.vs M20221019-0244,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,2 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S72BIFEfEe2d5dG-54qhbg'],64: Customers can Nominate an Organization,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.974Z,https://jazz.ibm.com:9443/jts/users/bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,,,,http://open-services.net/ns/cm#ChangeRequest,64,importer dependency,rp96:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.072Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp96:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp96:schedule,SGC Planning and Tasks,64,Story 64,New,Customers can Nominate an Organization,Sprint 2,Business Recovery Matters,rp96:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg'],"Changes in: Database - Donors Can Choose to Support an Organization (Implementation) - Marco - Oct 10, 2022 3:08 PM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.049Z,https://jazz.ibm.com:9443/jts/users/bob,Donor identifies a specific organization.,,,,http://open-services.net/ns/cm#ChangeRequest,65,Related Change Request,rp69:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.137Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp69:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.148Z,https://jazz.ibm.com:9443/jts/users/marco,Zero,rp69:schedule,SGC Planning and Tasks,65,Story 65,Done,Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp69:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg'],jke.qa Q20221019-0814,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.049Z,https://jazz.ibm.com:9443/jts/users/bob,Donor identifies a specific organization.,,,,http://open-services.net/ns/cm#ChangeRequest,65,Related Change Request,rp69:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.137Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp69:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.148Z,https://jazz.ibm.com:9443/jts/users/marco,Zero,rp69:schedule,SGC Planning and Tasks,65,Story 65,Done,Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp69:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/66,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,1 pt,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S3qrwFEfEe2d5dG-54qhbg'],66: Organization must provide justification for why funds are needed,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eICXUVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.251Z,https://jazz.ibm.com:9443/jts/users/bob,Organization must provide justification for why funds are needed.,,,,http://open-services.net/ns/cm#ChangeRequest,66,Work Items Included in Packages,rp58:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp58:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp58:schedule,SGC Planning and Tasks,66,Story 66,New,Organization must provide justification for why funds are needed,Sprint 2,Business Recovery Matters,rp58:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],"['PhysicalArchitectureOverview_IOT', 'Environment Model Decomposition']",,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S1pSgFEfEe2d5dG-54qhbg'],[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJFgMFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:45.343Z,https://jazz.ibm.com:9443/jts/users/bob,Donation amount cannot exceed donation limit specified in user profile; Donation amount cannot exceed 100%.,,,,http://open-services.net/ns/cm#ChangeRequest,67,Parent,rp122:rtc_cm:comments,Low,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.046Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp122:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp122:schedule,SGC Planning and Tasks,67,Story 67,New,Donation by amount,Release 1.0,Business Recovery Matters,rp122:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,3 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg'],brm.continuous C20221006-1016,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.387Z,https://jazz.ibm.com:9443/jts/users/bob,Donors will receive confirmation and receipt.,,,,http://open-services.net/ns/cm#ChangeRequest,68,Extracted From,rp124:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp124:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.481Z,https://jazz.ibm.com:9443/jts/users/marco,Medium,rp124:schedule,SGC Planning and Tasks,68,Story 68,Done,Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp124:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,2 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S6MbUFEfEe2d5dG-54qhbg'],Implement - Organizations can Apply,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.583Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,,,,http://open-services.net/ns/cm#ChangeRequest,69,Resolved By,rp91:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.411Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp91:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp91:schedule,SGC Planning and Tasks,69,Story 69,New,Organizations can Apply,Sprint 2,Business Recovery Matters,rp91:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg'],70: Donor Dividend Allocation Criteria,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:45.683Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose allocation options for their dividends to a cause.,,,,http://open-services.net/ns/cm#ChangeRequest,70,Related Test Plan,rp55:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.474Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp55:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp55:schedule,SGC Planning and Tasks,70,Story 70,New,Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp55:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,3 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg'],"Changes in: Web UI - Donors will receive confirmation and receipt (Implementation) - Bob - Oct 13, 2022 1:08 PM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.387Z,https://jazz.ibm.com:9443/jts/users/bob,Donors will receive confirmation and receipt.,,,,http://open-services.net/ns/cm#ChangeRequest,68,Extracted From,rp124:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp124:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.481Z,https://jazz.ibm.com:9443/jts/users/marco,Medium,rp124:schedule,SGC Planning and Tasks,68,Story 68,Done,Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp124:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,2 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S6MbUFEfEe2d5dG-54qhbg'],69: Organizations can Apply,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.583Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,,,,http://open-services.net/ns/cm#ChangeRequest,69,Resolved By,rp91:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.411Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp91:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp91:schedule,SGC Planning and Tasks,69,Story 69,New,Organizations can Apply,Sprint 2,Business Recovery Matters,rp91:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg'],Implement - Donor Dividend Allocation Criteria,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:45.683Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose allocation options for their dividends to a cause.,,,,http://open-services.net/ns/cm#ChangeRequest,70,Related Test Plan,rp55:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.474Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp55:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp55:schedule,SGC Planning and Tasks,70,Story 70,New,Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp55:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,1 pt,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S8KKMFEfEe2d5dG-54qhbg'],Implement - JKE Charity Coordinator will respond to request in the website triggering,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eOQUEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.786Z,https://jazz.ibm.com:9443/jts/users/bob,JKE Charity Coordinator will respond to request in the website triggering an email notification to Organizational Single Point of Contact.,,,,http://open-services.net/ns/cm#ChangeRequest,71,Creation Date,rp57:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.545Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp57:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp57:schedule,SGC Planning and Tasks,71,Story 71,New,JKE Charity Coordinator will respond to request in the website triggering,Sprint 2,Business Recovery Matters,rp57:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,8 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg'],"Changes in: Banking Logic - Dividend Allocation by Percentage (Implementation) - Deb - Oct 16, 2022 1:20 AM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.866Z,https://jazz.ibm.com:9443/jts/users/bob,Dividends will be allocated to organization from a percentage of dividend earnings.,,,,http://open-services.net/ns/cm#ChangeRequest,72,Repository,rp115:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.605Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp115:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.008Z,https://jazz.ibm.com:9443/jts/users/deb,Low,rp115:schedule,SGC Planning and Tasks,72,Story 72,Done,Dividend Allocation by Percentage,Sprint 1,Business Recovery Matters,rp115:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,8 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg'],Implement - Dividend Allocation by Percentage,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.866Z,https://jazz.ibm.com:9443/jts/users/bob,Dividends will be allocated to organization from a percentage of dividend earnings.,,,,http://open-services.net/ns/cm#ChangeRequest,72,Repository,rp115:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.605Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp115:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.008Z,https://jazz.ibm.com:9443/jts/users/deb,Low,rp115:schedule,SGC Planning and Tasks,72,Story 72,Done,Dividend Allocation by Percentage,Sprint 1,Business Recovery Matters,rp115:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],"['rp65:_kt67oFEfEe2WNNAD5CjSHA', 'rp65:_kV6EQFEfEe2WNNAD5CjSHA']",[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S8DcgFEfEe2d5dG-54qhbg'],[],Mobile donor can contribute,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eaIz8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:46.118Z,https://jazz.ibm.com:9443/jts/users/marco,"Establish the base JKE Mobile prototype, including the Worklight project with the JKE Mobile app and necessary adapters.",,115200000,,http://open-services.net/ns/cm#ChangeRequest,73,Project Area,rp116:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:13:44.835Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp116:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.193Z,https://jazz.ibm.com:9443/jts/users/deb,,rp116:schedule,SGC Planning and Tasks,73,Task 73,Done,Implement – Support Dividend Processing via Mobile Devices,Sprint 1,Business Recovery Matters,rp116:rtc_cm:timeSheet,115200000,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,Mobile,,0 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S6hygFEfEe2d5dG-54qhbg'],Mobile app must be cross platform,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ebL80VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:46.339Z,https://jazz.ibm.com:9443/jts/users/bob,Support Dividend Processing via Mobile Devices.,,,,http://open-services.net/ns/cm#ChangeRequest,74,Predecessor,rp78:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.716Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp78:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.430Z,https://jazz.ibm.com:9443/jts/users/marco,High,rp78:schedule,SGC Planning and Tasks,74,Story 74,Done,Support Dividend Processing via Mobile Devices,Sprint 1,Business Recovery Matters,rp78:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/75,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:46.540Z,https://jazz.ibm.com:9443/jts/users/curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,,,,http://open-services.net/ns/cm#ChangeRequest,75,Related Artifacts,rp80:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/curtis,,false,false,false,false,false,false,2022-10-21T09:05:46.566Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp80:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp80:schedule,SGC Planning and Tasks,75,Story 75,New,Allocate Dividends To Multiple Causes,,Business Recovery Matters,rp80:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Validate Loan term and amount,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.597Z,https://jazz.ibm.com:9443/jts/users/marco,,,57600000,,http://open-services.net/ns/cm#ChangeRequest,76,Related Test Case Result,rp129:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:46.618Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp129:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp129:schedule,SGC Planning and Tasks,76,Task 76,New,Implement - Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp129:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],77: Implement - Borrowers Can View Total Cost of Loan,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:46.642Z,https://jazz.ibm.com:9443/jts/users/marco,,,86400000,,http://open-services.net/ns/cm#ChangeRequest,77,ClearCase Versions,rp131:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:46.764Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp131:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.705Z,https://jazz.ibm.com:9443/jts/users/dave,,rp131:schedule,SGC Planning and Tasks,77,Task 77,Done,Implement - Borrowers Can View Total Cost of Loan,Sprint 1,Business Recovery Matters,rp131:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Validate Loan Term and Amount,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.597Z,https://jazz.ibm.com:9443/jts/users/marco,,,57600000,,http://open-services.net/ns/cm#ChangeRequest,76,Related Test Case Result,rp129:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:46.618Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp129:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp129:schedule,SGC Planning and Tasks,76,Task 76,New,Implement - Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp129:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Borrowers Can View Total Cost of Loan,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:46.642Z,https://jazz.ibm.com:9443/jts/users/marco,,,86400000,,http://open-services.net/ns/cm#ChangeRequest,77,ClearCase Versions,rp131:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:46.764Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp131:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.705Z,https://jazz.ibm.com:9443/jts/users/dave,,rp131:schedule,SGC Planning and Tasks,77,Task 77,Done,Implement - Borrowers Can View Total Cost of Loan,Sprint 1,Business Recovery Matters,rp131:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,5 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S2r0UFEfEe2d5dG-54qhbg'],Implement - Validate Loan Term and Amount,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eZG5MFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.791Z,https://jazz.ibm.com:9443/jts/users/bob,"Lenders should not be able to enter unreasonable loan terms and amounts. For example, loan terms should be restricted to those that are standard in the industry (30 year, 15 year, 10 year, etc). ",,,,http://open-services.net/ns/cm#ChangeRequest,78,Deployment Result,rp95:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.658Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp95:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp95:schedule,SGC Planning and Tasks,78,Story 78,New,Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp95:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Unassigned,BRM,,3 pts,[],[],[],[],[],,,,,[],Implement - Borrowers Can View Total Cost of Loan,,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:46.871Z,https://jazz.ibm.com:9443/jts/users/bob,Borrowers should have the ability to view the total cost of their loan over the lifetime of the mortgage,,,,http://open-services.net/ns/cm#ChangeRequest,79,Code Review: Extracted work items,rp97:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:05:47.075Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp97:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.997Z,https://jazz.ibm.com:9443/jts/users/dave,High,rp97:schedule,SGC Planning and Tasks,79,Story 79,Done,Borrowers Can View Total Cost of Loan,Sprint 1,Business Recovery Matters,rp97:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],81: Detail Design - Allocate Dividends with Web Service,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.098Z,https://jazz.ibm.com:9443/jts/users/marco,Create high-level design for planning purposes.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,80,Related Test Execution Record,rp81:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.116Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp81:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp81:schedule,SGC Planning and Tasks,80,Task 80,New,Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp81:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],81: Detail Design - Allocate Dividends with Web Service,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.144Z,https://jazz.ibm.com:9443/jts/users/marco,Create the service design and generate initial implementation code.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,81,Deployment Result,rp50:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.175Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp50:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp50:schedule,SGC Planning and Tasks,81,Task 81,New,Detail Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp50:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],81: Detail Design - Allocate Dividends with Web Service,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.206Z,https://jazz.ibm.com:9443/jts/users/marco,Complete the implementation and unit test the service.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,82,Complexity,rp37:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp37:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp37:schedule,SGC Planning and Tasks,82,Task 82,New,Implement - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp37:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Unassigned,BRM,,8 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/DM_S08H4FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S3lMMFEfEe2d5dG-54qhbg']","['83: Allocate Dividends with Web Service', '83: Allocate Dividends with Web Service', '83: Allocate Dividends with Web Service']",,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.261Z,https://jazz.ibm.com:9443/jts/users/bob,Investors and their financial advisors use a web service to allocate dividends,,,,http://open-services.net/ns/cm#ChangeRequest,83,Approvals,rp106:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:43.301Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp106:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp106:schedule,SGC Planning and Tasks,83,Story 83,New,Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp106:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Service for Allocating Dividends,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.098Z,https://jazz.ibm.com:9443/jts/users/marco,Create high-level design for planning purposes.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,80,Related Test Execution Record,rp81:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.116Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp81:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp81:schedule,SGC Planning and Tasks,80,Task 80,New,Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp81:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Service for Allocating Dividends,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.144Z,https://jazz.ibm.com:9443/jts/users/marco,Create the service design and generate initial implementation code.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,81,Deployment Result,rp50:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.175Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp50:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp50:schedule,SGC Planning and Tasks,81,Task 81,New,Detail Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp50:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Service for Allocating Dividends,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.206Z,https://jazz.ibm.com:9443/jts/users/marco,Complete the implementation and unit test the service.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,82,Complexity,rp37:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp37:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp37:schedule,SGC Planning and Tasks,82,Task 82,New,Implement - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp37:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Unassigned,BRM,,8 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/DM_S08H4FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S3lMMFEfEe2d5dG-54qhbg']","['Detail Design - Allocate Dividends with Web Service', 'Design - Allocate Dividends with Web Service', 'Implement - Allocate Dividends with Web Service']",,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.261Z,https://jazz.ibm.com:9443/jts/users/bob,Investors and their financial advisors use a web service to allocate dividends,,,,http://open-services.net/ns/cm#ChangeRequest,83,Approvals,rp106:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:43.301Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp106:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp106:schedule,SGC Planning and Tasks,83,Story 83,New,Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp106:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.478Z,https://jazz.ibm.com:9443/jts/users/marco,,,,,http://open-services.net/ns/cm#ChangeRequest,84,Affects Requirement,rp98:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.515Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp98:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp98:schedule,SGC Planning and Tasks,84,Task 84,New,Summary for promote.mortgage.devtotest,,Business Recovery Matters,rp98:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.540Z,https://jazz.ibm.com:9443/jts/users/marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,,,,http://open-services.net/ns/cm#ChangeRequest,85,Extracted From,rp70:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.558Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp70:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp70:schedule,SGC Planning and Tasks,85,Task 85,New,Validate Adherence to Corporate Standard on User Lockout,,Business Recovery Matters,rp70:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,Mobile,,8 pts,[],[],[],[],"['EngineController', 'Activate ACC']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6jnsFEfEe2d5dG-54qhbg']","['86: Allocate Dividends to Nearby Charities', '86: Allocate Dividends to Nearby Charities']",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ecNQgVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.599Z,https://jazz.ibm.com:9443/jts/users/bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",,,,http://open-services.net/ns/cm#ChangeRequest,86,Code Review,rp60:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,mobile,false,false,false,false,false,false,2022-10-21T09:13:46.167Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp60:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp60:schedule,SGC Planning and Tasks,86,Story 86,New,Allocate Dividends to Nearby Charities,Release 1.0,Business Recovery Matters,rp60:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Donor Chooses Local Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.666Z,https://jazz.ibm.com:9443/jts/users/marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",,,,http://open-services.net/ns/cm#ChangeRequest,87,Iteration,rp123:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.800Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/tammy,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp123:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.756Z,https://jazz.ibm.com:9443/jts/users/tammy,,rp123:schedule,SGC Planning and Tasks,87,Task 87,Done,Create test assets for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp123:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Donor Chooses Local Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.833Z,https://jazz.ibm.com:9443/jts/users/marco,Please create requirements that elaborate on what is needed for this story.,,,,http://open-services.net/ns/cm#ChangeRequest,88,Promotion Build Result,rp118:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.991Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/bob,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp118:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.911Z,https://jazz.ibm.com:9443/jts/users/bob,,rp118:schedule,SGC Planning and Tasks,88,Task 88,Done,Elaborate requirements for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp118:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,Mobile,,8 pts,[],[],[],[],"['Actor', 'Activate ACC']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6jnsFEfEe2d5dG-54qhbg']","['86: Allocate Dividends to Nearby Charities', 'Create test assets for Allocate Dividends to Nearby Charities']",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ecNQgVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.599Z,https://jazz.ibm.com:9443/jts/users/bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",,,,http://open-services.net/ns/cm#ChangeRequest,86,Code Review,rp60:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,mobile,false,false,false,false,false,false,2022-10-21T09:13:46.167Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp60:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp60:schedule,SGC Planning and Tasks,86,Story 86,New,Allocate Dividends to Nearby Charities,Release 1.0,Business Recovery Matters,rp60:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Allocate Dividends to Nearby Charities,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.666Z,https://jazz.ibm.com:9443/jts/users/marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",,,,http://open-services.net/ns/cm#ChangeRequest,87,Iteration,rp123:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.800Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/tammy,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp123:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.756Z,https://jazz.ibm.com:9443/jts/users/tammy,,rp123:schedule,SGC Planning and Tasks,87,Task 87,Done,Create test assets for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp123:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Allocate Dividends to Nearby Charities,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.833Z,https://jazz.ibm.com:9443/jts/users/marco,Please create requirements that elaborate on what is needed for this story.,,,,http://open-services.net/ns/cm#ChangeRequest,88,Promotion Build Result,rp118:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.991Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/bob,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp118:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.911Z,https://jazz.ibm.com:9443/jts/users/bob,,rp118:schedule,SGC Planning and Tasks,88,Task 88,Done,Elaborate requirements for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp118:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:48.034Z,https://jazz.ibm.com:9443/jts/users/marco,"During the new Mortgage mobile phone application analysis, we noticed that many Calculate Mortgage requests end without producing any result. This is due to the fact that customers model loans with loan terms are not offered by potential mortgage companies. This means that when the query is run to look for mortgage companies that can service the modeled loan, none are returned to the customer and no error message is returned indicating any issue.",,,,http://open-services.net/ns/cm#ChangeRequest,89,Progress Tracking,rp93:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:48.054Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Product Backlog,Change and Configuration Management,Business Recovery Matters,rp93:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp93:schedule,SGC Planning and Tasks,89,Story 89,New,Multiplatform change due to invalid customer model loans,Product Backlog,Business Recovery Matters,rp93:rtc_cm:timeSheet,,Story,Story diff --git a/elmclient/tests/results/test302.csv b/elmclient/tests/results/test302.csv index b844cb4..e931d26 100644 --- a/elmclient/tests/results/test302.csv +++ b/elmclient/tests/results/test302.csv @@ -27,8 +27,8 @@ https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/2 https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T17:22:40.264Z,https://jazz.ibm.com:9443/jts/users/bob,"I clicked on the ""Refinancing"" link but it did not open any page.",28800000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,26,Elaborated by Architecture Element ,rp101:rtc_cm:comments,Low,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,"serviceability, globalization, evaluate",false,false,false,false,false,false,2022-10-21T09:05:40.343Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp101:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,rp101:schedule,SGC Planning and Tasks,26,Defect 26,New,Some links are not working,Sprint 2,Business Recovery Matters,rp101:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T04:17:40.381Z,https://jazz.ibm.com:9443/jts/users/rebecca,Please follow our UI guidelines about how links should look like.,18000000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,27,Service Provider,rp62:rtc_cm:comments,Medium,,Minor,New,https://jazz.ibm.com:9443/jts/users/rebecca,"idea, warehouse",false,false,false,false,false,false,2022-10-21T09:05:40.432Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/bob,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp62:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,rp62:schedule,SGC Planning and Tasks,27,Defect 27,New,Improve link colors,Sprint 2,Business Recovery Matters,rp62:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Database,[],,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T22:06:40.473Z,https://jazz.ibm.com:9443/jts/users/bob,For some reason my user account stopped working.,21600000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,28,Restricted Access,rp64:rtc_cm:comments,Low,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,"ui, install, noteworthy",false,false,false,false,false,false,2022-10-21T09:05:40.503Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp64:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,rp64:schedule,SGC Planning and Tasks,28,Defect 28,New,Login not working anymore,Sprint 2,,rp64:rtc_cm:timeSheet,,Defect,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Java UI,[],,36: Found this SWT Exception in the logs,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,,Defect,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Java UI,[],,,36: Found this SWT Exception in the logs,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T00:16:41.446Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),36000000,,http://open-services.net/ns/cm#ChangeRequest,36,Time Spent,rp83:rtc_cm:comments,Unassigned,Duplicate,Critical,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.729Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp83:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.594Z,https://jazz.ibm.com:9443/jts/users/ibm,rp83:schedule,SGC Planning and Tasks,36,Defect 36,Resolved,Found this SWT Exception in the logs,Sprint 2,,rp83:rtc_cm:timeSheet,,Defect,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Java UI,[],,SWT Exception,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,,Defect,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Java UI,[],,,SWT Exception,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T00:16:41.446Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),36000000,,http://open-services.net/ns/cm#ChangeRequest,36,Time Spent,rp83:rtc_cm:comments,Unassigned,Duplicate,Critical,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.729Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp83:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.594Z,https://jazz.ibm.com:9443/jts/users/ibm,rp83:schedule,SGC Planning and Tasks,36,Defect 36,Resolved,Found this SWT Exception in the logs,Sprint 2,,rp83:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],37: SWT Exception,,,<03:04:41>: SWT Exception,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T10:04:41.530Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),43200000,,http://open-services.net/ns/cm#ChangeRequest,37,Affects Test Case Result,rp73:rtc_cm:comments,Medium,,Critical,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.664Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp73:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,rp73:schedule,SGC Planning and Tasks,37,Defect 37,New,SWT Exception,Sprint 2,Business Recovery Matters,rp73:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Web UI,"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ipvn8FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ic1NUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hy_mIFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hZHtkFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_iiUxUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_inwD4FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_il8GAFEgEe2UhZTKNaJuJg']",,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-16T09:05:41.890Z,https://jazz.ibm.com:9443/jts/users/tanuj,The picklist for selection of organizations contains no values,14400000,Sprint 1,http://open-services.net/ns/cm#ChangeRequest,38,Implements Requirement,rp43:rtc_cm:comments,High,,Major,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.522Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,,rp43:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,rp43:schedule,SGC Planning and Tasks,38,Defect 38,New,Organization selection list is empty,Sprint 2,,rp43:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Web UI,"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ihXIAFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_h2kekFEgEe2UhZTKNaJuJg']",,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:41.937Z,https://jazz.ibm.com:9443/jts/users/tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,43200000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,39,Resolves,rp125:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.248Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 3,Change and Configuration Management,,rp125:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,rp125:schedule,SGC Planning and Tasks,39,Defect 39,New,"Failing Test Case ""Pay Bills Online""",Sprint 3,,rp125:rtc_cm:timeSheet,,Defect,Defect diff --git a/elmclient/tests/results/test303.csv b/elmclient/tests/results/test303.csv index 58226f7..938f363 100644 --- a/elmclient/tests/results/test303.csv +++ b/elmclient/tests/results/test303.csv @@ -17,7 +17,7 @@ https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/2 https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T17:22:40.264Z,https://jazz.ibm.com:9443/jts/users/bob,"I clicked on the ""Refinancing"" link but it did not open any page.",28800000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,26,Elaborated by Architecture Element ,rp101:rtc_cm:comments,Low,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,"serviceability, globalization, evaluate",false,false,false,false,false,false,2022-10-21T09:05:40.343Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp101:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp101:schedule,SGC Planning and Tasks,26,Defect 26,New,Some links are not working,Sprint 2,Business Recovery Matters,rp101:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T04:17:40.381Z,https://jazz.ibm.com:9443/jts/users/rebecca,Please follow our UI guidelines about how links should look like.,18000000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,27,Service Provider,rp62:rtc_cm:comments,Medium,Minor,New,https://jazz.ibm.com:9443/jts/users/rebecca,"idea, warehouse",false,false,false,false,false,false,2022-10-21T09:05:40.432Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/bob,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp62:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp62:schedule,SGC Planning and Tasks,27,Defect 27,New,Improve link colors,Sprint 2,Business Recovery Matters,rp62:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Database,[],,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T22:06:40.473Z,https://jazz.ibm.com:9443/jts/users/bob,For some reason my user account stopped working.,21600000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,28,Restricted Access,rp64:rtc_cm:comments,Low,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,"ui, install, noteworthy",false,false,false,false,false,false,2022-10-21T09:05:40.503Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp64:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp64:schedule,SGC Planning and Tasks,28,Defect 28,New,Login not working anymore,Sprint 2,,rp64:rtc_cm:timeSheet,Defect,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Java UI,[],,36: Found this SWT Exception in the logs,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,Defect,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Java UI,[],,SWT Exception,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],37: SWT Exception,,<03:04:41>: SWT Exception,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T10:04:41.530Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),43200000,,http://open-services.net/ns/cm#ChangeRequest,37,Affects Test Case Result,rp73:rtc_cm:comments,Medium,Critical,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.664Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp73:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp73:schedule,SGC Planning and Tasks,37,Defect 37,New,SWT Exception,Sprint 2,Business Recovery Matters,rp73:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Web UI,"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ipvn8FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ic1NUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hy_mIFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hZHtkFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_iiUxUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_inwD4FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_il8GAFEgEe2UhZTKNaJuJg']",,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-16T09:05:41.890Z,https://jazz.ibm.com:9443/jts/users/tanuj,The picklist for selection of organizations contains no values,14400000,Sprint 1,http://open-services.net/ns/cm#ChangeRequest,38,Implements Requirement,rp43:rtc_cm:comments,High,Major,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.522Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,,rp43:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp43:schedule,SGC Planning and Tasks,38,Defect 38,New,Organization selection list is empty,Sprint 2,,rp43:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Web UI,"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ihXIAFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_h2kekFEgEe2UhZTKNaJuJg']",,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:41.937Z,https://jazz.ibm.com:9443/jts/users/tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,43200000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,39,Resolves,rp125:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.248Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 3,Change and Configuration Management,,rp125:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp125:schedule,SGC Planning and Tasks,39,Defect 39,New,"Failing Test Case ""Pay Bills Online""",Sprint 3,,rp125:rtc_cm:timeSheet,Defect,Defect diff --git a/elmclient/tests/results/test305.csv b/elmclient/tests/results/test305.csv index 4af07fe..f690896 100644 --- a/elmclient/tests/results/test305.csv +++ b/elmclient/tests/results/test305.csv @@ -1,13 +1,13 @@ $uri,accessContext,accessControl,archived,businessvalue,category,com.ibm.team.apt.attribute.acceptance,com.ibm.team.apt.attribute.complexity,com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds,com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet,com.ibm.team.workitem.linktype.implementsRequirement.implements,com.ibm.team.workitem.linktype.parentworkitem.children,com.ibm.team.workitem.linktype.parentworkitem.parent,com.ibm.team.workitem.linktype.testedByTestCase.testedby,contextId,creationDate,creator,description,duration,http://www.w3.org/1999/02/22-rdf-syntax-ns#type,id,instanceShape,internalComments,internalPriority,internalSeverity,internalState,internalSubscriptions,internalTags,isApproved,isClosed,isFixed,isInProgress,isReviewed,isVerified,modified,modifiedBy,owner,process_iteration,process_projectArea,process_teamArea,progressTracking,projectArea,repository,resolutionDate,resolver,risk,schedule,serviceProvider,shortId,shortName,statusName,summary,target,teamArea,timeSheet,typeName,workItemType -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_ajGQ8FEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA']","['rp65:_qx7sgFEfEe2WNNAD5CjSHA', 'rp65:_q-FSIFEfEe2WNNAD5CjSHA', 'rp65:_rBlSEFEfEe2WNNAD5CjSHA', 'rp65:_q6krIFEfEe2WNNAD5CjSHA', 'rp65:_rF-C0FEfEe2WNNAD5CjSHA']",[],,Donors Can Choose to Support an Organization,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.419Z,https://jazz.ibm.com:9443/jts/users/marco,,144000000,http://open-services.net/ns/cm#ChangeRequest,46,Service Provider,rp102:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.587Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp102:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.507Z,https://jazz.ibm.com:9443/jts/users/deb,,rp102:schedule,SGC Planning and Tasks,46,Task 46,Done,Implement - Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp102:rtc_cm:timeSheet,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA']","['rp65:_py1nAFEfEe2WNNAD5CjSHA', 'rp65:_pwSpUFEfEe2WNNAD5CjSHA', 'rp65:_poYDcFEfEe2WNNAD5CjSHA', 'rp65:_pkRmkFEfEe2WNNAD5CjSHA', 'rp65:_ptOuQFEfEe2WNNAD5CjSHA']",[],,Donors Chooses an Organization,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.667Z,https://jazz.ibm.com:9443/jts/users/marco,,72000000,http://open-services.net/ns/cm#ChangeRequest,48,Related Test Case Result,rp67:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.824Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp67:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.757Z,https://jazz.ibm.com:9443/jts/users/marco,,rp67:schedule,SGC Planning and Tasks,48,Task 48,Done,Implement - Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp67:rtc_cm:timeSheet,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_ajGQ8FEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA']","['rp65:_qx7sgFEfEe2WNNAD5CjSHA', 'rp65:_q-FSIFEfEe2WNNAD5CjSHA', 'rp65:_rBlSEFEfEe2WNNAD5CjSHA', 'rp65:_q6krIFEfEe2WNNAD5CjSHA', 'rp65:_rF-C0FEfEe2WNNAD5CjSHA']",[],,Donors can choose to support an organization,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.419Z,https://jazz.ibm.com:9443/jts/users/marco,,144000000,http://open-services.net/ns/cm#ChangeRequest,46,Service Provider,rp102:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.587Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp102:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.507Z,https://jazz.ibm.com:9443/jts/users/deb,,rp102:schedule,SGC Planning and Tasks,46,Task 46,Done,Implement - Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp102:rtc_cm:timeSheet,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA']","['rp65:_py1nAFEfEe2WNNAD5CjSHA', 'rp65:_pwSpUFEfEe2WNNAD5CjSHA', 'rp65:_poYDcFEfEe2WNNAD5CjSHA', 'rp65:_pkRmkFEfEe2WNNAD5CjSHA', 'rp65:_ptOuQFEfEe2WNNAD5CjSHA']",[],,48: Implement - Donors Chooses an Organization,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.667Z,https://jazz.ibm.com:9443/jts/users/marco,,72000000,http://open-services.net/ns/cm#ChangeRequest,48,Related Test Case Result,rp67:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.824Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp67:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.757Z,https://jazz.ibm.com:9443/jts/users/marco,,rp67:schedule,SGC Planning and Tasks,48,Task 48,Done,Implement - Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp67:rtc_cm:timeSheet,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA']","['rp65:_qFlj4FEfEe2WNNAD5CjSHA', 'rp65:_qLwdUFEfEe2WNNAD5CjSHA', 'rp65:_qIgVAFEfEe2WNNAD5CjSHA', 'rp65:_p-LUUFEfEe2WNNAD5CjSHA', 'rp65:_qQcwEFEfEe2WNNAD5CjSHA']",[],,Donors will receive confirmation and receipt,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.904Z,https://jazz.ibm.com:9443/jts/users/marco,,43200000,http://open-services.net/ns/cm#ChangeRequest,50,Approvals,rp88:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:43.042Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp88:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.966Z,https://jazz.ibm.com:9443/jts/users/marco,,rp88:schedule,SGC Planning and Tasks,50,Task 50,Done,Implement - Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp88:rtc_cm:timeSheet,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],,52: Implement - Donor Dividend Allocation Criteria,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.130Z,https://jazz.ibm.com:9443/jts/users/marco,,72000000,http://open-services.net/ns/cm#ChangeRequest,52,Tested By Test Case,rp52:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.153Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp52:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp52:schedule,SGC Planning and Tasks,52,Task 52,New,Implement - Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp52:rtc_cm:timeSheet,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,13 pts,[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_aSBkgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6evMFEfEe2d5dG-54qhbg']",Implement - Frequency of dividend transfer,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.382Z,https://jazz.ibm.com:9443/jts/users/bob,A donor can choose the following frequencies.,,http://open-services.net/ns/cm#ChangeRequest,55,Promoted Build Maps,rp112:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp112:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp112:schedule,SGC Planning and Tasks,55,Story 55,New,Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp112:rtc_cm:timeSheet,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_aRwewVEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S4SW0FEfEe2d5dG-54qhbg']",,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.566Z,https://jazz.ibm.com:9443/jts/users/bob,,,http://open-services.net/ns/cm#ChangeRequest,56,Git Issues,rp71:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.292Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp71:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp71:schedule,SGC Planning and Tasks,56,Story 56,New,Donors Deposit Money Into a Pooled Assistance Fund,Release 1.0,Business Recovery Matters,rp71:rtc_cm:timeSheet,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']","Changes in: Web UI - Allocate Dividends by Percentage (Implementation) - Deb - Oct 9, 2022 9:50 AM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",brm.continuous C20221020-0047,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg'],"Changes in: Database - Donors Can Choose to Support an Organization (Implementation) - Marco - Oct 10, 2022 3:08 PM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.049Z,https://jazz.ibm.com:9443/jts/users/bob,Donor identifies a specific organization.,,http://open-services.net/ns/cm#ChangeRequest,65,Related Change Request,rp69:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.137Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp69:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.148Z,https://jazz.ibm.com:9443/jts/users/marco,Zero,rp69:schedule,SGC Planning and Tasks,65,Story 65,Done,Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp69:rtc_cm:timeSheet,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,3 pts,[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg'],brm.continuous C20221006-1016,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.387Z,https://jazz.ibm.com:9443/jts/users/bob,Donors will receive confirmation and receipt.,,http://open-services.net/ns/cm#ChangeRequest,68,Extracted From,rp124:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp124:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.481Z,https://jazz.ibm.com:9443/jts/users/marco,Medium,rp124:schedule,SGC Planning and Tasks,68,Story 68,Done,Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp124:rtc_cm:timeSheet,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg'],70: Donor Dividend Allocation Criteria,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:45.683Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose allocation options for their dividends to a cause.,,http://open-services.net/ns/cm#ChangeRequest,70,Related Test Plan,rp55:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.474Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp55:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp55:schedule,SGC Planning and Tasks,70,Story 70,New,Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp55:rtc_cm:timeSheet,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']",jke.qa.maintenance M20221019-0702,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",jke.qa.maintenance.vs M20221019-0244,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg'],jke.qa Q20221019-0814,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.049Z,https://jazz.ibm.com:9443/jts/users/bob,Donor identifies a specific organization.,,http://open-services.net/ns/cm#ChangeRequest,65,Related Change Request,rp69:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.137Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp69:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.148Z,https://jazz.ibm.com:9443/jts/users/marco,Zero,rp69:schedule,SGC Planning and Tasks,65,Story 65,Done,Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp69:rtc_cm:timeSheet,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,3 pts,[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg'],"Changes in: Web UI - Donors will receive confirmation and receipt (Implementation) - Bob - Oct 13, 2022 1:08 PM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.387Z,https://jazz.ibm.com:9443/jts/users/bob,Donors will receive confirmation and receipt.,,http://open-services.net/ns/cm#ChangeRequest,68,Extracted From,rp124:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp124:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.481Z,https://jazz.ibm.com:9443/jts/users/marco,Medium,rp124:schedule,SGC Planning and Tasks,68,Story 68,Done,Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp124:rtc_cm:timeSheet,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg'],Implement - Donor Dividend Allocation Criteria,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:45.683Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose allocation options for their dividends to a cause.,,http://open-services.net/ns/cm#ChangeRequest,70,Related Test Plan,rp55:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.474Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp55:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp55:schedule,SGC Planning and Tasks,70,Story 70,New,Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp55:rtc_cm:timeSheet,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/75,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:46.540Z,https://jazz.ibm.com:9443/jts/users/curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,,http://open-services.net/ns/cm#ChangeRequest,75,Related Artifacts,rp80:rtc_cm:comments,Unassigned,Normal,New,https://jazz.ibm.com:9443/jts/users/curtis,,false,false,false,false,false,false,2022-10-21T09:05:46.566Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp80:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp80:schedule,SGC Planning and Tasks,75,Story 75,New,Allocate Dividends To Multiple Causes,,Business Recovery Matters,rp80:rtc_cm:timeSheet,Story,Story diff --git a/elmclient/tests/results/test306.csv b/elmclient/tests/results/test306.csv index 963e2c4..c9f71e6 100644 --- a/elmclient/tests/results/test306.csv +++ b/elmclient/tests/results/test306.csv @@ -33,58 +33,58 @@ https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/3 https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T14:18:41.072Z,https://jazz.ibm.com:9443/jts/users/marco,,,,,http://open-services.net/ns/cm#ChangeRequest,32,Fixed,rp51:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.092Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 3,Change and Configuration Management,Business Recovery Matters,rp51:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp51:schedule,SGC Planning and Tasks,32,Retrospective 32,New,Retrospective for Sprint 2,Sprint 3,Business Recovery Matters,rp51:rtc_cm:timeSheet,,Retrospective,Retrospective https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,JKE,,,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-29T12:28:41.150Z,https://jazz.ibm.com:9443/jts/users/marco,We have to get new build engines with more RAM to speed up development.,,,,http://open-services.net/ns/cm#ChangeRequest,33,Git Commits,rp53:rtc_cm:comments,Unassigned,,Normal,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.287Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,,rp53:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.201Z,https://jazz.ibm.com:9443/jts/users/marco,,rp53:schedule,SGC Planning and Tasks,33,Impediment 33,Resolved,New Build Engines required,Sprint 1,,rp53:rtc_cm:timeSheet,,Impediment,Impediment https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T11:38:41.318Z,https://jazz.ibm.com:9443/jts/users/bob,We should try to limit our meetings to half an hour.,,,,http://open-services.net/ns/cm#ChangeRequest,34,Created By,rp108:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:41.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp108:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp108:schedule,SGC Planning and Tasks,34,Impediment 34,New,Meetings are too long,Sprint 2,Business Recovery Matters,rp108:rtc_cm:timeSheet,,Impediment,Impediment -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,36: Found this SWT Exception in the logs,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,,Defect,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,,36: Found this SWT Exception in the logs,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T00:16:41.446Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),,36000000,,http://open-services.net/ns/cm#ChangeRequest,36,Time Spent,rp83:rtc_cm:comments,Unassigned,Duplicate,Critical,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.729Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp83:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.594Z,https://jazz.ibm.com:9443/jts/users/ibm,,rp83:schedule,SGC Planning and Tasks,36,Defect 36,Resolved,Found this SWT Exception in the logs,Sprint 2,,rp83:rtc_cm:timeSheet,,Defect,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,SWT Exception,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,,Defect,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,,SWT Exception,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T00:16:41.446Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),,36000000,,http://open-services.net/ns/cm#ChangeRequest,36,Time Spent,rp83:rtc_cm:comments,Unassigned,Duplicate,Critical,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.729Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp83:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.594Z,https://jazz.ibm.com:9443/jts/users/ibm,,rp83:schedule,SGC Planning and Tasks,36,Defect 36,Resolved,Found this SWT Exception in the logs,Sprint 2,,rp83:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],37: SWT Exception,,,<03:04:41>: SWT Exception,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T10:04:41.530Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),,43200000,,http://open-services.net/ns/cm#ChangeRequest,37,Affects Test Case Result,rp73:rtc_cm:comments,Medium,,Critical,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.664Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp73:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp73:schedule,SGC Planning and Tasks,37,Defect 37,New,SWT Exception,Sprint 2,Business Recovery Matters,rp73:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Web UI,,,[],[],[],"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ipvn8FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ic1NUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hy_mIFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hZHtkFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_iiUxUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_inwD4FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_il8GAFEgEe2UhZTKNaJuJg']",[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-16T09:05:41.890Z,https://jazz.ibm.com:9443/jts/users/tanuj,The picklist for selection of organizations contains no values,,14400000,Sprint 1,http://open-services.net/ns/cm#ChangeRequest,38,Implements Requirement,rp43:rtc_cm:comments,High,,Major,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.522Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,,rp43:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp43:schedule,SGC Planning and Tasks,38,Defect 38,New,Organization selection list is empty,Sprint 2,,rp43:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Web UI,,,[],[],[],"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ihXIAFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_h2kekFEgEe2UhZTKNaJuJg']",[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:41.937Z,https://jazz.ibm.com:9443/jts/users/tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,,43200000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,39,Resolves,rp125:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.248Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 3,Change and Configuration Management,,rp125:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp125:schedule,SGC Planning and Tasks,39,Defect 39,New,"Failing Test Case ""Pay Bills Online""",Sprint 3,,rp125:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/40,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Web UI,,,[],[],[],['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_h5HcQFEgEe2UhZTKNaJuJg'],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:41.997Z,https://jazz.ibm.com:9443/jts/users/tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",,43200000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,40,Promoted Build Maps,rp111:rtc_cm:comments,High,,Blocker,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.049Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,,rp111:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp111:schedule,SGC Planning and Tasks,40,Defect 40,New,Credit Increase request is registered against the wrong account,Sprint 2,,rp111:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/41,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Frequency of dividend transfer,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:42.049Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,41,Description,rp84:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.071Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp84:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp84:schedule,SGC Planning and Tasks,41,Task 41,New,Implement - Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp84:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA']",[],"['rp65:_pc5zQFEfEe2WNNAD5CjSHA', 'rp65:_pWkhwFEfEe2WNNAD5CjSHA', 'rp65:_paL2cFEfEe2WNNAD5CjSHA', 'rp65:_pJxb4FEfEe2WNNAD5CjSHA', 'rp65:_pPtEwFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Allocate Dividends by Percentage,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.104Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,42,Severity,rp74:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp74:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.167Z,https://jazz.ibm.com:9443/jts/users/deb,,rp74:schedule,SGC Planning and Tasks,42,Task 42,Done,Implement - Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp74:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA']",[],"['rp65:_pc5zQFEfEe2WNNAD5CjSHA', 'rp65:_pWkhwFEfEe2WNNAD5CjSHA', 'rp65:_paL2cFEfEe2WNNAD5CjSHA', 'rp65:_pJxb4FEfEe2WNNAD5CjSHA', 'rp65:_pPtEwFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Water Meter,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.104Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,42,Severity,rp74:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp74:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.167Z,https://jazz.ibm.com:9443/jts/users/deb,,rp74:schedule,SGC Planning and Tasks,42,Task 42,Done,Implement - Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp74:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],43: Implement - Requests sent in form of email,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:42.243Z,https://jazz.ibm.com:9443/jts/users/marco,,,115200000,,http://open-services.net/ns/cm#ChangeRequest,43,Approval Tasks,rp41:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.262Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp41:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp41:schedule,SGC Planning and Tasks,43,Task 43,New,Implement - Requests sent in form of email,Sprint 2,Business Recovery Matters,rp41:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organization must identify how much money is desired,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.291Z,https://jazz.ibm.com:9443/jts/users/marco,,,43200000,,http://open-services.net/ns/cm#ChangeRequest,44,Change Sets (Remote),rp126:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.318Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp126:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp126:schedule,SGC Planning and Tasks,44,Task 44,New,Implement - Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp126:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organizations may apply with an initial request,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.347Z,https://jazz.ibm.com:9443/jts/users/marco,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,45,Related Test Case Result,rp100:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.378Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp100:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp100:schedule,SGC Planning and Tasks,45,Task 45,New,Implement - Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp100:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_ajGQ8FEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA']",[],"['rp65:_qx7sgFEfEe2WNNAD5CjSHA', 'rp65:_q-FSIFEfEe2WNNAD5CjSHA', 'rp65:_rBlSEFEfEe2WNNAD5CjSHA', 'rp65:_q6krIFEfEe2WNNAD5CjSHA', 'rp65:_rF-C0FEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors Can Choose to Support an Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.419Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,46,Service Provider,rp102:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.587Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp102:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.507Z,https://jazz.ibm.com:9443/jts/users/deb,,rp102:schedule,SGC Planning and Tasks,46,Task 46,Done,Implement - Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp102:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Log in to JKE Banking mobile app,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.291Z,https://jazz.ibm.com:9443/jts/users/marco,,,43200000,,http://open-services.net/ns/cm#ChangeRequest,44,Change Sets (Remote),rp126:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.318Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp126:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp126:schedule,SGC Planning and Tasks,44,Task 44,New,Implement - Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp126:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],45: Implement - Organizations may apply with an initial request,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.347Z,https://jazz.ibm.com:9443/jts/users/marco,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,45,Related Test Case Result,rp100:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.378Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp100:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp100:schedule,SGC Planning and Tasks,45,Task 45,New,Implement - Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp100:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_ajGQ8FEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA']",[],"['rp65:_qx7sgFEfEe2WNNAD5CjSHA', 'rp65:_q-FSIFEfEe2WNNAD5CjSHA', 'rp65:_rBlSEFEfEe2WNNAD5CjSHA', 'rp65:_q6krIFEfEe2WNNAD5CjSHA', 'rp65:_rF-C0FEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors can choose to support an organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.419Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,46,Service Provider,rp102:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.587Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp102:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.507Z,https://jazz.ibm.com:9443/jts/users/deb,,rp102:schedule,SGC Planning and Tasks,46,Task 46,Done,Implement - Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp102:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Customers can Nominate an Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.606Z,https://jazz.ibm.com:9443/jts/users/marco,,,28800000,,http://open-services.net/ns/cm#ChangeRequest,47,Resolution,rp63:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.636Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp63:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp63:schedule,SGC Planning and Tasks,47,Task 47,New,Implement - Customers can Nominate an Organization,Sprint 2,Business Recovery Matters,rp63:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA']",[],"['rp65:_py1nAFEfEe2WNNAD5CjSHA', 'rp65:_pwSpUFEfEe2WNNAD5CjSHA', 'rp65:_poYDcFEfEe2WNNAD5CjSHA', 'rp65:_pkRmkFEfEe2WNNAD5CjSHA', 'rp65:_ptOuQFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors Chooses an Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.667Z,https://jazz.ibm.com:9443/jts/users/marco,,,72000000,,http://open-services.net/ns/cm#ChangeRequest,48,Related Test Case Result,rp67:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.824Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp67:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.757Z,https://jazz.ibm.com:9443/jts/users/marco,,rp67:schedule,SGC Planning and Tasks,48,Task 48,Done,Implement - Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp67:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA']",[],"['rp65:_py1nAFEfEe2WNNAD5CjSHA', 'rp65:_pwSpUFEfEe2WNNAD5CjSHA', 'rp65:_poYDcFEfEe2WNNAD5CjSHA', 'rp65:_pkRmkFEfEe2WNNAD5CjSHA', 'rp65:_ptOuQFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],48: Implement - Donors Chooses an Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.667Z,https://jazz.ibm.com:9443/jts/users/marco,,,72000000,,http://open-services.net/ns/cm#ChangeRequest,48,Related Test Case Result,rp67:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.824Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp67:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.757Z,https://jazz.ibm.com:9443/jts/users/marco,,rp67:schedule,SGC Planning and Tasks,48,Task 48,Done,Implement - Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp67:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organization must provide justification for why funds are needed,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.844Z,https://jazz.ibm.com:9443/jts/users/bob,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,49,Reviewed,rp121:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:42.864Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp121:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp121:schedule,SGC Planning and Tasks,49,Task 49,New,Implement - Organization must provide justification for why funds are needed,Sprint 2,Business Recovery Matters,rp121:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA']",[],"['rp65:_qFlj4FEfEe2WNNAD5CjSHA', 'rp65:_qLwdUFEfEe2WNNAD5CjSHA', 'rp65:_qIgVAFEfEe2WNNAD5CjSHA', 'rp65:_p-LUUFEfEe2WNNAD5CjSHA', 'rp65:_qQcwEFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors will receive confirmation and receipt,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.904Z,https://jazz.ibm.com:9443/jts/users/marco,,,43200000,,http://open-services.net/ns/cm#ChangeRequest,50,Approvals,rp88:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:43.042Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp88:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.966Z,https://jazz.ibm.com:9443/jts/users/marco,,rp88:schedule,SGC Planning and Tasks,50,Task 50,Done,Implement - Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp88:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],51: Implement - Organizations can Apply,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.083Z,https://jazz.ibm.com:9443/jts/users/marco,,,28800000,,http://open-services.net/ns/cm#ChangeRequest,51,Related,rp92:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.101Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp92:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp92:schedule,SGC Planning and Tasks,51,Task 51,New,Implement - Organizations can Apply,Sprint 2,Business Recovery Matters,rp92:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organizations can apply,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.083Z,https://jazz.ibm.com:9443/jts/users/marco,,,28800000,,http://open-services.net/ns/cm#ChangeRequest,51,Related,rp92:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.101Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp92:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp92:schedule,SGC Planning and Tasks,51,Task 51,New,Implement - Organizations can Apply,Sprint 2,Business Recovery Matters,rp92:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],52: Implement - Donor Dividend Allocation Criteria,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.130Z,https://jazz.ibm.com:9443/jts/users/marco,,,72000000,,http://open-services.net/ns/cm#ChangeRequest,52,Tested By Test Case,rp52:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.153Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp52:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp52:schedule,SGC Planning and Tasks,52,Task 52,New,Implement - Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp52:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],JKE Charity Coordinator responds to online request,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.179Z,https://jazz.ibm.com:9443/jts/users/bob,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,53,Complexity,rp54:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:43.196Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp54:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp54:schedule,SGC Planning and Tasks,53,Task 53,New,Implement - JKE Charity Coordinator will respond to request in the website triggering,Sprint 2,Business Recovery Matters,rp54:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_abnI4FEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_a0JksFEgEe2WNNAD5CjSHA', 'rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA']",[],"['rp65:_qYU5sFEfEe2WNNAD5CjSHA', 'rp65:_qfpCoFEfEe2WNNAD5CjSHA', 'rp65:_qsRwcFEfEe2WNNAD5CjSHA', 'rp65:_qmFB0FEfEe2WNNAD5CjSHA', 'rp65:_qika0FEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],54: Implement - Dividend Allocation by Percentage,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.225Z,https://jazz.ibm.com:9443/jts/users/marco,,,115200000,,http://open-services.net/ns/cm#ChangeRequest,54,ClearCase Activities ,rp107:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:43.336Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp107:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.290Z,https://jazz.ibm.com:9443/jts/users/deb,,rp107:schedule,SGC Planning and Tasks,54,Task 54,Done,Implement - Dividend Allocation by Percentage,Sprint 1,Business Recovery Matters,rp107:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aSBkgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6evMFEfEe2d5dG-54qhbg']",Implement - Frequency of dividend transfer,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.382Z,https://jazz.ibm.com:9443/jts/users/bob,A donor can choose the following frequencies.,,,,http://open-services.net/ns/cm#ChangeRequest,55,Promoted Build Maps,rp112:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp112:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp112:schedule,SGC Planning and Tasks,55,Story 55,New,Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp112:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aRwewVEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S4SW0FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.566Z,https://jazz.ibm.com:9443/jts/users/bob,,,,,http://open-services.net/ns/cm#ChangeRequest,56,Git Issues,rp71:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.292Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp71:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp71:schedule,SGC Planning and Tasks,56,Story 56,New,Donors Deposit Money Into a Pooled Assistance Fund,Release 1.0,Business Recovery Matters,rp71:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']","Changes in: Web UI - Allocate Dividends by Percentage (Implementation) - Deb - Oct 9, 2022 9:50 AM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['IBD AMRSystem', 'IBD_Capture Usage Data', 'FunctionalAnalysisPkg']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']",jke.qa.maintenance M20221019-0702,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['Internal Block Diagram', 'Internal Block Diagram', 'Package']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,8 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S7GaQFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aSrr0FEfEe2d5dG-54qhbg']",Implement - Requests sent in form of email,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.910Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of email.,,,,http://open-services.net/ns/cm#ChangeRequest,59,Related Artifacts,rp127:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.473Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp127:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp127:schedule,SGC Planning and Tasks,59,Story 59,New,Requests sent in form of email,Sprint 2,Business Recovery Matters,rp127:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,3 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/BI_YCyFwFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S12t4FEfEe2d5dG-54qhbg']",Implement - Organization must identify how much money is desired,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.991Z,https://jazz.ibm.com:9443/jts/users/bob,Organization must identify how much money is desired.,,,,http://open-services.net/ns/cm#ChangeRequest,60,Electronic Signatures,rp79:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.535Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp79:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp79:schedule,SGC Planning and Tasks,60,Story 60,New,Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp79:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['Package', 'Upload Usage Data Locally', 'MeterReader']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['A_ItemDefinition', 'Upload Usage Data Locally', 'MeterReader']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,1 pt,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S3r54FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFxFEfEe2d5dG-54qhbg']",Implement - Organizations may apply with an initial request,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.126Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations may apply with an initial request using the following request methods.,,,,http://open-services.net/ns/cm#ChangeRequest,62,Change Sets That Were Not Promoted,rp130:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.658Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp130:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp130:schedule,SGC Planning and Tasks,62,Story 62,New,Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp130:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",brm.continuous C20221020-0047,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",jke.qa.maintenance.vs M20221019-0244,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,2 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S72BIFEfEe2d5dG-54qhbg'],64: Customers can Nominate an Organization,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.974Z,https://jazz.ibm.com:9443/jts/users/bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,,,,http://open-services.net/ns/cm#ChangeRequest,64,importer dependency,rp96:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.072Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp96:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp96:schedule,SGC Planning and Tasks,64,Story 64,New,Customers can Nominate an Organization,Sprint 2,Business Recovery Matters,rp96:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg'],"Changes in: Database - Donors Can Choose to Support an Organization (Implementation) - Marco - Oct 10, 2022 3:08 PM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.049Z,https://jazz.ibm.com:9443/jts/users/bob,Donor identifies a specific organization.,,,,http://open-services.net/ns/cm#ChangeRequest,65,Related Change Request,rp69:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.137Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp69:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.148Z,https://jazz.ibm.com:9443/jts/users/marco,Zero,rp69:schedule,SGC Planning and Tasks,65,Story 65,Done,Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp69:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg'],jke.qa Q20221019-0814,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.049Z,https://jazz.ibm.com:9443/jts/users/bob,Donor identifies a specific organization.,,,,http://open-services.net/ns/cm#ChangeRequest,65,Related Change Request,rp69:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.137Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp69:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.148Z,https://jazz.ibm.com:9443/jts/users/marco,Zero,rp69:schedule,SGC Planning and Tasks,65,Story 65,Done,Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp69:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/66,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,1 pt,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S3qrwFEfEe2d5dG-54qhbg'],66: Organization must provide justification for why funds are needed,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eICXUVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.251Z,https://jazz.ibm.com:9443/jts/users/bob,Organization must provide justification for why funds are needed.,,,,http://open-services.net/ns/cm#ChangeRequest,66,Work Items Included in Packages,rp58:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp58:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp58:schedule,SGC Planning and Tasks,66,Story 66,New,Organization must provide justification for why funds are needed,Sprint 2,Business Recovery Matters,rp58:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],"['PhysicalArchitectureOverview_IOT', 'Environment Model Decomposition']",,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S1pSgFEfEe2d5dG-54qhbg'],[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJFgMFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:45.343Z,https://jazz.ibm.com:9443/jts/users/bob,Donation amount cannot exceed donation limit specified in user profile; Donation amount cannot exceed 100%.,,,,http://open-services.net/ns/cm#ChangeRequest,67,Parent,rp122:rtc_cm:comments,Low,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.046Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp122:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp122:schedule,SGC Planning and Tasks,67,Story 67,New,Donation by amount,Release 1.0,Business Recovery Matters,rp122:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,3 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg'],brm.continuous C20221006-1016,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.387Z,https://jazz.ibm.com:9443/jts/users/bob,Donors will receive confirmation and receipt.,,,,http://open-services.net/ns/cm#ChangeRequest,68,Extracted From,rp124:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp124:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.481Z,https://jazz.ibm.com:9443/jts/users/marco,Medium,rp124:schedule,SGC Planning and Tasks,68,Story 68,Done,Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp124:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,2 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S6MbUFEfEe2d5dG-54qhbg'],Implement - Organizations can Apply,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.583Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,,,,http://open-services.net/ns/cm#ChangeRequest,69,Resolved By,rp91:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.411Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp91:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp91:schedule,SGC Planning and Tasks,69,Story 69,New,Organizations can Apply,Sprint 2,Business Recovery Matters,rp91:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg'],70: Donor Dividend Allocation Criteria,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:45.683Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose allocation options for their dividends to a cause.,,,,http://open-services.net/ns/cm#ChangeRequest,70,Related Test Plan,rp55:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.474Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp55:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp55:schedule,SGC Planning and Tasks,70,Story 70,New,Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp55:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,3 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg'],"Changes in: Web UI - Donors will receive confirmation and receipt (Implementation) - Bob - Oct 13, 2022 1:08 PM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.387Z,https://jazz.ibm.com:9443/jts/users/bob,Donors will receive confirmation and receipt.,,,,http://open-services.net/ns/cm#ChangeRequest,68,Extracted From,rp124:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp124:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.481Z,https://jazz.ibm.com:9443/jts/users/marco,Medium,rp124:schedule,SGC Planning and Tasks,68,Story 68,Done,Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp124:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,2 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S6MbUFEfEe2d5dG-54qhbg'],69: Organizations can Apply,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.583Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,,,,http://open-services.net/ns/cm#ChangeRequest,69,Resolved By,rp91:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.411Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp91:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp91:schedule,SGC Planning and Tasks,69,Story 69,New,Organizations can Apply,Sprint 2,Business Recovery Matters,rp91:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg'],Implement - Donor Dividend Allocation Criteria,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:45.683Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose allocation options for their dividends to a cause.,,,,http://open-services.net/ns/cm#ChangeRequest,70,Related Test Plan,rp55:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.474Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp55:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp55:schedule,SGC Planning and Tasks,70,Story 70,New,Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp55:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,1 pt,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S8KKMFEfEe2d5dG-54qhbg'],Implement - JKE Charity Coordinator will respond to request in the website triggering,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eOQUEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.786Z,https://jazz.ibm.com:9443/jts/users/bob,JKE Charity Coordinator will respond to request in the website triggering an email notification to Organizational Single Point of Contact.,,,,http://open-services.net/ns/cm#ChangeRequest,71,Creation Date,rp57:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.545Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp57:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp57:schedule,SGC Planning and Tasks,71,Story 71,New,JKE Charity Coordinator will respond to request in the website triggering,Sprint 2,Business Recovery Matters,rp57:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,8 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg'],"Changes in: Banking Logic - Dividend Allocation by Percentage (Implementation) - Deb - Oct 16, 2022 1:20 AM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.866Z,https://jazz.ibm.com:9443/jts/users/bob,Dividends will be allocated to organization from a percentage of dividend earnings.,,,,http://open-services.net/ns/cm#ChangeRequest,72,Repository,rp115:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.605Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp115:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.008Z,https://jazz.ibm.com:9443/jts/users/deb,Low,rp115:schedule,SGC Planning and Tasks,72,Story 72,Done,Dividend Allocation by Percentage,Sprint 1,Business Recovery Matters,rp115:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,8 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg'],Implement - Dividend Allocation by Percentage,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.866Z,https://jazz.ibm.com:9443/jts/users/bob,Dividends will be allocated to organization from a percentage of dividend earnings.,,,,http://open-services.net/ns/cm#ChangeRequest,72,Repository,rp115:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.605Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp115:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.008Z,https://jazz.ibm.com:9443/jts/users/deb,Low,rp115:schedule,SGC Planning and Tasks,72,Story 72,Done,Dividend Allocation by Percentage,Sprint 1,Business Recovery Matters,rp115:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],"['rp65:_kt67oFEfEe2WNNAD5CjSHA', 'rp65:_kV6EQFEfEe2WNNAD5CjSHA']",[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S8DcgFEfEe2d5dG-54qhbg'],[],Mobile donor can contribute,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eaIz8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:46.118Z,https://jazz.ibm.com:9443/jts/users/marco,"Establish the base JKE Mobile prototype, including the Worklight project with the JKE Mobile app and necessary adapters.",,115200000,,http://open-services.net/ns/cm#ChangeRequest,73,Project Area,rp116:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:13:44.835Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp116:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.193Z,https://jazz.ibm.com:9443/jts/users/deb,,rp116:schedule,SGC Planning and Tasks,73,Task 73,Done,Implement – Support Dividend Processing via Mobile Devices,Sprint 1,Business Recovery Matters,rp116:rtc_cm:timeSheet,115200000,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,Mobile,,0 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S6hygFEfEe2d5dG-54qhbg'],Mobile app must be cross platform,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ebL80VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:46.339Z,https://jazz.ibm.com:9443/jts/users/bob,Support Dividend Processing via Mobile Devices.,,,,http://open-services.net/ns/cm#ChangeRequest,74,Predecessor,rp78:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.716Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp78:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.430Z,https://jazz.ibm.com:9443/jts/users/marco,High,rp78:schedule,SGC Planning and Tasks,74,Story 74,Done,Support Dividend Processing via Mobile Devices,Sprint 1,Business Recovery Matters,rp78:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/75,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:46.540Z,https://jazz.ibm.com:9443/jts/users/curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,,,,http://open-services.net/ns/cm#ChangeRequest,75,Related Artifacts,rp80:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/curtis,,false,false,false,false,false,false,2022-10-21T09:05:46.566Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp80:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp80:schedule,SGC Planning and Tasks,75,Story 75,New,Allocate Dividends To Multiple Causes,,Business Recovery Matters,rp80:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Validate Loan term and amount,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.597Z,https://jazz.ibm.com:9443/jts/users/marco,,,57600000,,http://open-services.net/ns/cm#ChangeRequest,76,Related Test Case Result,rp129:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:46.618Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp129:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp129:schedule,SGC Planning and Tasks,76,Task 76,New,Implement - Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp129:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],77: Implement - Borrowers Can View Total Cost of Loan,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:46.642Z,https://jazz.ibm.com:9443/jts/users/marco,,,86400000,,http://open-services.net/ns/cm#ChangeRequest,77,ClearCase Versions,rp131:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:46.764Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp131:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.705Z,https://jazz.ibm.com:9443/jts/users/dave,,rp131:schedule,SGC Planning and Tasks,77,Task 77,Done,Implement - Borrowers Can View Total Cost of Loan,Sprint 1,Business Recovery Matters,rp131:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Validate Loan Term and Amount,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.597Z,https://jazz.ibm.com:9443/jts/users/marco,,,57600000,,http://open-services.net/ns/cm#ChangeRequest,76,Related Test Case Result,rp129:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:46.618Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp129:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp129:schedule,SGC Planning and Tasks,76,Task 76,New,Implement - Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp129:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Borrowers Can View Total Cost of Loan,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:46.642Z,https://jazz.ibm.com:9443/jts/users/marco,,,86400000,,http://open-services.net/ns/cm#ChangeRequest,77,ClearCase Versions,rp131:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:46.764Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp131:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.705Z,https://jazz.ibm.com:9443/jts/users/dave,,rp131:schedule,SGC Planning and Tasks,77,Task 77,Done,Implement - Borrowers Can View Total Cost of Loan,Sprint 1,Business Recovery Matters,rp131:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,5 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S2r0UFEfEe2d5dG-54qhbg'],Implement - Validate Loan Term and Amount,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eZG5MFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.791Z,https://jazz.ibm.com:9443/jts/users/bob,"Lenders should not be able to enter unreasonable loan terms and amounts. For example, loan terms should be restricted to those that are standard in the industry (30 year, 15 year, 10 year, etc). ",,,,http://open-services.net/ns/cm#ChangeRequest,78,Deployment Result,rp95:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.658Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp95:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp95:schedule,SGC Planning and Tasks,78,Story 78,New,Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp95:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Unassigned,BRM,,3 pts,[],[],[],[],[],,,,,[],Implement - Borrowers Can View Total Cost of Loan,,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:46.871Z,https://jazz.ibm.com:9443/jts/users/bob,Borrowers should have the ability to view the total cost of their loan over the lifetime of the mortgage,,,,http://open-services.net/ns/cm#ChangeRequest,79,Code Review: Extracted work items,rp97:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:05:47.075Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp97:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.997Z,https://jazz.ibm.com:9443/jts/users/dave,High,rp97:schedule,SGC Planning and Tasks,79,Story 79,Done,Borrowers Can View Total Cost of Loan,Sprint 1,Business Recovery Matters,rp97:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],81: Detail Design - Allocate Dividends with Web Service,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.098Z,https://jazz.ibm.com:9443/jts/users/marco,Create high-level design for planning purposes.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,80,Related Test Execution Record,rp81:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.116Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp81:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp81:schedule,SGC Planning and Tasks,80,Task 80,New,Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp81:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],81: Detail Design - Allocate Dividends with Web Service,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.144Z,https://jazz.ibm.com:9443/jts/users/marco,Create the service design and generate initial implementation code.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,81,Deployment Result,rp50:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.175Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp50:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp50:schedule,SGC Planning and Tasks,81,Task 81,New,Detail Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp50:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],81: Detail Design - Allocate Dividends with Web Service,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.206Z,https://jazz.ibm.com:9443/jts/users/marco,Complete the implementation and unit test the service.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,82,Complexity,rp37:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp37:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp37:schedule,SGC Planning and Tasks,82,Task 82,New,Implement - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp37:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Unassigned,BRM,,8 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/DM_S08H4FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S3lMMFEfEe2d5dG-54qhbg']","['83: Allocate Dividends with Web Service', '83: Allocate Dividends with Web Service', '83: Allocate Dividends with Web Service']",,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.261Z,https://jazz.ibm.com:9443/jts/users/bob,Investors and their financial advisors use a web service to allocate dividends,,,,http://open-services.net/ns/cm#ChangeRequest,83,Approvals,rp106:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:43.301Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp106:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp106:schedule,SGC Planning and Tasks,83,Story 83,New,Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp106:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Service for Allocating Dividends,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.098Z,https://jazz.ibm.com:9443/jts/users/marco,Create high-level design for planning purposes.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,80,Related Test Execution Record,rp81:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.116Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp81:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp81:schedule,SGC Planning and Tasks,80,Task 80,New,Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp81:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Service for Allocating Dividends,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.144Z,https://jazz.ibm.com:9443/jts/users/marco,Create the service design and generate initial implementation code.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,81,Deployment Result,rp50:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.175Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp50:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp50:schedule,SGC Planning and Tasks,81,Task 81,New,Detail Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp50:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Service for Allocating Dividends,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.206Z,https://jazz.ibm.com:9443/jts/users/marco,Complete the implementation and unit test the service.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,82,Complexity,rp37:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp37:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp37:schedule,SGC Planning and Tasks,82,Task 82,New,Implement - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp37:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Unassigned,BRM,,8 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/DM_S08H4FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S3lMMFEfEe2d5dG-54qhbg']","['Detail Design - Allocate Dividends with Web Service', 'Design - Allocate Dividends with Web Service', 'Implement - Allocate Dividends with Web Service']",,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.261Z,https://jazz.ibm.com:9443/jts/users/bob,Investors and their financial advisors use a web service to allocate dividends,,,,http://open-services.net/ns/cm#ChangeRequest,83,Approvals,rp106:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:43.301Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp106:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp106:schedule,SGC Planning and Tasks,83,Story 83,New,Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp106:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.478Z,https://jazz.ibm.com:9443/jts/users/marco,,,,,http://open-services.net/ns/cm#ChangeRequest,84,Affects Requirement,rp98:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.515Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp98:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp98:schedule,SGC Planning and Tasks,84,Task 84,New,Summary for promote.mortgage.devtotest,,Business Recovery Matters,rp98:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.540Z,https://jazz.ibm.com:9443/jts/users/marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,,,,http://open-services.net/ns/cm#ChangeRequest,85,Extracted From,rp70:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.558Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp70:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp70:schedule,SGC Planning and Tasks,85,Task 85,New,Validate Adherence to Corporate Standard on User Lockout,,Business Recovery Matters,rp70:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,Mobile,,8 pts,[],[],[],[],"['EngineController', 'Activate ACC']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6jnsFEfEe2d5dG-54qhbg']","['86: Allocate Dividends to Nearby Charities', '86: Allocate Dividends to Nearby Charities']",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ecNQgVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.599Z,https://jazz.ibm.com:9443/jts/users/bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",,,,http://open-services.net/ns/cm#ChangeRequest,86,Code Review,rp60:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,mobile,false,false,false,false,false,false,2022-10-21T09:13:46.167Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp60:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp60:schedule,SGC Planning and Tasks,86,Story 86,New,Allocate Dividends to Nearby Charities,Release 1.0,Business Recovery Matters,rp60:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Donor Chooses Local Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.666Z,https://jazz.ibm.com:9443/jts/users/marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",,,,http://open-services.net/ns/cm#ChangeRequest,87,Iteration,rp123:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.800Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/tammy,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp123:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.756Z,https://jazz.ibm.com:9443/jts/users/tammy,,rp123:schedule,SGC Planning and Tasks,87,Task 87,Done,Create test assets for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp123:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Donor Chooses Local Organization,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.833Z,https://jazz.ibm.com:9443/jts/users/marco,Please create requirements that elaborate on what is needed for this story.,,,,http://open-services.net/ns/cm#ChangeRequest,88,Promotion Build Result,rp118:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.991Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/bob,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp118:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.911Z,https://jazz.ibm.com:9443/jts/users/bob,,rp118:schedule,SGC Planning and Tasks,88,Task 88,Done,Elaborate requirements for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp118:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,Mobile,,8 pts,[],[],[],[],"['Actor', 'Activate ACC']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6jnsFEfEe2d5dG-54qhbg']","['86: Allocate Dividends to Nearby Charities', 'Create test assets for Allocate Dividends to Nearby Charities']",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ecNQgVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.599Z,https://jazz.ibm.com:9443/jts/users/bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",,,,http://open-services.net/ns/cm#ChangeRequest,86,Code Review,rp60:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,mobile,false,false,false,false,false,false,2022-10-21T09:13:46.167Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp60:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp60:schedule,SGC Planning and Tasks,86,Story 86,New,Allocate Dividends to Nearby Charities,Release 1.0,Business Recovery Matters,rp60:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Allocate Dividends to Nearby Charities,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.666Z,https://jazz.ibm.com:9443/jts/users/marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",,,,http://open-services.net/ns/cm#ChangeRequest,87,Iteration,rp123:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.800Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/tammy,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp123:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.756Z,https://jazz.ibm.com:9443/jts/users/tammy,,rp123:schedule,SGC Planning and Tasks,87,Task 87,Done,Create test assets for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp123:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Allocate Dividends to Nearby Charities,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.833Z,https://jazz.ibm.com:9443/jts/users/marco,Please create requirements that elaborate on what is needed for this story.,,,,http://open-services.net/ns/cm#ChangeRequest,88,Promotion Build Result,rp118:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.991Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/bob,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp118:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.911Z,https://jazz.ibm.com:9443/jts/users/bob,,rp118:schedule,SGC Planning and Tasks,88,Task 88,Done,Elaborate requirements for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp118:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],[],,,,,[],[],,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:48.034Z,https://jazz.ibm.com:9443/jts/users/marco,"During the new Mortgage mobile phone application analysis, we noticed that many Calculate Mortgage requests end without producing any result. This is due to the fact that customers model loans with loan terms are not offered by potential mortgage companies. This means that when the query is run to look for mortgage companies that can service the modeled loan, none are returned to the customer and no error message is returned indicating any issue.",,,,http://open-services.net/ns/cm#ChangeRequest,89,Progress Tracking,rp93:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:48.054Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Product Backlog,Change and Configuration Management,Business Recovery Matters,rp93:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp93:schedule,SGC Planning and Tasks,89,Story 89,New,Multiplatform change due to invalid customer model loans,Product Backlog,Business Recovery Matters,rp93:rtc_cm:timeSheet,,Story,Story diff --git a/elmclient/tests/results/test308.csv b/elmclient/tests/results/test308.csv index cf539c6..9b7ccd9 100644 --- a/elmclient/tests/results/test308.csv +++ b/elmclient/tests/results/test308.csv @@ -1,24 +1,24 @@ $uri,accessContext,accessControl,archived,businessvalue,category,com.ibm.team.apt.attribute.acceptance,com.ibm.team.apt.attribute.complexity,com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds,com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds,com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet,com.ibm.team.workitem.linktype.affectsExecutionResult.affects,com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement,com.ibm.team.workitem.linktype.implementsRequirement.implements,com.ibm.team.workitem.linktype.parentworkitem.children,com.ibm.team.workitem.linktype.parentworkitem.parent,com.ibm.team.workitem.linktype.testedByTestCase.testedby,com.ibm.team.workitem.linktype.textualReference.textuallyReferenced,contextId,creationDate,creator,description,duration,http://www.w3.org/1999/02/22-rdf-syntax-ns#type,id,instanceShape,internalComments,internalPriority,internalSeverity,internalState,internalSubscriptions,internalTags,isApproved,isClosed,isFixed,isInProgress,isReviewed,isVerified,modified,modifiedBy,owner,process_iteration,process_projectArea,process_teamArea,progressTracking,projectArea,repository,resolutionDate,resolver,risk,schedule,serviceProvider,shortId,shortName,statusName,summary,target,teamArea,timeSheet,timeSpent,typeName,workItemType https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,13 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_aSBkgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6evMFEfEe2d5dG-54qhbg']",Implement - Frequency of dividend transfer,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.382Z,https://jazz.ibm.com:9443/jts/users/bob,A donor can choose the following frequencies.,,http://open-services.net/ns/cm#ChangeRequest,55,Promoted Build Maps,rp112:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp112:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp112:schedule,SGC Planning and Tasks,55,Story 55,New,Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp112:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_aRwewVEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S4SW0FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.566Z,https://jazz.ibm.com:9443/jts/users/bob,,,http://open-services.net/ns/cm#ChangeRequest,56,Git Issues,rp71:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.292Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp71:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp71:schedule,SGC Planning and Tasks,56,Story 56,New,Donors Deposit Money Into a Pooled Assistance Fund,Release 1.0,Business Recovery Matters,rp71:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']","Changes in: Web UI - Allocate Dividends by Percentage (Implementation) - Deb - Oct 9, 2022 9:50 AM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['IBD AMRSystem', 'IBD_Capture Usage Data', 'FunctionalAnalysisPkg']","['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']",jke.qa.maintenance M20221019-0702,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['Internal Block Diagram', 'Internal Block Diagram', 'Package']","['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,8 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_S7GaQFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aSrr0FEfEe2d5dG-54qhbg']",Implement - Requests sent in form of email,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.910Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of email.,,http://open-services.net/ns/cm#ChangeRequest,59,Related Artifacts,rp127:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.473Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp127:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp127:schedule,SGC Planning and Tasks,59,Story 59,New,Requests sent in form of email,Sprint 2,Business Recovery Matters,rp127:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,3 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/BI_YCyFwFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S12t4FEfEe2d5dG-54qhbg']",Implement - Organization must identify how much money is desired,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.991Z,https://jazz.ibm.com:9443/jts/users/bob,Organization must identify how much money is desired.,,http://open-services.net/ns/cm#ChangeRequest,60,Electronic Signatures,rp79:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.535Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp79:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp79:schedule,SGC Planning and Tasks,60,Story 60,New,Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp79:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['Package', 'Upload Usage Data Locally', 'MeterReader']","['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['A_ItemDefinition', 'Upload Usage Data Locally', 'MeterReader']","['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,1 pt,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_S3r54FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFxFEfEe2d5dG-54qhbg']",Implement - Organizations may apply with an initial request,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.126Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations may apply with an initial request using the following request methods.,,http://open-services.net/ns/cm#ChangeRequest,62,Change Sets That Were Not Promoted,rp130:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.658Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp130:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp130:schedule,SGC Planning and Tasks,62,Story 62,New,Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp130:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",brm.continuous C20221020-0047,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",jke.qa.maintenance.vs M20221019-0244,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,2 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S72BIFEfEe2d5dG-54qhbg'],64: Customers can Nominate an Organization,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.974Z,https://jazz.ibm.com:9443/jts/users/bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,,http://open-services.net/ns/cm#ChangeRequest,64,importer dependency,rp96:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.072Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp96:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp96:schedule,SGC Planning and Tasks,64,Story 64,New,Customers can Nominate an Organization,Sprint 2,Business Recovery Matters,rp96:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg'],"Changes in: Database - Donors Can Choose to Support an Organization (Implementation) - Marco - Oct 10, 2022 3:08 PM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.049Z,https://jazz.ibm.com:9443/jts/users/bob,Donor identifies a specific organization.,,http://open-services.net/ns/cm#ChangeRequest,65,Related Change Request,rp69:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.137Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp69:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.148Z,https://jazz.ibm.com:9443/jts/users/marco,Zero,rp69:schedule,SGC Planning and Tasks,65,Story 65,Done,Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp69:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg'],jke.qa Q20221019-0814,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.049Z,https://jazz.ibm.com:9443/jts/users/bob,Donor identifies a specific organization.,,http://open-services.net/ns/cm#ChangeRequest,65,Related Change Request,rp69:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.137Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp69:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.148Z,https://jazz.ibm.com:9443/jts/users/marco,Zero,rp69:schedule,SGC Planning and Tasks,65,Story 65,Done,Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp69:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/66,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,1 pt,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S3qrwFEfEe2d5dG-54qhbg'],66: Organization must provide justification for why funds are needed,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eICXUVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.251Z,https://jazz.ibm.com:9443/jts/users/bob,Organization must provide justification for why funds are needed.,,http://open-services.net/ns/cm#ChangeRequest,66,Work Items Included in Packages,rp58:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp58:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp58:schedule,SGC Planning and Tasks,66,Story 66,New,Organization must provide justification for why funds are needed,Sprint 2,Business Recovery Matters,rp58:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],"['PhysicalArchitectureOverview_IOT', 'Environment Model Decomposition']",['https://jazz.ibm.com:9443/rm/resources/TX_S1pSgFEfEe2d5dG-54qhbg'],[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJFgMFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:45.343Z,https://jazz.ibm.com:9443/jts/users/bob,Donation amount cannot exceed donation limit specified in user profile; Donation amount cannot exceed 100%.,,http://open-services.net/ns/cm#ChangeRequest,67,Parent,rp122:rtc_cm:comments,Low,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.046Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp122:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp122:schedule,SGC Planning and Tasks,67,Story 67,New,Donation by amount,Release 1.0,Business Recovery Matters,rp122:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,3 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg'],brm.continuous C20221006-1016,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.387Z,https://jazz.ibm.com:9443/jts/users/bob,Donors will receive confirmation and receipt.,,http://open-services.net/ns/cm#ChangeRequest,68,Extracted From,rp124:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp124:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.481Z,https://jazz.ibm.com:9443/jts/users/marco,Medium,rp124:schedule,SGC Planning and Tasks,68,Story 68,Done,Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp124:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,2 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S6MbUFEfEe2d5dG-54qhbg'],Implement - Organizations can Apply,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.583Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,,http://open-services.net/ns/cm#ChangeRequest,69,Resolved By,rp91:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.411Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp91:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp91:schedule,SGC Planning and Tasks,69,Story 69,New,Organizations can Apply,Sprint 2,Business Recovery Matters,rp91:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg'],70: Donor Dividend Allocation Criteria,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:45.683Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose allocation options for their dividends to a cause.,,http://open-services.net/ns/cm#ChangeRequest,70,Related Test Plan,rp55:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.474Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp55:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp55:schedule,SGC Planning and Tasks,70,Story 70,New,Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp55:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,3 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg'],"Changes in: Web UI - Donors will receive confirmation and receipt (Implementation) - Bob - Oct 13, 2022 1:08 PM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.387Z,https://jazz.ibm.com:9443/jts/users/bob,Donors will receive confirmation and receipt.,,http://open-services.net/ns/cm#ChangeRequest,68,Extracted From,rp124:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp124:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:45.481Z,https://jazz.ibm.com:9443/jts/users/marco,Medium,rp124:schedule,SGC Planning and Tasks,68,Story 68,Done,Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp124:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,2 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S6MbUFEfEe2d5dG-54qhbg'],69: Organizations can Apply,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.583Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,,http://open-services.net/ns/cm#ChangeRequest,69,Resolved By,rp91:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.411Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp91:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp91:schedule,SGC Planning and Tasks,69,Story 69,New,Organizations can Apply,Sprint 2,Business Recovery Matters,rp91:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,5 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg'],Implement - Donor Dividend Allocation Criteria,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:45.683Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose allocation options for their dividends to a cause.,,http://open-services.net/ns/cm#ChangeRequest,70,Related Test Plan,rp55:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.474Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp55:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp55:schedule,SGC Planning and Tasks,70,Story 70,New,Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp55:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,1 pt,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S8KKMFEfEe2d5dG-54qhbg'],Implement - JKE Charity Coordinator will respond to request in the website triggering,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eOQUEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.786Z,https://jazz.ibm.com:9443/jts/users/bob,JKE Charity Coordinator will respond to request in the website triggering an email notification to Organizational Single Point of Contact.,,http://open-services.net/ns/cm#ChangeRequest,71,Creation Date,rp57:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.545Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp57:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp57:schedule,SGC Planning and Tasks,71,Story 71,New,JKE Charity Coordinator will respond to request in the website triggering,Sprint 2,Business Recovery Matters,rp57:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,8 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg'],"Changes in: Banking Logic - Dividend Allocation by Percentage (Implementation) - Deb - Oct 16, 2022 1:20 AM",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.866Z,https://jazz.ibm.com:9443/jts/users/bob,Dividends will be allocated to organization from a percentage of dividend earnings.,,http://open-services.net/ns/cm#ChangeRequest,72,Repository,rp115:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.605Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp115:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.008Z,https://jazz.ibm.com:9443/jts/users/deb,Low,rp115:schedule,SGC Planning and Tasks,72,Story 72,Done,Dividend Allocation by Percentage,Sprint 1,Business Recovery Matters,rp115:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,8 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg'],Implement - Dividend Allocation by Percentage,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:45.866Z,https://jazz.ibm.com:9443/jts/users/bob,Dividends will be allocated to organization from a percentage of dividend earnings.,,http://open-services.net/ns/cm#ChangeRequest,72,Repository,rp115:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.605Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp115:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.008Z,https://jazz.ibm.com:9443/jts/users/deb,Low,rp115:schedule,SGC Planning and Tasks,72,Story 72,Done,Dividend Allocation by Percentage,Sprint 1,Business Recovery Matters,rp115:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],"['rp65:_kt67oFEfEe2WNNAD5CjSHA', 'rp65:_kV6EQFEfEe2WNNAD5CjSHA']",[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S8DcgFEfEe2d5dG-54qhbg'],[],Mobile donor can contribute,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eaIz8VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:46.118Z,https://jazz.ibm.com:9443/jts/users/marco,"Establish the base JKE Mobile prototype, including the Worklight project with the JKE Mobile app and necessary adapters.",115200000,http://open-services.net/ns/cm#ChangeRequest,73,Project Area,rp116:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:13:44.835Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp116:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.193Z,https://jazz.ibm.com:9443/jts/users/deb,,rp116:schedule,SGC Planning and Tasks,73,Task 73,Done,Implement – Support Dividend Processing via Mobile Devices,Sprint 1,Business Recovery Matters,rp116:rtc_cm:timeSheet,115200000,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,Mobile,,0 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S6hygFEfEe2d5dG-54qhbg'],Mobile app must be cross platform,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ebL80VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:46.339Z,https://jazz.ibm.com:9443/jts/users/bob,Support Dividend Processing via Mobile Devices.,,http://open-services.net/ns/cm#ChangeRequest,74,Predecessor,rp78:rtc_cm:comments,Medium,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:44.716Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp78:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.430Z,https://jazz.ibm.com:9443/jts/users/marco,High,rp78:schedule,SGC Planning and Tasks,74,Story 74,Done,Support Dividend Processing via Mobile Devices,Sprint 1,Business Recovery Matters,rp78:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,5 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S2r0UFEfEe2d5dG-54qhbg'],Implement - Validate Loan Term and Amount,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eZG5MFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.791Z,https://jazz.ibm.com:9443/jts/users/bob,"Lenders should not be able to enter unreasonable loan terms and amounts. For example, loan terms should be restricted to those that are standard in the industry (30 year, 15 year, 10 year, etc). ",,http://open-services.net/ns/cm#ChangeRequest,78,Deployment Result,rp95:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.658Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp95:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp95:schedule,SGC Planning and Tasks,78,Story 78,New,Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp95:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Unassigned,BRM,,8 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/DM_S08H4FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S3lMMFEfEe2d5dG-54qhbg']","['83: Allocate Dividends with Web Service', '83: Allocate Dividends with Web Service', '83: Allocate Dividends with Web Service']",,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.261Z,https://jazz.ibm.com:9443/jts/users/bob,Investors and their financial advisors use a web service to allocate dividends,,http://open-services.net/ns/cm#ChangeRequest,83,Approvals,rp106:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:43.301Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp106:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp106:schedule,SGC Planning and Tasks,83,Story 83,New,Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp106:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,Mobile,,8 pts,[],[],[],[],"['EngineController', 'Activate ACC']","['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6jnsFEfEe2d5dG-54qhbg']","['86: Allocate Dividends to Nearby Charities', '86: Allocate Dividends to Nearby Charities']",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ecNQgVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.599Z,https://jazz.ibm.com:9443/jts/users/bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",,http://open-services.net/ns/cm#ChangeRequest,86,Code Review,rp60:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,mobile,false,false,false,false,false,false,2022-10-21T09:13:46.167Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp60:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp60:schedule,SGC Planning and Tasks,86,Story 86,New,Allocate Dividends to Nearby Charities,Release 1.0,Business Recovery Matters,rp60:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Unassigned,BRM,,8 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/DM_S08H4FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S3lMMFEfEe2d5dG-54qhbg']","['Detail Design - Allocate Dividends with Web Service', 'Design - Allocate Dividends with Web Service', 'Implement - Allocate Dividends with Web Service']",,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.261Z,https://jazz.ibm.com:9443/jts/users/bob,Investors and their financial advisors use a web service to allocate dividends,,http://open-services.net/ns/cm#ChangeRequest,83,Approvals,rp106:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:43.301Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp106:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp106:schedule,SGC Planning and Tasks,83,Story 83,New,Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp106:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,Mobile,,8 pts,[],[],[],[],"['Actor', 'Activate ACC']","['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6jnsFEfEe2d5dG-54qhbg']","['86: Allocate Dividends to Nearby Charities', 'Create test assets for Allocate Dividends to Nearby Charities']",,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ecNQgVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.599Z,https://jazz.ibm.com:9443/jts/users/bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",,http://open-services.net/ns/cm#ChangeRequest,86,Code Review,rp60:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,mobile,false,false,false,false,false,false,2022-10-21T09:13:46.167Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp60:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp60:schedule,SGC Planning and Tasks,86,Story 86,New,Allocate Dividends to Nearby Charities,Release 1.0,Business Recovery Matters,rp60:rtc_cm:timeSheet,,Story,Story diff --git a/elmclient/tests/results/test309.csv b/elmclient/tests/results/test309.csv index a5de38d..b55a1b8 100644 --- a/elmclient/tests/results/test309.csv +++ b/elmclient/tests/results/test309.csv @@ -33,35 +33,35 @@ https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/3 https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T14:18:41.072Z,https://jazz.ibm.com:9443/jts/users/marco,,,,,http://open-services.net/ns/cm#ChangeRequest,32,Fixed,rp51:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.092Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 3,Change and Configuration Management,Business Recovery Matters,rp51:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp51:schedule,SGC Planning and Tasks,32,Retrospective 32,New,Retrospective for Sprint 2,Sprint 3,Business Recovery Matters,rp51:rtc_cm:timeSheet,,Retrospective,Retrospective https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,JKE,,,[],[],[],[],[],,,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-29T12:28:41.150Z,https://jazz.ibm.com:9443/jts/users/marco,We have to get new build engines with more RAM to speed up development.,,,,http://open-services.net/ns/cm#ChangeRequest,33,Git Commits,rp53:rtc_cm:comments,Unassigned,,Normal,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.287Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,,rp53:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.201Z,https://jazz.ibm.com:9443/jts/users/marco,,rp53:schedule,SGC Planning and Tasks,33,Impediment 33,Resolved,New Build Engines required,Sprint 1,,rp53:rtc_cm:timeSheet,,Impediment,Impediment https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T11:38:41.318Z,https://jazz.ibm.com:9443/jts/users/bob,We should try to limit our meetings to half an hour.,,,,http://open-services.net/ns/cm#ChangeRequest,34,Created By,rp108:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:41.344Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp108:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp108:schedule,SGC Planning and Tasks,34,Impediment 34,New,Meetings are too long,Sprint 2,Business Recovery Matters,rp108:rtc_cm:timeSheet,,Impediment,Impediment -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,36: Found this SWT Exception in the logs,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,,Defect,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,,36: Found this SWT Exception in the logs,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T00:16:41.446Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),,36000000,,http://open-services.net/ns/cm#ChangeRequest,36,Time Spent,rp83:rtc_cm:comments,Unassigned,Duplicate,Critical,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.729Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp83:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.594Z,https://jazz.ibm.com:9443/jts/users/ibm,,rp83:schedule,SGC Planning and Tasks,36,Defect 36,Resolved,Found this SWT Exception in the logs,Sprint 2,,rp83:rtc_cm:timeSheet,,Defect,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,SWT Exception,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,,Defect,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Java UI,,,[],[],[],[],[],,,SWT Exception,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T00:16:41.446Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),,36000000,,http://open-services.net/ns/cm#ChangeRequest,36,Time Spent,rp83:rtc_cm:comments,Unassigned,Duplicate,Critical,Resolved,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:41.729Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp83:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:41.594Z,https://jazz.ibm.com:9443/jts/users/ibm,,rp83:schedule,SGC Planning and Tasks,36,Defect 36,Resolved,Found this SWT Exception in the logs,Sprint 2,,rp83:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],37: SWT Exception,,,<03:04:41>: SWT Exception,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T10:04:41.530Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),,43200000,,http://open-services.net/ns/cm#ChangeRequest,37,Affects Test Case Result,rp73:rtc_cm:comments,Medium,,Critical,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.664Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp73:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp73:schedule,SGC Planning and Tasks,37,Defect 37,New,SWT Exception,Sprint 2,Business Recovery Matters,rp73:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Web UI,,,[],[],[],"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ipvn8FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ic1NUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hy_mIFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hZHtkFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_iiUxUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_inwD4FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_il8GAFEgEe2UhZTKNaJuJg']",[],,,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-16T09:05:41.890Z,https://jazz.ibm.com:9443/jts/users/tanuj,The picklist for selection of organizations contains no values,,14400000,Sprint 1,http://open-services.net/ns/cm#ChangeRequest,38,Implements Requirement,rp43:rtc_cm:comments,High,,Major,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.522Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,,rp43:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp43:schedule,SGC Planning and Tasks,38,Defect 38,New,Organization selection list is empty,Sprint 2,,rp43:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Web UI,,,[],[],[],"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ihXIAFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_h2kekFEgEe2UhZTKNaJuJg']",[],,,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:41.937Z,https://jazz.ibm.com:9443/jts/users/tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,,43200000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,39,Resolves,rp125:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.248Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 3,Change and Configuration Management,,rp125:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp125:schedule,SGC Planning and Tasks,39,Defect 39,New,"Failing Test Case ""Pay Bills Online""",Sprint 3,,rp125:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/40,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Web UI,,,[],[],[],['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_h5HcQFEgEe2UhZTKNaJuJg'],[],,,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:41.997Z,https://jazz.ibm.com:9443/jts/users/tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",,43200000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,40,Promoted Build Maps,rp111:rtc_cm:comments,High,,Blocker,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.049Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,,rp111:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp111:schedule,SGC Planning and Tasks,40,Defect 40,New,Credit Increase request is registered against the wrong account,Sprint 2,,rp111:rtc_cm:timeSheet,,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/41,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Frequency of dividend transfer,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:42.049Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,41,Description,rp84:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.071Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp84:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp84:schedule,SGC Planning and Tasks,41,Task 41,New,Implement - Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp84:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA']",[],"['rp65:_pc5zQFEfEe2WNNAD5CjSHA', 'rp65:_pWkhwFEfEe2WNNAD5CjSHA', 'rp65:_paL2cFEfEe2WNNAD5CjSHA', 'rp65:_pJxb4FEfEe2WNNAD5CjSHA', 'rp65:_pPtEwFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Allocate Dividends by Percentage,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.104Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,42,Severity,rp74:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp74:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.167Z,https://jazz.ibm.com:9443/jts/users/deb,,rp74:schedule,SGC Planning and Tasks,42,Task 42,Done,Implement - Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp74:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA']",[],"['rp65:_pc5zQFEfEe2WNNAD5CjSHA', 'rp65:_pWkhwFEfEe2WNNAD5CjSHA', 'rp65:_paL2cFEfEe2WNNAD5CjSHA', 'rp65:_pJxb4FEfEe2WNNAD5CjSHA', 'rp65:_pPtEwFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Water Meter,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.104Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,42,Severity,rp74:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp74:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.167Z,https://jazz.ibm.com:9443/jts/users/deb,,rp74:schedule,SGC Planning and Tasks,42,Task 42,Done,Implement - Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp74:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],43: Implement - Requests sent in form of email,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:42.243Z,https://jazz.ibm.com:9443/jts/users/marco,,,115200000,,http://open-services.net/ns/cm#ChangeRequest,43,Approval Tasks,rp41:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.262Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp41:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp41:schedule,SGC Planning and Tasks,43,Task 43,New,Implement - Requests sent in form of email,Sprint 2,Business Recovery Matters,rp41:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organization must identify how much money is desired,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.291Z,https://jazz.ibm.com:9443/jts/users/marco,,,43200000,,http://open-services.net/ns/cm#ChangeRequest,44,Change Sets (Remote),rp126:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.318Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp126:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp126:schedule,SGC Planning and Tasks,44,Task 44,New,Implement - Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp126:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organizations may apply with an initial request,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.347Z,https://jazz.ibm.com:9443/jts/users/marco,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,45,Related Test Case Result,rp100:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.378Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp100:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp100:schedule,SGC Planning and Tasks,45,Task 45,New,Implement - Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp100:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_ajGQ8FEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA']",[],"['rp65:_qx7sgFEfEe2WNNAD5CjSHA', 'rp65:_q-FSIFEfEe2WNNAD5CjSHA', 'rp65:_rBlSEFEfEe2WNNAD5CjSHA', 'rp65:_q6krIFEfEe2WNNAD5CjSHA', 'rp65:_rF-C0FEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors Can Choose to Support an Organization,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.419Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,46,Service Provider,rp102:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.587Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp102:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.507Z,https://jazz.ibm.com:9443/jts/users/deb,,rp102:schedule,SGC Planning and Tasks,46,Task 46,Done,Implement - Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp102:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Log in to JKE Banking mobile app,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.291Z,https://jazz.ibm.com:9443/jts/users/marco,,,43200000,,http://open-services.net/ns/cm#ChangeRequest,44,Change Sets (Remote),rp126:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.318Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp126:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp126:schedule,SGC Planning and Tasks,44,Task 44,New,Implement - Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp126:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],45: Implement - Organizations may apply with an initial request,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.347Z,https://jazz.ibm.com:9443/jts/users/marco,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,45,Related Test Case Result,rp100:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.378Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp100:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp100:schedule,SGC Planning and Tasks,45,Task 45,New,Implement - Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp100:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_ajGQ8FEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA']",[],"['rp65:_qx7sgFEfEe2WNNAD5CjSHA', 'rp65:_q-FSIFEfEe2WNNAD5CjSHA', 'rp65:_rBlSEFEfEe2WNNAD5CjSHA', 'rp65:_q6krIFEfEe2WNNAD5CjSHA', 'rp65:_rF-C0FEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors can choose to support an organization,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.419Z,https://jazz.ibm.com:9443/jts/users/marco,,,144000000,,http://open-services.net/ns/cm#ChangeRequest,46,Service Provider,rp102:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.587Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp102:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.507Z,https://jazz.ibm.com:9443/jts/users/deb,,rp102:schedule,SGC Planning and Tasks,46,Task 46,Done,Implement - Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp102:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Customers can Nominate an Organization,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.606Z,https://jazz.ibm.com:9443/jts/users/marco,,,28800000,,http://open-services.net/ns/cm#ChangeRequest,47,Resolution,rp63:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.636Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp63:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp63:schedule,SGC Planning and Tasks,47,Task 47,New,Implement - Customers can Nominate an Organization,Sprint 2,Business Recovery Matters,rp63:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA']",[],"['rp65:_py1nAFEfEe2WNNAD5CjSHA', 'rp65:_pwSpUFEfEe2WNNAD5CjSHA', 'rp65:_poYDcFEfEe2WNNAD5CjSHA', 'rp65:_pkRmkFEfEe2WNNAD5CjSHA', 'rp65:_ptOuQFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors Chooses an Organization,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.667Z,https://jazz.ibm.com:9443/jts/users/marco,,,72000000,,http://open-services.net/ns/cm#ChangeRequest,48,Related Test Case Result,rp67:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.824Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp67:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.757Z,https://jazz.ibm.com:9443/jts/users/marco,,rp67:schedule,SGC Planning and Tasks,48,Task 48,Done,Implement - Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp67:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA']",[],"['rp65:_py1nAFEfEe2WNNAD5CjSHA', 'rp65:_pwSpUFEfEe2WNNAD5CjSHA', 'rp65:_poYDcFEfEe2WNNAD5CjSHA', 'rp65:_pkRmkFEfEe2WNNAD5CjSHA', 'rp65:_ptOuQFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],48: Implement - Donors Chooses an Organization,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.667Z,https://jazz.ibm.com:9443/jts/users/marco,,,72000000,,http://open-services.net/ns/cm#ChangeRequest,48,Related Test Case Result,rp67:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:42.824Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp67:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.757Z,https://jazz.ibm.com:9443/jts/users/marco,,rp67:schedule,SGC Planning and Tasks,48,Task 48,Done,Implement - Donors Chooses an Organization,Sprint 1,Business Recovery Matters,rp67:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organization must provide justification for why funds are needed,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.844Z,https://jazz.ibm.com:9443/jts/users/bob,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,49,Reviewed,rp121:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:42.864Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp121:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp121:schedule,SGC Planning and Tasks,49,Task 49,New,Implement - Organization must provide justification for why funds are needed,Sprint 2,Business Recovery Matters,rp121:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_bSBzgFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA', 'rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_aNXRgFEgEe2WNNAD5CjSHA', 'rp66:_a6s4oFEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA']",[],"['rp65:_qFlj4FEfEe2WNNAD5CjSHA', 'rp65:_qLwdUFEfEe2WNNAD5CjSHA', 'rp65:_qIgVAFEfEe2WNNAD5CjSHA', 'rp65:_p-LUUFEfEe2WNNAD5CjSHA', 'rp65:_qQcwEFEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],Donors will receive confirmation and receipt,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.904Z,https://jazz.ibm.com:9443/jts/users/marco,,,43200000,,http://open-services.net/ns/cm#ChangeRequest,50,Approvals,rp88:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:43.042Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp88:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:42.966Z,https://jazz.ibm.com:9443/jts/users/marco,,rp88:schedule,SGC Planning and Tasks,50,Task 50,Done,Implement - Donors will receive confirmation and receipt,Sprint 1,Business Recovery Matters,rp88:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],51: Implement - Organizations can Apply,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.083Z,https://jazz.ibm.com:9443/jts/users/marco,,,28800000,,http://open-services.net/ns/cm#ChangeRequest,51,Related,rp92:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.101Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp92:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp92:schedule,SGC Planning and Tasks,51,Task 51,New,Implement - Organizations can Apply,Sprint 2,Business Recovery Matters,rp92:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Organizations can apply,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.083Z,https://jazz.ibm.com:9443/jts/users/marco,,,28800000,,http://open-services.net/ns/cm#ChangeRequest,51,Related,rp92:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.101Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp92:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp92:schedule,SGC Planning and Tasks,51,Task 51,New,Implement - Organizations can Apply,Sprint 2,Business Recovery Matters,rp92:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],52: Implement - Donor Dividend Allocation Criteria,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.130Z,https://jazz.ibm.com:9443/jts/users/marco,,,72000000,,http://open-services.net/ns/cm#ChangeRequest,52,Tested By Test Case,rp52:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.153Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp52:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp52:schedule,SGC Planning and Tasks,52,Task 52,New,Implement - Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp52:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],JKE Charity Coordinator responds to online request,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.179Z,https://jazz.ibm.com:9443/jts/users/bob,,,14400000,,http://open-services.net/ns/cm#ChangeRequest,53,Complexity,rp54:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:43.196Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp54:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp54:schedule,SGC Planning and Tasks,53,Task 53,New,Implement - JKE Charity Coordinator will respond to request in the website triggering,Sprint 2,Business Recovery Matters,rp54:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,"['rp66:_b87KoFEgEe2WNNAD5CjSHA', 'rp66:_cEZEkFEgEe2WNNAD5CjSHA', 'rp66:_b2M3kFEgEe2WNNAD5CjSHA', 'rp66:_abnI4FEgEe2WNNAD5CjSHA', 'rp66:_bYXsEFEgEe2WNNAD5CjSHA', 'rp66:_buJu0FEgEe2WNNAD5CjSHA', 'rp66:_a0JksFEgEe2WNNAD5CjSHA', 'rp66:_bB_zcFEgEe2WNNAD5CjSHA', 'rp66:_bnDBQFEgEe2WNNAD5CjSHA']",[],"['rp65:_qYU5sFEfEe2WNNAD5CjSHA', 'rp65:_qfpCoFEfEe2WNNAD5CjSHA', 'rp65:_qsRwcFEfEe2WNNAD5CjSHA', 'rp65:_qmFB0FEfEe2WNNAD5CjSHA', 'rp65:_qika0FEfEe2WNNAD5CjSHA']",[],[],,,,,[],[],54: Implement - Dividend Allocation by Percentage,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.225Z,https://jazz.ibm.com:9443/jts/users/marco,,,115200000,,http://open-services.net/ns/cm#ChangeRequest,54,ClearCase Activities ,rp107:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:43.336Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp107:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.290Z,https://jazz.ibm.com:9443/jts/users/deb,,rp107:schedule,SGC Planning and Tasks,54,Task 54,Done,Implement - Dividend Allocation by Percentage,Sprint 1,Business Recovery Matters,rp107:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/75,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],[],,,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:46.540Z,https://jazz.ibm.com:9443/jts/users/curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,,,,http://open-services.net/ns/cm#ChangeRequest,75,Related Artifacts,rp80:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/curtis,,false,false,false,false,false,false,2022-10-21T09:05:46.566Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp80:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp80:schedule,SGC Planning and Tasks,75,Story 75,New,Allocate Dividends To Multiple Causes,,Business Recovery Matters,rp80:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Validate Loan term and amount,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.597Z,https://jazz.ibm.com:9443/jts/users/marco,,,57600000,,http://open-services.net/ns/cm#ChangeRequest,76,Related Test Case Result,rp129:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:46.618Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp129:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp129:schedule,SGC Planning and Tasks,76,Task 76,New,Implement - Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp129:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],77: Implement - Borrowers Can View Total Cost of Loan,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:46.642Z,https://jazz.ibm.com:9443/jts/users/marco,,,86400000,,http://open-services.net/ns/cm#ChangeRequest,77,ClearCase Versions,rp131:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:46.764Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp131:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.705Z,https://jazz.ibm.com:9443/jts/users/dave,,rp131:schedule,SGC Planning and Tasks,77,Task 77,Done,Implement - Borrowers Can View Total Cost of Loan,Sprint 1,Business Recovery Matters,rp131:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Validate Loan Term and Amount,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.597Z,https://jazz.ibm.com:9443/jts/users/marco,,,57600000,,http://open-services.net/ns/cm#ChangeRequest,76,Related Test Case Result,rp129:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:46.618Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp129:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp129:schedule,SGC Planning and Tasks,76,Task 76,New,Implement - Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp129:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Borrowers Can View Total Cost of Loan,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:46.642Z,https://jazz.ibm.com:9443/jts/users/marco,,,86400000,,http://open-services.net/ns/cm#ChangeRequest,77,ClearCase Versions,rp131:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,,false,true,true,false,false,false,2022-10-21T09:05:46.764Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp131:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.705Z,https://jazz.ibm.com:9443/jts/users/dave,,rp131:schedule,SGC Planning and Tasks,77,Task 77,Done,Implement - Borrowers Can View Total Cost of Loan,Sprint 1,Business Recovery Matters,rp131:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Unassigned,BRM,,3 pts,[],[],[],[],[],,,,,[],Implement - Borrowers Can View Total Cost of Loan,,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:46.871Z,https://jazz.ibm.com:9443/jts/users/bob,Borrowers should have the ability to view the total cost of their loan over the lifetime of the mortgage,,,,http://open-services.net/ns/cm#ChangeRequest,79,Code Review: Extracted work items,rp97:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:05:47.075Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp97:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:46.997Z,https://jazz.ibm.com:9443/jts/users/dave,High,rp97:schedule,SGC Planning and Tasks,79,Story 79,Done,Borrowers Can View Total Cost of Loan,Sprint 1,Business Recovery Matters,rp97:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],81: Detail Design - Allocate Dividends with Web Service,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.098Z,https://jazz.ibm.com:9443/jts/users/marco,Create high-level design for planning purposes.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,80,Related Test Execution Record,rp81:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.116Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp81:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp81:schedule,SGC Planning and Tasks,80,Task 80,New,Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp81:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],81: Detail Design - Allocate Dividends with Web Service,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.144Z,https://jazz.ibm.com:9443/jts/users/marco,Create the service design and generate initial implementation code.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,81,Deployment Result,rp50:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.175Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp50:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp50:schedule,SGC Planning and Tasks,81,Task 81,New,Detail Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp50:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],81: Detail Design - Allocate Dividends with Web Service,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.206Z,https://jazz.ibm.com:9443/jts/users/marco,Complete the implementation and unit test the service.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,82,Complexity,rp37:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp37:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp37:schedule,SGC Planning and Tasks,82,Task 82,New,Implement - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp37:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Service for Allocating Dividends,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.098Z,https://jazz.ibm.com:9443/jts/users/marco,Create high-level design for planning purposes.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,80,Related Test Execution Record,rp81:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.116Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp81:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp81:schedule,SGC Planning and Tasks,80,Task 80,New,Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp81:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Service for Allocating Dividends,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.144Z,https://jazz.ibm.com:9443/jts/users/marco,Create the service design and generate initial implementation code.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,81,Deployment Result,rp50:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.175Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp50:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp50:schedule,SGC Planning and Tasks,81,Task 81,New,Detail Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp50:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],Service for Allocating Dividends,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.206Z,https://jazz.ibm.com:9443/jts/users/marco,Complete the implementation and unit test the service.,,115200000,,http://open-services.net/ns/cm#ChangeRequest,82,Complexity,rp37:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp37:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp37:schedule,SGC Planning and Tasks,82,Task 82,New,Implement - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp37:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.478Z,https://jazz.ibm.com:9443/jts/users/marco,,,,,http://open-services.net/ns/cm#ChangeRequest,84,Affects Requirement,rp98:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.515Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp98:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp98:schedule,SGC Planning and Tasks,84,Task 84,New,Summary for promote.mortgage.devtotest,,Business Recovery Matters,rp98:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,BRM,,,[],[],[],[],[],,,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.540Z,https://jazz.ibm.com:9443/jts/users/marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,,,,http://open-services.net/ns/cm#ChangeRequest,85,Extracted From,rp70:rtc_cm:comments,Unassigned,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.558Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp70:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,,rp70:schedule,SGC Planning and Tasks,85,Task 85,New,Validate Adherence to Corporate Standard on User Lockout,,Business Recovery Matters,rp70:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Donor Chooses Local Organization,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.666Z,https://jazz.ibm.com:9443/jts/users/marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",,,,http://open-services.net/ns/cm#ChangeRequest,87,Iteration,rp123:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.800Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/tammy,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp123:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.756Z,https://jazz.ibm.com:9443/jts/users/tammy,,rp123:schedule,SGC Planning and Tasks,87,Task 87,Done,Create test assets for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp123:rtc_cm:timeSheet,,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Donor Chooses Local Organization,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.833Z,https://jazz.ibm.com:9443/jts/users/marco,Please create requirements that elaborate on what is needed for this story.,,,,http://open-services.net/ns/cm#ChangeRequest,88,Promotion Build Result,rp118:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.991Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/bob,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp118:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.911Z,https://jazz.ibm.com:9443/jts/users/bob,,rp118:schedule,SGC Planning and Tasks,88,Task 88,Done,Elaborate requirements for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp118:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Allocate Dividends to Nearby Charities,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.666Z,https://jazz.ibm.com:9443/jts/users/marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",,,,http://open-services.net/ns/cm#ChangeRequest,87,Iteration,rp123:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.800Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/tammy,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp123:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.756Z,https://jazz.ibm.com:9443/jts/users/tammy,,rp123:schedule,SGC Planning and Tasks,87,Task 87,Done,Create test assets for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp123:rtc_cm:timeSheet,,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,,Mobile,,,[],[],[],[],[],,,,,[],[],Allocate Dividends to Nearby Charities,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:47.833Z,https://jazz.ibm.com:9443/jts/users/marco,Please create requirements that elaborate on what is needed for this story.,,,,http://open-services.net/ns/cm#ChangeRequest,88,Promotion Build Result,rp118:rtc_cm:comments,Medium,,Normal,Done,https://jazz.ibm.com:9443/jts/users/marco,mobile,false,true,true,false,false,false,2022-10-21T09:05:47.991Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/bob,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp118:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:47.911Z,https://jazz.ibm.com:9443/jts/users/bob,,rp118:schedule,SGC Planning and Tasks,88,Task 88,Done,Elaborate requirements for Allocate Dividends to Nearby Charities,Sprint 2,Business Recovery Matters,rp118:rtc_cm:timeSheet,,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],[],,,,,[],[],,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:48.034Z,https://jazz.ibm.com:9443/jts/users/marco,"During the new Mortgage mobile phone application analysis, we noticed that many Calculate Mortgage requests end without producing any result. This is due to the fact that customers model loans with loan terms are not offered by potential mortgage companies. This means that when the query is run to look for mortgage companies that can service the modeled loan, none are returned to the customer and no error message is returned indicating any issue.",,,,http://open-services.net/ns/cm#ChangeRequest,89,Progress Tracking,rp93:rtc_cm:comments,High,,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:48.054Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Product Backlog,Change and Configuration Management,Business Recovery Matters,rp93:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Unassigned,rp93:schedule,SGC Planning and Tasks,89,Story 89,New,Multiplatform change due to invalid customer model loans,Product Backlog,Business Recovery Matters,rp93:rtc_cm:timeSheet,,Story,Story diff --git a/elmclient/tests/results/test310.csv b/elmclient/tests/results/test310.csv index 9e0ffaa..3f6cd4e 100644 --- a/elmclient/tests/results/test310.csv +++ b/elmclient/tests/results/test310.csv @@ -17,23 +17,23 @@ https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/2 https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T17:22:40.264Z,https://jazz.ibm.com:9443/jts/users/bob,"I clicked on the ""Refinancing"" link but it did not open any page.",28800000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,26,Elaborated by Architecture Element ,rp101:rtc_cm:comments,Low,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,"serviceability, globalization, evaluate",false,false,false,false,false,false,2022-10-21T09:05:40.343Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp101:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp101:schedule,SGC Planning and Tasks,26,Defect 26,New,Some links are not working,Sprint 2,Business Recovery Matters,rp101:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T04:17:40.381Z,https://jazz.ibm.com:9443/jts/users/rebecca,Please follow our UI guidelines about how links should look like.,18000000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,27,Service Provider,rp62:rtc_cm:comments,Medium,Minor,New,https://jazz.ibm.com:9443/jts/users/rebecca,"idea, warehouse",false,false,false,false,false,false,2022-10-21T09:05:40.432Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/bob,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp62:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp62:schedule,SGC Planning and Tasks,27,Defect 27,New,Improve link colors,Sprint 2,Business Recovery Matters,rp62:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Database,[],,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T22:06:40.473Z,https://jazz.ibm.com:9443/jts/users/bob,For some reason my user account stopped working.,21600000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,28,Restricted Access,rp64:rtc_cm:comments,Low,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,"ui, install, noteworthy",false,false,false,false,false,false,2022-10-21T09:05:40.503Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp64:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp64:schedule,SGC Planning and Tasks,28,Defect 28,New,Login not working anymore,Sprint 2,,rp64:rtc_cm:timeSheet,Defect,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Java UI,[],,36: Found this SWT Exception in the logs,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,Defect,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Java UI,[],,SWT Exception,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T22:10:41.377Z,https://jazz.ibm.com:9443/jts/users/marco,,18000000,,http://open-services.net/ns/cm#ChangeRequest,35,Promotion Build Result,rp110:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.419Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,,rp110:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp110:schedule,SGC Planning and Tasks,35,Defect 35,New,Running out of SWT handles,Sprint 2,,rp110:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],37: SWT Exception,,<03:04:41>: SWT Exception,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-19T10:04:41.530Z,https://jazz.ibm.com:9443/jts/users/marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),43200000,,http://open-services.net/ns/cm#ChangeRequest,37,Affects Test Case Result,rp73:rtc_cm:comments,Medium,Critical,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:41.664Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp73:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp73:schedule,SGC Planning and Tasks,37,Defect 37,New,SWT Exception,Sprint 2,Business Recovery Matters,rp73:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Web UI,"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ipvn8FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ic1NUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hy_mIFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_hZHtkFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_iiUxUFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_inwD4FEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_il8GAFEgEe2UhZTKNaJuJg']",,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-16T09:05:41.890Z,https://jazz.ibm.com:9443/jts/users/tanuj,The picklist for selection of organizations contains no values,14400000,Sprint 1,http://open-services.net/ns/cm#ChangeRequest,38,Implements Requirement,rp43:rtc_cm:comments,High,Major,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.522Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,,rp43:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp43:schedule,SGC Planning and Tasks,38,Defect 38,New,Organization selection list is empty,Sprint 2,,rp43:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Web UI,"['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_ihXIAFEgEe2UhZTKNaJuJg', 'https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_h2kekFEgEe2UhZTKNaJuJg']",,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:41.937Z,https://jazz.ibm.com:9443/jts/users/tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,43200000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,39,Resolves,rp125:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.248Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 3,Change and Configuration Management,,rp125:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp125:schedule,SGC Planning and Tasks,39,Defect 39,New,"Failing Test Case ""Pay Bills Online""",Sprint 3,,rp125:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/40,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,Web UI,['https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.execution.ExecutionResult/_h5HcQFEgEe2UhZTKNaJuJg'],,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-20T09:05:41.997Z,https://jazz.ibm.com:9443/jts/users/tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",43200000,Sprint 2 Development,http://open-services.net/ns/cm#ChangeRequest,40,Promoted Build Maps,rp111:rtc_cm:comments,High,Blocker,New,https://jazz.ibm.com:9443/jts/users/tanuj,,false,false,false,false,false,false,2022-10-21T09:13:45.049Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,,rp111:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp111:schedule,SGC Planning and Tasks,40,Defect 40,New,Credit Increase request is registered against the wrong account,Sprint 2,,rp111:rtc_cm:timeSheet,Defect,Defect https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/41,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Frequency of dividend transfer,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:42.049Z,https://jazz.ibm.com:9443/jts/users/marco,,144000000,,http://open-services.net/ns/cm#ChangeRequest,41,Description,rp84:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.071Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp84:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp84:schedule,SGC Planning and Tasks,41,Task 41,New,Implement - Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp84:rtc_cm:timeSheet,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,43: Implement - Requests sent in form of email,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:42.243Z,https://jazz.ibm.com:9443/jts/users/marco,,115200000,,http://open-services.net/ns/cm#ChangeRequest,43,Approval Tasks,rp41:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.262Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp41:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp41:schedule,SGC Planning and Tasks,43,Task 43,New,Implement - Requests sent in form of email,Sprint 2,Business Recovery Matters,rp41:rtc_cm:timeSheet,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Organization must identify how much money is desired,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.291Z,https://jazz.ibm.com:9443/jts/users/marco,,43200000,,http://open-services.net/ns/cm#ChangeRequest,44,Change Sets (Remote),rp126:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.318Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp126:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp126:schedule,SGC Planning and Tasks,44,Task 44,New,Implement - Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp126:rtc_cm:timeSheet,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Organizations may apply with an initial request,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.347Z,https://jazz.ibm.com:9443/jts/users/marco,,14400000,,http://open-services.net/ns/cm#ChangeRequest,45,Related Test Case Result,rp100:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.378Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp100:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp100:schedule,SGC Planning and Tasks,45,Task 45,New,Implement - Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp100:rtc_cm:timeSheet,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Log in to JKE Banking mobile app,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.291Z,https://jazz.ibm.com:9443/jts/users/marco,,43200000,,http://open-services.net/ns/cm#ChangeRequest,44,Change Sets (Remote),rp126:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.318Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp126:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp126:schedule,SGC Planning and Tasks,44,Task 44,New,Implement - Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp126:rtc_cm:timeSheet,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,45: Implement - Organizations may apply with an initial request,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.347Z,https://jazz.ibm.com:9443/jts/users/marco,,14400000,,http://open-services.net/ns/cm#ChangeRequest,45,Related Test Case Result,rp100:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.378Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp100:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp100:schedule,SGC Planning and Tasks,45,Task 45,New,Implement - Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp100:rtc_cm:timeSheet,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Customers can Nominate an Organization,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.606Z,https://jazz.ibm.com:9443/jts/users/marco,,28800000,,http://open-services.net/ns/cm#ChangeRequest,47,Resolution,rp63:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:42.636Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp63:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp63:schedule,SGC Planning and Tasks,47,Task 47,New,Implement - Customers can Nominate an Organization,Sprint 2,Business Recovery Matters,rp63:rtc_cm:timeSheet,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Organization must provide justification for why funds are needed,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:42.844Z,https://jazz.ibm.com:9443/jts/users/bob,,14400000,,http://open-services.net/ns/cm#ChangeRequest,49,Reviewed,rp121:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:42.864Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp121:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp121:schedule,SGC Planning and Tasks,49,Task 49,New,Implement - Organization must provide justification for why funds are needed,Sprint 2,Business Recovery Matters,rp121:rtc_cm:timeSheet,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,51: Implement - Organizations can Apply,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.083Z,https://jazz.ibm.com:9443/jts/users/marco,,28800000,,http://open-services.net/ns/cm#ChangeRequest,51,Related,rp92:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.101Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp92:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp92:schedule,SGC Planning and Tasks,51,Task 51,New,Implement - Organizations can Apply,Sprint 2,Business Recovery Matters,rp92:rtc_cm:timeSheet,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Organizations can apply,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.083Z,https://jazz.ibm.com:9443/jts/users/marco,,28800000,,http://open-services.net/ns/cm#ChangeRequest,51,Related,rp92:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.101Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp92:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp92:schedule,SGC Planning and Tasks,51,Task 51,New,Implement - Organizations can Apply,Sprint 2,Business Recovery Matters,rp92:rtc_cm:timeSheet,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,52: Implement - Donor Dividend Allocation Criteria,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.130Z,https://jazz.ibm.com:9443/jts/users/marco,,72000000,,http://open-services.net/ns/cm#ChangeRequest,52,Tested By Test Case,rp52:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:43.153Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp52:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp52:schedule,SGC Planning and Tasks,52,Task 52,New,Implement - Donor Dividend Allocation Criteria,Sprint 2,Business Recovery Matters,rp52:rtc_cm:timeSheet,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,JKE Charity Coordinator responds to online request,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:43.179Z,https://jazz.ibm.com:9443/jts/users/bob,,14400000,,http://open-services.net/ns/cm#ChangeRequest,53,Complexity,rp54:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:05:43.196Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp54:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp54:schedule,SGC Planning and Tasks,53,Task 53,New,Implement - JKE Charity Coordinator will respond to request in the website triggering,Sprint 2,Business Recovery Matters,rp54:rtc_cm:timeSheet,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Validate Loan term and amount,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.597Z,https://jazz.ibm.com:9443/jts/users/marco,,57600000,,http://open-services.net/ns/cm#ChangeRequest,76,Related Test Case Result,rp129:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:46.618Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp129:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp129:schedule,SGC Planning and Tasks,76,Task 76,New,Implement - Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp129:rtc_cm:timeSheet,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,81: Detail Design - Allocate Dividends with Web Service,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.098Z,https://jazz.ibm.com:9443/jts/users/marco,Create high-level design for planning purposes.,115200000,,http://open-services.net/ns/cm#ChangeRequest,80,Related Test Execution Record,rp81:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.116Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp81:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp81:schedule,SGC Planning and Tasks,80,Task 80,New,Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp81:rtc_cm:timeSheet,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,81: Detail Design - Allocate Dividends with Web Service,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.144Z,https://jazz.ibm.com:9443/jts/users/marco,Create the service design and generate initial implementation code.,115200000,,http://open-services.net/ns/cm#ChangeRequest,81,Deployment Result,rp50:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.175Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp50:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp50:schedule,SGC Planning and Tasks,81,Task 81,New,Detail Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp50:rtc_cm:timeSheet,Task,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,81: Detail Design - Allocate Dividends with Web Service,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.206Z,https://jazz.ibm.com:9443/jts/users/marco,Complete the implementation and unit test the service.,115200000,,http://open-services.net/ns/cm#ChangeRequest,82,Complexity,rp37:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp37:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp37:schedule,SGC Planning and Tasks,82,Task 82,New,Implement - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp37:rtc_cm:timeSheet,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Validate Loan Term and Amount,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:46.597Z,https://jazz.ibm.com:9443/jts/users/marco,,57600000,,http://open-services.net/ns/cm#ChangeRequest,76,Related Test Case Result,rp129:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:46.618Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/dave,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp129:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp129:schedule,SGC Planning and Tasks,76,Task 76,New,Implement - Validate Loan Term and Amount,Sprint 2,Business Recovery Matters,rp129:rtc_cm:timeSheet,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Service for Allocating Dividends,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.098Z,https://jazz.ibm.com:9443/jts/users/marco,Create high-level design for planning purposes.,115200000,,http://open-services.net/ns/cm#ChangeRequest,80,Related Test Execution Record,rp81:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.116Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp81:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp81:schedule,SGC Planning and Tasks,80,Task 80,New,Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp81:rtc_cm:timeSheet,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Service for Allocating Dividends,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.144Z,https://jazz.ibm.com:9443/jts/users/marco,Create the service design and generate initial implementation code.,115200000,,http://open-services.net/ns/cm#ChangeRequest,81,Deployment Result,rp50:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.175Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/al,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp50:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp50:schedule,SGC Planning and Tasks,81,Task 81,New,Detail Design - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp50:rtc_cm:timeSheet,Task,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,Service for Allocating Dividends,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-01T09:05:47.206Z,https://jazz.ibm.com:9443/jts/users/marco,Complete the implementation and unit test the service.,115200000,,http://open-services.net/ns/cm#ChangeRequest,82,Complexity,rp37:rtc_cm:comments,High,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.230Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp37:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp37:schedule,SGC Planning and Tasks,82,Task 82,New,Implement - Allocate Dividends with Web Service,Sprint 2,Business Recovery Matters,rp37:rtc_cm:timeSheet,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.478Z,https://jazz.ibm.com:9443/jts/users/marco,,,,http://open-services.net/ns/cm#ChangeRequest,84,Affects Requirement,rp98:rtc_cm:comments,Unassigned,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.515Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp98:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp98:schedule,SGC Planning and Tasks,84,Task 84,New,Summary for promote.mortgage.devtotest,,Business Recovery Matters,rp98:rtc_cm:timeSheet,Task,Task https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,BRM,[],,,,,_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:47.540Z,https://jazz.ibm.com:9443/jts/users/marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,,,http://open-services.net/ns/cm#ChangeRequest,85,Extracted From,rp70:rtc_cm:comments,Unassigned,Normal,New,https://jazz.ibm.com:9443/jts/users/marco,,false,false,false,false,false,false,2022-10-21T09:05:47.558Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,,Change and Configuration Management,Business Recovery Matters,rp70:progressTracking,SGC Planning and Tasks,rp38:repository,https://jazz.ibm.com:9443/jts/users/unassigned,rp70:schedule,SGC Planning and Tasks,85,Task 85,New,Validate Adherence to Corporate Standard on User Lockout,,Business Recovery Matters,rp70:rtc_cm:timeSheet,Task,Task diff --git a/elmclient/tests/tests_702iFix017.xlsx b/elmclient/tests/tests_702iFix017.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..1b10e2ee87b90b16c75b952afac8926daebe0916 GIT binary patch literal 22379 zcmeFYW0x*Xur1ogYTLGL+qUgq-K%Zewr$(CZLYR$oPOWE&mHI9z3(sBr#@7U@l-xD zG9zQo$f}BxmjVVs1^@$q0000W0B~g0EOrM300;yH06+qO0MZh&wQ)4Danw_G`(xsu zL+kq68b2Qdh&&en=%@exJ^lxKpi+5C7Kj19JL3g5Ll;KtMnBSE&(~cU@dnV6s}^Rf z`4k$$_S#y&5LysIyLqko{!`klm`|InT3tX8%ag?2L=Ab@iGF#8>XyOlk~gky;R%nKBN%Il&PW*q{|w;eK3_D zqY|*x&O|yHV*w;|75$f6ER)~By|_!YWb|ZzZ8O64>Kh;Q<=A(%v)%Ov_82DlFy&l^ zFo!^B zqn+=HtOpp+kah)#si1b(eFfA@l$T(Ls%(rUZ5$PuL5xRaj+T3-pl~)OZ(soV{}*MOROpEwe&SI2hmlY} zl-090v38)N{pb9Dsro;dpZ~|yE8}J42I!%Kuf;z?MxU3qV&Mg)Tm-~B2$a2jB{t!j zq6&zywtC30;gvB1fW>^eyg$Y_wz#9tMhTwwnJXg@k-3PPU8;gp-t3&fDM{^9+#fd#3bFwox5TvD_TqQq{eoLL>F#_>)>Z-)i5EEim-!GdD8qehh;Rj4PUAO zmjsnAtAcA=*mBPjW-@$Ml8aAa_(D0PFXq!wMjZ^z)~Y>6tqC4qF;$ezIV@@ov+X$v z-SmvDd+&uadXPRnX=F1;6$zOUUl?b^Mo4lWeKZ@HZzr0E5>tqg5#t^UbrmC7478|?62db!{DH(3Z2Qj4H= z;iK`jfa!$h3lDYr#FV7@S`?Jd@DDp&g)}7=;r*l41_?)#HaElxYv{>Vojkw_ zhXq^Z@>L(wPn-XCgVvr{`efd%w*~iYO^RBKK}F{Hou<9%)V1FN6WCSc*PwD^a#H|; zYWoCIu2!w7QSNj*T61&>_h!t~3BlHMBh%j#InJgii8} z5hZA~rYnK(W-AN@yUFe7tT`dNd7-(oH*gczQmhDLkI8%18Lz1{Cswi`A|a8u1N`$;^#reo3agNU|FUnj?x~ z&Jdui5#4a4al}%a3vLm0v*)HB#M&v~;Kh|=^M3g!FC>WpJ%_4wLnL+*I@?)(J}J3N zx5iy@AYsN7=5V5GT^+pEr@^AL3n_^o!Q+^lxFKGGCxSj-I1lzK6kN^6R*U zw3vWObr6CnRX2I=1eU!OThG8aD_f{)GEfQd`KQd(rd27pes{9fl(QjbDPEJO#|xY9 zsT(HYolv5vhzueaH9Wc+y5F`R3;-*ntCh_(n{Cu)eE%(f;=vOyKz^?9{cs2q00Qub zKmU$YR`k`J~sol{Kxo#E~KCy`y+ z5M0aa;Mz)&bF4Skrk+8({~0%|W5dU#>V+5&(+tH};+KD=vx$)v==IRV6j5lexs-Jl z2`Dh=>hX$Nhni*F-xB?F-q2FR0HA?Q+al<7`49p-o;CKe%(QCUPBrCgkre) z85VrL1>_J#Kfc5k{P4V(>2Ir!a!Y0&uFtu+Lnu_no7rJdVZUxt)f+9cID`X}_o?(J z>>0s?clGhxsbute7L4vpJ}{v{q>(a|19pwTHa#R!qlz48R%d^Xres?C7E5wycgmgB zk;$0`2HWqx(T3GyzMrN4uNoW*4rmfj3;-|=3kZPz)8jui*umVy#L9FG*exopaTk=qF_`$h}rc6VPg6s;!r z7|dV*kXH)ah>)MDrHb=gUDhfgrP5apQTI@}w`Xa+d?I{KU1yvrLb`;Bs>H$%v%eFw ze^(-2^deboBNHXxPno&^XupQdLc>ZE7pCv9(S1ERA@rC8U)3TxJiwojDCX$-++WQx zNnqRKVs>;@?M7&KW!Yx&o=MIPQ>F7LjNZ?hg(0WpTB}>6Alfne8z0)aGMuNR-j64| zlaBbpnR@G8-FAVU-{&_Ow9X1C((&{&sqD#nLdGmC+3Hj0#^ILC3C%5^ zV_T@wN$uo#sXAh=6?e~cVmnQ5MVZR4F4284MM?W6TtQW zaK(D6>70Wp4_C8ax{{joe{a+U|IX0qY|t{A6VIDH0bGNc4+ZVE6_%I5-;kHR;Hj3D zCOTl$24;6}@~6vRWkI!mYMGGy79TxhKJss zfC_E+yusS>GB|Z7TCkhMK-Q&n!Ns%D!08+1UoR%|66FR4zgZbo;&{t-ZC5+4_WPS= z;W0P>vfIQyO5vN5{~LzH{IkNw5h6BHu(u4M`jll32FO<$8DJW9H|=RL&5f}~0HlPZ zw@j!NJq$pN5`tVOg1y=vO+=}$*m+jY3DnudW9Uh2dD<4?PcsBKe1ZK)ZAS*G|D2%q zaVH>^YJ>^Zvsyc3!SepWNn^b4@{~v3_>IF4Ul9kSh^^(baKtja?<3%nA>4 zNljw($YxeFu?F^T(cI=@m#zza&-YVYxyAfJ{fCAd#M`F3fWnMc_umO=r|Y!NW+f2@ z=BJJGc63gRI8CIXsO`*-mJ2b+5$07=1tfy$bd^1R8u2!0xE9-A;#;A(AoEr)Q$xgD zivBvV`aO^p8QGW z$FNEV>?m2@(z4-u*_v5i7~jf-q!j@QmfeW86(LcA;K3cE$ESuU5_g=PFJAs6wK>Jv z>3O0Z-WgKZ?elTCw|Bbqx$wF6ywm;lcc=wVHar0>rf28-iTvA%Gb^j}#f+ij+w*Oq zN0*1&+xzA6G$dinr6Hl=nr~(G9&^(;?m2qQR%w7PW3eUcbK>r{~ z6nP=d_Anfo`IZ0+Mq}D*l!a<6q;olTX)(lFOWf@)|2m~VO0-nShg->`%-zQX4kV@A=oB@;3P-3SCCcPWNU6 zB!TOVm(qrL{o4LGWONse>D)5|X=h(xOKR;%;14V=60d&$>p5$Y`ZCL{yWn;?t`C#@ zetz@b^Wd*h=QV+|6?+ChJ+`Zw2?}V0mGuv7Zs!fbOz$g1cUtP*waz|nTLyz`47WE@ zhwz*k*=$_g9Nh2cje);A-=se0-(0UX?{q!i&xe(-4tHC}BgYBXdSBWt%0@+(EWJJm zT?6quM*ZN@t#euawuy2eK%dU%0@6^n-}t4)Z#`d+5qfi6!984&HR#>-FM8S8-ag!3 zuXo>9-=Ejlg|*kbKA-mO*;Bg`Svd{EPej=xW_Ew)Jga}dceX7UQlBu z^U_SG%T&y9z(jYd2yXZ6wVXiUmRP{pv+zTHu!#ErqS}pXK-(W$ij0Bmn!>bFM}Z`| zX<^hDaV_Da86)wJ2&NWIQGObl;E)Oco}LTGZoC5of@mBgD0qImfigljQA>pO7>)S0 z)H=nQwD1t!b==~FaAF5lgm*``wW-*Cp;2*wq?*#9;q;5vnbI?6@Z{~JMX0?6G<}Ka zT5DMHv>VBRzbkFn1q{&-GGZi%H&Z87q>rS>m;4sukX|G5qq@i62EcL_-)9U36M=_+ zFaqt{m1Q`hD6+`4iIy&8DB2RW7{=q;DaH{Z^D{#viZ(+hlfI?h#?lfigbE5MR)*CE z63^)g#tll_PngCUv2{mQp47ez*D?~dkE$^o zoJPuBm@EwPQqR{UOs;+~^*Ra|pCSC-A_T?G9`)A@fF@}Y12@d(`*;*B0T*`=Co$={ z0w57vs>F~sZNXMsSe3*MyClYlZ5Rv∓qGr0Bz2aY>U}i5S(qzwweO7+pMyn=S5R+I4IhI6diWr-+E8|0h)()LB_bqqCE(y znT(>zX4FR00&;6<{0iTzB8b^*?I;d-_!v&?qM%CIk&ZQ3Qu~OGHTL8x`@k*e9Zbv| zyXKVUbq671^gUt&wD5MxorQqyE0viuBP432Z64$yT=s1!G0cD2!nA*_a*lC|&E83^ zXEQmx%Q$7Od<)+xd|rYc8YsN;5I!2W?Ncx#uhvx3#FO3tCc=^oMiBv;zrThU0vo!u zGE|4W(E`#m>Ri&dFB1#Q!ct`u;UVOpIEzvU{g5oYZ4MvHKEF;lBUfG1#uJ#Uy7h1)T7{ynv4JW=iTYIj0~kV2StV)g1e%U zJkBZHEhH!j8PZ__ZA;+u%XaGMArexcbyX%?2WAc-F~N@PS%qCBIkJ-d_KR|RxjbzS zCJ}IX>`>rKV0mmp*zJ$8{c1*kKZQTG_-%8La8wlh5tKt+sfrx4+)j? z>IVYJLw^1xQA2bQ^C@0G48b$7I|l!=de}%o;&thE2>G$LWJz{L!g;CjOc=-Ef@_fx z@Im7c3J^qpvB(zgF>KtrntPrSsTf|w>01#3`2U#bW(@{mzs&MqeySwnSeel!v4xF}?%!pVS`p&vK6iZgcfxP7IX6J$- z=_)?QshioE?bV-Y$8qthC+Hx*1uLsM& zRORC6QSH}HFKLPb?%>2Z^xMBI>1CYyHEEc6#`^rGMo=|r?U|)5t+X!1N6EtBeN1;; z^WxlS9Y53JWMT+Jt{B522>zMY7?+?#nW5w~wrLE0aApeUUCqyhRCTUA15{8XvV_ex z#t|W;LK~>XG|1w`gC&^R101K9V&d@$E+w|Va8pB!4z596EvYu0U%84l;#f^c!sP7T zS;}PS4%p;Bt|nvm_jk~>Y!l=X2pl)M49o;j!6id-0@Aqx(w)*$^w|d)gdZ0fmcN3K zJ;;aamN)}pEBs2|MTn38iIrU=;-b{}dk9`0|3b%YbU%t;(kQeLqB089q{4p^vofWd zE&|QkB-)@h$p`62bppl?Y3H)GUrDvD1edn8B5`_E#$n33_t^$^kvB((?>wZBC`lbi zd+r}AENDvDHkRp%5rC410!Jf&k`pBIjc@p?CF+u$Z57CpTerBe7RH02vM`T=W5jYu?7ZCMB7e%xRw>885&P8WtIxT5h zy0lpnEVNa_etOGJY$C^3P~u-Y3~5YmYfw6e7Mg#i4ow2*S)%0I|CBY^F+$Qk`bre$ zLJm(y!la~~%|~?sn#|jbH&Sao!(S3MQvXo(54-3@_)i2ncO|m~J0lpXdg)j>@Cfa) z@C+e|$&%*bi1uC7T$wsT2Vl$soUe}`)<^5?nT|UZfDC~g&9YU3ww^{CEQYcRHnrbF ziQ^y;Nlq7<(z!+DnFbz_0H4sae6Frihc9aQ#YP- zEDVaduyriCNnJCJwu<(rr>Am(Ba?r~BBOhu0y-s`#v6!}9xUwXV|7ISeaMJ}{ zW-OsI2$4z(3;h-D?cASx{-r%q*RPc)GqYZm4q2GdA}g(}0LR}o{h73K&kLOLv@1hn zpLZcOo>{a7v;&!pGLcRCKvN%aeyRX(=tieVz!d2*999Qtv7A+**iB4iNJSiT0n4sLS#^8!+=8GPP0#r8RCFa5A8}QsT(7E*CQCsUvtp)@H9_Bl z{NdF^jg?$IzRK;QiJ1~Bx)4}GD-cOm>jr{KFv@NJWPVqM4E$bX~(c3?P2ad;RvEu`w@%OIm=a1zG+}4%QnSS-D@Nf!|_KbBe z$P_K|Y)KgMe>j?nlJTi;m-#mjRl=ygyWsX?-0WS2O-IViiTt{u10Eh3!V)$Z(kfCX z(;hAlOBo)bVhc~Q$z_7>?y4lCSP9pPL%Z^xp%ZTW~7U7y~WhB4z0=r}^B&A46 z7Yfw3=o9(RuM?h^M+y-gB5_fEREoia#}b->=%G|25I1O|{6{2n{?zet4i56P)L@tg z31|Y_hpmmtJ@qpNjCt)b34|}nATaG8B>gZqm1wb&@`ogbxFWHZ-S`X-{W0)`H<9DR znAHPnu2yUmO}#YDH5B3q4OJOZlUKDWa+3-pHKx+_hE7U@k+GFOVm*jWq%rj4-N^!R z)u|Ew;7|+#jj7!_ZG-{N7fS(|8z;XUx^_}g$D1YJOp|U2j8M}l(>s$CPB4l&>NQKG z7hi=#$=S!&T3W)=jX7LTO;ZPdP*gU;Wsfw-~5k4%gb|>i} zDkZKJKW)%PImmH6;4h}6$Yo&#b*g|NOj9|$v?3DeNM456{6B%SPN8-*6_-ddMOMON zX^uSMlB^N(W7MR~`~5c!KjUmfH>z4G+ytWQ*}#mIS|LxeCZ$}PEH$3k?Ie^X$zVu| zZ04WKbfklSA@Tt6vVF@LoJ@(lSSh7T&&I&ajuJwW6DdZE&B$_6YI(f2M@4t_GF1hv?b*BLq#BsG z^5PcHXb%2s#^`NnHKL@IpMfm>5a6E%c7cn~fwap*r;7d37D1xJ)Tg>B2ho4w28<^LBCguP3;>MxSbr)0H0Y+m?kb7!79D zz<6qX43!+oGo`gR@sGy(M+unI*ie&lE^THxi_om!laAW6pskom=;XHrqFP|-zUgy!HEHwU&A)$fWQ3H(xQcI}AGWuLSf`)xq zbGXhRF_E}t4$Ii>M!Ox zwp`a`(V^H0$hH03XjKS*WHyk(vZ{B{m>;y#ON00_9#WUXmir$hgny9Uo4`xA{QMV# z#XOfP5kE1aik)p=U!mzFiNL}^L5QBfkY_GRU+OYFmzmDs8U@4G+QnEJAVpz*&{BWU z(*8kn8MaH?vaOzpKD|P_G_@oM{(K3QxJyp46j?OAr$3v6k923oC4HTX{Bg=9_f-Lh zpr_AHplXH_|F^m0sGbK*U#XbTPe0ex12HC27c7DRh!TwLi(k)8sY1%%CL< ziaVT#)~I%djN5l^5`FWHG(FPwc zZ`=IFDTeaB8j{Es7Q#rci6;6m^^xI(5;3vlh!u2Kst*k5i`zmWpXCxL|l}L!njBzgjq`LIjj#BvaF#+3!N|ot=>(+Y^#U$1I&uE z^|gDiWd(W7im^eQP*x(Z+nKH~!NH-Rohpu2^f)s+} z4dI6~o}a&{ypDJBNWPUq24(s&2wo>Y$$%;>0RJPBvHO*fXgJst8FAFT8qVhNNfqqp zJSoQ0(f`Jyyfdkp1UFe$!(}}0A7t^qG(q!XeG7Fc-M8E9pa+n_w-$D}! zeiMO-7=L)?Zy8uQ=HSsWV=~oh!jcu4u>Sl$s#U~pPpu= zM=&)DfviUo$u4THTwBvh{zGsj^%KdDVWPkK={yl)4ND;DOnO$=PQ_KL4NF$!#xDMI z0M7Bfikw^J0>RnOXV~v)R_Rba+^^93 z)sF!PNDu@=oY4=;MKd}+RJSlvSnr^GMM>$Ri*4xyJy*`aI5_QWYwbm}Fe8)r_3r~y z43we>p*@ObDnpHiAAi|ilY)&ydP7F~hO^kr(&u^}F{p$mRt}5cB}{f!y8xAl3lDMT z@{1&8jddEGh)*3@g}OyYJEpqrUjK~9G@FWIkJrO6xA$D-XJ(?E&9R=_2u&wh6e|h! z;V2;MHtLs)t?ZIYcT(a9&L~M-=~<#sCNr0@sO_Boca64@%qg#{I>e-7S&?T328s0h zDY2Wk3?^ozzI^>1?ub0wZo%uWbre)nfsp715~y$$zElLI?STE+^J^Tn$lfZ*2T^N2uSFh ztFELsU{fSoyU4os!>P(=JOPK0WRpR=O$V?IntaI7nHu5M92XFpV!!~Zq!Ns+x3|;bx@C66hJ)^Wx=Y}!#zuVEorv0fdC9z z{jG}xAAPA6aEiXEyBKtxk5gB8L{A!Te*;5*@XPuhlL`%v?KRaH%wvWRgp`Z{cX^DIGcB??bY_BsX*S&$d|~sTDJQ zAeCg3*_Gzn9oHdfGct>;$G{16*@rk)5bjDBjjUrhb@Ot39`S&GEv;I>&~mPNF6UjV z!;UyDuG7`J91HElZnE{3&`9*ELIxVWYAPBE$;N8fpp6Kab%IIRkFCR&OPMH{)w^*) z!q#zKE30uu;@WZEBkMtcOhrer!FDhs5fzCIB6%YWtt#!PUH`b>5SyMBNB!O=OP~58 z9jhNIxdrv;fmy;sXns4skw?NqY<@eT5svsWm<_n6Kd=<|wgL~-h4On*xGDgiaCQZ> zabPpz(zb{9)BU>z4KJsgXVZs+!G*#5{Vt`ZhtKQteL>Hg4q%_@-N=~4a6*TR zilC(AOfq(VH)Ao&3uEDpOE7?p(Ji`T0L@92TkMTuLWujS<;4HK^|l3JdI8q&adm0u zNhWioKb<_2c|CaVphw_w3mFOg%d=TI!ynsMiCXuGy4v)@wYqqIa7j76HC+-(P03>4 zl2S%nrYNkUjG2JooafS#H@pXRs3{%PDEwJ?jitj(yJK8No#`eZ&!w};)uov|u#S}O zB3tpLD%b%dmf{iiZVTo(YPTay1Lk(C-(0>XRb06S55>gRb_;uj1i$uK(w^A?<`45G z&4|H^iIg3*(Ub#p5@~ea{2+sJI(x7r(ulmpK02igwop-+QSGwj$c@5?LnL_zLv&xd z0CqsXFVH?Z80!goBIO^|zaM7+YH#{D=voHpGJ|(#z5Kci zc~1r%S?s=kZm_xYgMdFKd?k^1mHb$g@rd^8wONo3I&!= zbp`;2;_{75N(2Vqfwoz-1*wyvwhCQEMI~je+%HsE?DhtvUxm)pd$HBW{Z>i8(JO-d zuT2h%(EW}WPRzH0v(bxO4%noNiK(zb`ZpNs3s9~y$EXjRIlKQiDI%!}xEc^D>JeYI zA_eK>7k0a1=x=@8I+b*Its=<(+GMZ@A#MD?uKvJ=Zehmz6sQeTi@BOi+8b9zYUId` z1%~dKf|Ci`2-^kjq!P^wc^erR^z?CgML;(2h17|B4EJ*PC|K;XQObOX7KQDUGT&k) zk$M-*585iHzra`pKVjiHarcDPWBp~T#4r{VHh2rt*S{m{R5m?I1)ep8;{*r`A_M=q z;Wu$sf#vWG3c>*}6=t-{e|j7Y>ocW?LE>YepOO2)3X??Q`!PiJV@S9tEa%4%(vPA3 z^t{hOF`OB>{EOiiNH0wHePM%jIcV!yIdYZJ2!GU#XU59REr(koUF4(1m)IP2^;J22 z32JY_ODjGD`j5$umoPs!@BI0}{~r@S%SraLoZg5(%PDuVFzYS&|G>l2(nk|Gk9+u+ zW`V|GQd5umaFeXL;%k>iL%Ae2a;)PvP8F8k}MW4UK1F+zfbhexD zFDP9T@Xi0O|2iqs33w@-vM9EFt#s=C?U;YxDXyG1UntL&RLRsf0k7~sIR3FeRKbaDEw*h3*N7nFO6+pZEhUWh|x#7|F({) z4-LLs_Gi|^`2Tz(@oycIqq)g%6S{xT|CTUaXiP<5u_5=M{S=ZrxO}kujUn0Iov}{X zA~w!S#BOT7P*7!JjPJxk0wUpfR3tAfN)fc>Nu1{ghUt2Ufh2A`#hW9WS|zGFB+jsw z)O3c45c}#XDS6KJcE5MLo$pF@7fXfek5AU?mcQf4j9g76UP$(_Vkc+zloL;kL@klM)cwnz9q1~IY<{3>jnmy9RDu|bJC1Q8t9+H1=0w?i5^BHmAwgF1qZ6R@3% zN>!v-g-#UzqU&!c@8QKrKy(3O5z*WHmE`jnt%VMCPL)*n5KKeJCik1MO(PWB+InK?0h8`Sx;+VMe0&lzU9G6URc7uHJCQ2$*n-6 zq=(1n;pBBdufDB`QpyILL`mstDMs)6^Al}bujlLL?3V3xk?gjAu;=4-BBkg1mh-W8 ze-nkS+w1P`Gy!eL>+x7F24{T(8z=RKAgu1Dde7*ZG{V3S_Wc%+FKduqa4?=9;l#Q0 zYGM>fR}25F->LSpe*;^67_^hS$7-z|@3xINI;}>u4s_Ef(iz=_bGJNw;^yX0w)9rQ zeOp*Z*le8D6|H0?!1FOvuG+rhT2!sc5llE@STTFwyi!k{P$W)8hfwI@3J>GHbZywf z6?{!V=mLq5y*`N|ZKIH3=tRE>e&G7u)b{V1fl{j_9#3N;gP(EGdxw@C4o{fVDqJXX z2s5zYbVnE;Fxva{iIG;*5evJAQ{2B9Q3pyLafUo%3iSMf{tNq#t24+NFJ*r+-xh(+ z6vyMd8YR!|ur3`xI_OObOCS>G5+H%*8MDSE%p-&?U(c}F0@>XEX-e1%dSIEJNEZ5L zGL2K$8JX6Fhvw*C8)34}-Mrc~6~@HHd0&>a-hr;<7&(mY(ZcJXK5M`Gn5q9$e^_p{Oktk_L1prMoA|rd%+}7|6_q>;VW;pFQ+P{Khy5^9**z;7 zR%Vw4=n(H9Vu4}>^n^aXqetRA3PQsy#U1s^Q|Awrw{63SzTP&^Wj6?hrzHmdQ_Is7 zyn>ZKw?Qz(FKDza|4@`KZQ-m6P3x<~jMWTQIACN^)h?ujgQ%gIpRM$V%Q&tJpaU3a zjMnXYB4-A<$+56s1LQLvwUxVh_Ga&&_)3RmHx&onrI+vb@}D>Wm?gZS&${kc@#=A0nK{shuD@ z4#p6d>XA4|qetVD1j9Uso&TFk%@>|m^KUvo6<&rNyd&4BD`Ov#Mer87LbfcP-=0$S zpRe+v9h^$yHSGQ_yr`HiV9sMUghF+7Ix6t!FyDv(`?Dzqzl>UxxWiYMef@FsmCo>a zj>Kpp&Iozu{8Z!YewMK6$vHVHJaoCW^uD}vTJF?x;HNIREjGNRaR)GqBeUWm%Ckks zgwqhN1DJ|Cp~ZU2BAZWH8vAN1+BR6kB{#{=y+yAG;68eqoJmF*jZWEt@P-D3jYcMF z2xz%Q)|cN-qU=1k)nt65S(BPh{M6@?Subzno1IIh;4XgL?tgsPOB7G!1#MG^$lvC% zMiW`}BQ_H>q9ArUIml?fy(z50wF zv|$&{-vG4@W<{JWYDQLQul^p=Oa&oCL`dsRqBZTk?RRUhdD>kg;Ag!zjpu6ocD4*M zZQ>yZ>5?s&y;$Z9(yh|EhH>Ajox|q7=^}!GU0<@1KWF>ZWZ$9%VM$`*U7%44o+Qat z+Jg0&`-x9wq<=`^W!w$$Y}wKLA9aoY-|w9`yJ1MUKmY)GesV9&f23arM>lH|hkt5^ z7uB_FH&~Iq@oK;MZ*=B{;;k@}BiN&Bfpie?F>2K`^RWq$PZb;~T~>W|2uRk(ExG(w zT(fblb>Vs(_zn(?bnG9bRfY=1Ykdw4ghhVdyeC6`T@pBnqN}8bX8xft_h)PD$1CCc zW-faOUU(OiWC23Vm%J%huBba#T_d8Aa3WDt?v*A`kzjUQny*p~kMCs6kh}uRW^jhqRNZ4n=S-UeaP>n+5NvB5x z^;83-ihius=S|NT=ywW2Ew4nPc#_-vS*zg(0?IB$1le(wv?L|M>J8uJB}Bq80TX^0 zwWKv+_$$Zku+5w-b<{%U9t2KEstbIz^ps{7HWLNhfsS)QBb)7h{+YL;=@WuzD)QY` zO#ymG9~myd^}u6ql=1|JWP>o&2Op@yuy!X%nFHjNmN}Jt7FvcZ6BUzNzV5K#b;TaE z2daz(r2mxI%$NdnZ@8iZ=Qr@EY2v*{0)#hRb0cuB4w`u7MB`#k?*o2Os_QIE-_g3M zP|Yd8r%;CHYL5>RVFk*Lr$!1?xnhRdg@yCt%Rx0;!^id8N+yknL{+w((2=Z!4AbxX z+$NTm8Jz*E7#SZ&#GF!EU6WOa3xI*GD=_;Qr~(Cu1sJ6h1m{~s?8B#Z zSo!<-dF1R%bN5wkB)j@r)tO?`A{Fmqtw}kn(YAPWr=};lVBxbqvwjqSfMUCKQPp2o zvR-31e{2&1V{*`prk{sg8vDCk>RC)LlLW3iFX4D3ug8nuRDZ5*f_~)rL1UadfV#N7 zh*=FGejHz32yyqw0Gl05iORC)#vzF{v>^qtHN0|1b@g_t-fZf;R5qyUal=c@l8>aigEn-C^{N5!5Chc6FqH8}ZF+aCWqh%ET}yUg*Xg z9cXX-=#Y)p?viLCxgClS;I|qSUKoD&z8y1XY-wvlQyXG6g`|#)75&9J)^iQYbvZq) z>fuwdg>m87PRF^`<$S*6QuBr4`Q=$6wuLY=gfA(aKyMVRn~PlOvUCM9-AO)E^m*I% zX@KwO&060RZNiN>{#71Nm3CM^T2mj*Q_KOKB!s?r^t2l`n-^Y>t!oa4!;lpQuL_Bw z)(VSzWbMrqllJ>!SGv+d|JshO7;D%VmpH!9As& zj_^48QYK{F9q4fj8!t=rAg^vWlYsIY3X|G!tYC7?-_3Drymqdsvl|0WNg+Tc#n6Ln z_%?0jY1iIx0G+m6SwIm7*q73+(6(L89m&JN6}}hSo<7oPzXs{!Ut?>yFJ@a3a|#uNKH$VSoF5L`E3LVn39`=If+K<_hIE(ORw#jQ15Ds^UeC0(}Z!XO}`Y zA)fD4q@~C-IzhBROm1uv6{~)U_>42nY1yiG*i;p9E-zugDeTCX{*huMWLGY*W9tb? zZD*yv@aB#%8O|;j?-@58HgBd3d5TLh^*{pm><-=P7xy={=v}_;SkC%9EqXs?7UXPI z;huB;DSzPV)AW#z>?vyKlnYx?R|*W5 zxo&;n0P7NYTR#8%R)OS%QbQb|&ICcndX{^~`}_M7v(h_rQUyuP_pqcTidDjD1-=m$ zoz~^@gz5;xxsxFkO7L_E62p-Q^hsL2*aO?VDFEWYkCCttyLBl~m1xdne_L`5!q&KB2bnW=G+c;UVD;-}9R3x-(zw-T*ID_jBTgudZp4{Iv~rShq=B>UgV*%Q_9fvJgL)frt`R3w+gGDatkU*Wbq>)2AjTSg6{>z;`# zxw)c{n)HdJy6R70D`~3RlE=2<0(rkeP+F$QZcSjiOswaa^xD0*Jmb-7`^NM=>0RURi6 z+N}%toO{~Oz~)+7xSZ%MMSdZOm-sGma_Rw-Pt_Due-Zaf$>y%WE;5l~h*!-)%o z^|nG*K1g9&Y}&@0%X7+%5+|J|i! z9%b=>a8S_i4-QtvpAPad@4CqhV|+sYh^Twgykk`nljw*Y+rUoq^M$o z_PDXQ2PI);NVP}!TJ%O^oTqKW{l;H&7?ig}pC$h*WGoGi23HKwfoTn;Zqhfai{E43 zJR~|#&(-QYisn;Sl`OdsM0IBz1LeO|SGi^^@P{@g6VgWybwfYhBupyB?@0-;jhVVK zl{OWKwl0V{6^(M~LJAPRxUldmf?cKgH(u+YP*r%I`*kshr)9qilu%Jc5I1bZYAjr0 zq=0dGT7a^g@?xP9_T4WJE(>OCD}o8 z26q`GsrRbP)%qsN+g+k2N-PwuAWTdGepgzR>ubQ!(*1~l$kNKXSbVlNl4(QuVc#Rp zG$Y<6ejIrKge+Y;Lvp%x2K-0P)9pnnREQ{)4tZ1eeNlt?Q&AS5YP{7mBqw6CVm3zb zeTOU0$F$0!!sCQxTXuzq$j>jXjoe~eg2qjdU^{*k05VHS$r$jl&=tI+Fkxz3z z{Gf=B(kJIhvEvlkHDNQb>8f}pvCPW;T;UtG*i)5`_j!Y7>n=-VtLxwE%=nW*I#Uk9 zNN#ddN6@jV!hat9Z)fAzBBu9MNpu!!t+zXJg9DWo>WO9$4ME+C5SsxM*1(+jiUF6Q zl}j8-8cY{uO~~cAGt`{}_94)Iwv8#6gCP`l6(hL+Ny)L%*xsOHB|-ZIQL zMQSs%`Wq-8Ruh#ctwO(}=D!y;o(a_)V_<_T#LQ#_di+W#u+kMr!^ak(c!g(X+(q6a zgM-qPM7>o^E7TgKOwV2q&%$6;Ld}O3#%uAh<+{7Q;&K1vF1$`ahI_x~PpaJgN-evL7$IkL3M?Be1J{rRFkDjn5ie6V}2=f5WC2fB%`uRIl)P_pqN zM8+E)Wd~yl8bwMCOycm=Pnd-a2fp(&-J&7eOZC@Q4X{x>cvxP78s=WkcOS=-gq)k+ zcutnlSu1hWE;T$8ptwvu-gryOs8@PSM#V^c<nl#k zJ!9pit}h~ED}g57n*U$zT!}lBYabpV*_W|&vQ3#(_U4eW3^9o)Mkr3Q4Iwfb#0ZB( zMr9DPBr!zDdMstK9LtbHIng5f63IT~!-ww~)hAQmb$x%pnd_S0yFBlGKg&GtGw<(t z-rwEu>_y#h7IIK;@)M=$PGP*YS|3hk!|y^m8@1-mgmyt>io$3OWe}k>2jNtlEtJ$5 z_vIZiHk!%HOH&zpf@fOZ6F1p3ZNQOQaF>77uSuW@F=cj1)6mOLhcAcfv0);$T?Ku4?TF)0$_e^0c(GqPU$Y9Za^{tQ*O|GBfa;kx8N>(tqW zJmVCM$y#glGWsdjc{OB#-K@iVh~SrX%)joQNq3WCH_rx;JNPjcm)6iz^%*?YPJqxs zsV|SW^hoZnvAADCySE~8Hv_x#V~UNL4|9e4!u$5l8{^N)uvmDVhdg5DjAJwKs;+u@ z6S|+NEYQD)Nhi-xPF((d+Q!CGK=C5^Uw_7(hjEwXABDYpsXn1XDZG!H)){fgQNhAG zi|V;;< z?a39E2}<)y>^`>gl;ip-wgk4Bq|h~`)o0#rikD_fZ+u)hv-TI|dcv>%-6a}`VV!LC z6$}kbE&SMQqx@V14bWUY;0qiBdI+;8a0k4d@Mccl-gLi!@%XTUgR6&w-2*PAl37F_ z)1Er*lo(=6$Q^s(3U+-CW+`S3Gz%0O9R-O*C?OGv7#CixDVS){X88P%`LCxeq9(xH zhdT^-CSUT$+Ph=XF7~b-^yv@p(UeGqic^g;4^-wT7am$F5goIBoiN%LZ?IZ6;m z>{`Q}SX%nC1x|WBxY{YotX17suZgSufWX!6}vwAX_N+MOHjnP`? z<`(dk0faz})K9kS0fE1(1$5f>*R(0(X0q$+N9Vj({0R4bZ#G_BKh3SYCB0oa;vv%I`$qV^o@$o3KC-I3SK+woAnz}dfesFdQx5nC!<}(liB!wj2)tUgZ2XCW_+s;vt9)$4tSAES5Ue;qZNP$S3C1H3+U^9754-G~))9jb zRG=b4852Pxfy{KZLXigf(Mf<)c2W`8sU6cWe8vh45uT%!liS}N zrhu*yu!!GTkt=8sAD*>o)9KbfgKl?bZ(1_lJ`A)tlq=J_FW1o2;t@H|(9}J~3NW5? z6b2<1US)rl|zt0Mq1bsyjcrQoJ)p4OsQJcJk2^Yz;?y0shxb$J~j0+4&=c3h6O zl(GR-ZVj9bIy;1hBtW%pAEcMOXf*`bSp|Ay^g%91?^e>K?@F-OEfHn1QxStyvS9mVr$H)z@$CjsYpG&>*?M=${*v@~c; z?`9T2#FGR8=)F)-(BB+)fQxT-OM)x(JirxyG}9}W5LPB|L;AOoo%F;Wz~mAm3Yg^a z%ndphs~#K>hLu_Ior0+dR$e=5W7mS=lM8SZD~PnS%_imSi{@$G$yx{H2)rr7Av1B! zpFECExV^TResQ_3kcY+*1vAzD<>_MV$VyLs4(`;jS!aBBNmI#M<^7O!F*((68Dn`Q zUeCxpw%PIJPN68Ftb0z6WY?+V+-U}N%kVbxCq+0Et<*Ukj;pf6guf!{#wMsZCiAi4 zl=BV4p(#5Y2*Q~jA4Gkel=JU9fu-wGL_UaiF4KHf{q&8Jw{JL#{4z*uf3@BXE4#L$ zJMjUAj|T-&CQ_rN!KdmK+@72>^7c50Tg|nrQM6KRZZ-{zgXcD+>b^$h9&2}0k^WWp znUmGjqti=^h;(K1q=c^A?uLoft|A$qL3yYlTF53g=dSm&l1c7`Df6gezWq;c#-5L) zh@(hOGnq&D+a}x09~~~4Tr(&3`s=!ms~HKT@|VA$1iq{=Q=1bXT>rDA|4d4R>1SHT zF{+JpT(}oYD{WU9anV`VwUSy);XR!a(Q*B6PhKZ6g_0CKI%uL>Hbp( zxtD?ymWU3}&C}Qfcx+l_hr$UwDRFFry=Q~-XXCPAZ@-}~7&A?Q1{Ob%Cvn7KF?gJ( zmm(I2ccKrBKnd#~RTA)r5fE$Y7OEr|*3Y)e8|!e>d}f)O&fI=(D#kAuJajv!Q%iqlRNXqGR{bGMo+zuD zdWc@$(7M8K@_bWmo~!civmxA?C#;_PMDet{Mi!5qygQz>CT5FAsy)xOVVotTs z0w!T%Q_}&ZkTi}SWzm9&581?BT3N6zFpY_Z^Ryt~r3hn}`J-bk&Z_ehfg&z0&9s3H z;v;I9qiK^@a;A6rJwCnBor{_QY4s^J$ zpL?-7xc5q2VKdC1CAoS<)p{{pA^8plstZN-OtDv-Pd&t@mt+!e#Z0~-m3MTy`gY$Q zy6U%b%&=EN!*(IMqY*57w-dzju=as#qqT-mFXspnK@s~3$?4l6p}q@V*gAjw&lp%I#x~3AL88D} z)Edr3e5&>asmjd3?y*+(NUBOhVP}788$TA^c$dstIAU#nvV!$$bCmH@b9|8bIXBIG zHA~edse{XZW0vf~(=Xj>&9N}alaOn)ez01PtrBij3{@I1&rp4rbo7?W+lTd*tJmWe zUnHg#vBJz_xy`)f#`*|TS`(u#14Dl!Sx&;_toKce5o#sdnjBZy=J3Xvh?5kk@pO{(F#WcE6*tH=yj9qpK6%EkA|Tq=r#nsZ+0UYb&=r0(m- z>{oNrP`EJr4brOvZ(39ImeWVN+Wify1Dw}HzKxtrJLJKf_Rl3hzx`m}wm%U7#TacT z*e*c$4M^XXg1h27IYLGtqbS=J^evc^|0)mkO`?qvyj_uM3krek2GjNc{6F-m7Ss335+G2qp-eh5XLx_=paaD7RfQ;NE*jnRcgfcEwY(d#kU!aT& z7mN&y-ryF)xISYW{M0vOBxLlHwg@FpY!d!IUK1lJqw}*xn)Zcsn=8bK-u{TNg@r&W qj3JO89vB$m+XwpZ;Yz08!M_gs7$a8DgX!zj+z>}_6U>>>kNyLY>ph(S literal 0 HcmV?d00001 diff --git a/setup.py b/setup.py index c268e72..82fdda9 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # This call to setup() does all the work setup( name="elmclient", - version="0.17.0", + version="0.18.0", description="Python client for ELM with examples of OSLC Query, ReqIF import/export, Reportable REST, and more", long_description=README, long_description_content_type="text/markdown",