rally

Rally Kanban - hiding Epic Stories

北慕城南 提交于 2019-12-12 20:23:42
问题 Is there a way to hide epic stories (i.e. stories with children) from Rally's kanban board app (presumably by customizing the kanban "catalog app" code to be a custom app)? I found the part of the kanban javascript app code where it sets up a query depending on whether stories "allocated to a release" are hidden (and I'd added another checkbox into the settings to control the showing / hiding of epic stories), but haven't had any success modifying the query to exclude stories that have

Querying Allowed values for the possible fields of defects Using Java Rally rest API

試著忘記壹切 提交于 2019-12-12 18:26:50
问题 I need to check if the field is having allowed values, if so need to get all the allowed values from the system using Java Rally rest API for eg : check if severity is having allowed values, if yes get the allowed values such as major problem, minor problem etc from the Rally 回答1: You can query against the TypeDefinition type. Include Attributes and AllowedValues in your fetch. QueryRequest defectTypeRequest = new QueryRequest("typedefinition"); defectTypeRequest.setFetch(new Fetch(

SDK2: Links in Rally Grids and column width

南笙酒味 提交于 2019-12-12 18:10:07
问题 I'm displaying a link to a defect in a Rally Grid in the simple way: columnCfgs: ['FormattedID', 'Name', ...] This creates a link to the defect, just like it should. But the column width is way too big. But if I do the following, I loose the link: columnCfgs: [{dataIndex: 'FormattedID', width: 50, text:'ID'}', 'Name', ...] Is there a convenient xtype I can use to adjust the width, but still have a link to my defect? 回答1: Unfortunately there is not an easy way to do this right now. We are

Fetch a specific tag from Rally in order to compute a value in another field

╄→гoц情女王★ 提交于 2019-12-12 17:20:29
问题 I'm extremely new to Rally development so my question may sound dumb (but couldn't find how to do it from rally's help or from previous posts here) :) I've started from the rally freeform grid example - my purpose is to implement a Business Value calculator: I fill the score field with a 5-digit figure where each number is a score in the 1-5 range. Then I compute a business value as the result of a calculation, where each number is weighted by a preset weight. I can sort my stories by

.Net Rally.RestApi error “Not authorized to perform action: Invalid key” when creating Rally test folder

∥☆過路亽.° 提交于 2019-12-12 16:40:21
问题 I have a C# application using version 2.0.1.0 of the Rally Rest API for .NET. The application will successfully query Rally for data, but when I try to create an object, an error is returned indicating invalid key. This issue started today and is occurring for multiple users of the application. I use the following line of code to authenticate. myRestApi = new RallyRestApi(Rally_username, Rally_password, Rally_URL, "v2.0", myProxy); I have read some help online indicating the need for a

App SDK: Query data over a workspace/multiple projects

守給你的承諾、 提交于 2019-12-12 16:25:29
问题 I'm creating a report that needs to obtain data from a workspace that has several projects in it. Is there a way to specify to either search a whole workspace or multiple projects when creating the RallyDataSource? Creating a data source per project doesn't sound like the best way of going about it. 回答1: If your projects have one common parent you can specify the parent project and projectScopeDown true: var rallyDataSource = new rally.sdk.data.RallyDataSource('/workspace/12345', '/project

Rank value on stories

微笑、不失礼 提交于 2019-12-12 13:12:59
问题 When calling the Rally WSDL API I receive very large numbers for the "Rank" field, e.g. 500000011520, but I would like the get the rank in the backlog, e.g. #1. Does anyone know how I can find or compute the rank in the backlog? 回答1: In REST, there are Ranking arguments for the create endpoint: https://rally1.rallydev.com/slm/webservice/1.39/hierarchicalrequirement/create?rankTo=TOP https://rally1.rallydev.com/slm/webservice/1.39/hierarchicalrequirement/create?rankTo=BOTTOM https://rally1

Counts on the server side via WSAPI?

谁都会走 提交于 2019-12-12 12:32:54
问题 Is it possible to do object counts on the server side of Rally with the WSAPI? For example, I've got an app that would like to count the number of unresolved defects for each project in our workspace. I don't need to know anything about those defects themselves, so I just want a count, and don't need any other data pulled back. Any way to do this? 回答1: You might want to check out Alan's helpful answer to this Question: Rally: Pull stories counts by schedule state for a release? The analog for

How to access a custom field using Rally Ruby API

泪湿孤枕 提交于 2019-12-12 05:37:26
问题 There is a custom field on Rally artifact that shows in WS API document as c_MyCustomField but it does not print: results = @rally.find(query) results.each do |d| puts "Name: #{d["Name"]}, FormattedID: #{d["FormattedID"]}, Owner: #{d["Owner"]["UserName"]}, MyCustomField: #{d["c_MyCustomField"]}" d.read end 回答1: First, check that the field is being fetched: query.fetch = "c_MyCustomField" Next, a version of WS API has to be explicitly set if v2.0 is used. c_ prefix is specific to WS API

progress bars for portfolio items

痞子三分冷 提交于 2019-12-12 03:19:33
问题 I'm looking to create a custom roadmap app using Portfolio items. I think this will be pretty straightforward, but I would very much like to incorporate the % done bars that portfolio items have into my tables. Since these are not part of the SDK, is it possible to get the javascript that will have the same look and feel as when the % done bars are displayed in the custom grids, along with the warnings etc for stories that don't have estimates? 回答1: I would wait on trying to re-implement the