Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info
titleAvailability

This routine is available starting with SIL Engine 4.8.0.8.

...

admGetScreenSchemeFromITScheme(issueTypeScreenSchemeName)

Description

Excerpt

Update one ore more attributes for the provided filter. Retrieves a list of screen scheme configurations for a particular issue type screen scheme.

Parameters

Parameter name

Type

Required

Description

issueTypeScreenSchemeName

string

true

The name of the issue type screen scheme.

Return type

boolean

Returns true if the filter was updated. False otherwise.

Example

...

JGeneric[]

Returns an array of JGeneric structures, where the name is the issue type and value is the name of the associated screen scheme.

Example

Code Block
JGeneric[] values = admGetScreenSchemeFromITScheme("SALES: Scrum Issue Type Screen Scheme"); 
return values;
// String representation// Default|SALES: Scrum Default Screen Scheme|Bug|SALES: Scrum Bug Screen Scheme
// JSON representation/*[{
 "name": "Default",
 "value": "SALES: Scrum Default Screen Scheme"
}, {
 "name": "Bug",
 "value": "SALES: Scrum Bug Screen Scheme"
}]*/