Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

The search for tasks with the Epic-Story Link type in the script does not work

Helen Porter
Contributor
February 4, 2020

Hello

We need to perform some actions with tasks in epic. But nothing happens when the script is executed. 

Example script:

string jql = "issueFunction in hasLinkType(\"Epic-Story Link\") and key = " + key +"";
string [] selectedIssues = selectIssues(jql);
for(string sKey in selectedIssues){
       autotransition(1481,%sKey%.key);
}

What could be wrong? Any ideas?

1 answer

0 votes
Marat February 4, 2020

Hi try it:

string jql = "key in issueInEpics("+ key +")";

https://confluence.cprime.io/display/JJUPIN/Pre-defined+JQL+functions 

Helen Porter
Contributor
February 4, 2020

Thanks! But we don't have this function.
As I understand it, it is available in version 4.1.1. Power Scripts. We have version 4.0.2.

Marat February 4, 2020

maybe they are disabled.

ppp.PNG

Helen Porter
Contributor
February 4, 2020

I checked, we don't have such a module.

Marat February 4, 2020

 Maybe it will work

string [] selectedIssues = allLinkedIssues(key, "Epic-Story Link");
for(string sKey in selectedIssues){
    autotransition(1481,%sKey%.key);
}
Helen Porter
Contributor
February 4, 2020

Does not work. If step by step output the script operation to the log, then nothing works after the line " for(string sKey in selectedIssues){".
As if "selectedIssues" doesn't work, but this is my guess.

Marat February 4, 2020

Can you run test script in console?

string x = //any Epic key with some Epic-Story Link

string
[] selectedIssues = allLinkedIssues(x, "Epic-Story Link");
return selectedIssues;
Helen Porter
Contributor
February 5, 2020

Returns task numbers.
"Done. Program returned: INFOPRJ-43167|INFOPRJ-43169"

Marat February 5, 2020

Everything should work. Maybe worth adding "true" in autotransition

    autotransition(1481,%sKey%.key,true);

 

Helen Porter
Contributor
February 5, 2020

Yes, but if I change the line from "autotransition" to output the value "sKey" to the log, then the log is empty.

Helen Porter
Contributor
February 5, 2020

Can I specify an empty field or not in the condition? Can it work like this?

if(#{Epic Link}!=""){autotransition(1481,key)};

 I try, but nothing happens either.

Helen Porter
Contributor
February 6, 2020

The script works correctly. It turned out that the problem was related to updating the NFEED field on the automatic transition. I will deal with it further.

Julie d_Antin _Elements_
Atlassian Partner
February 6, 2020

Hi  @Helen Porter If you need help with an Elements Connect field (formerly nFeed), don't hesitate to contact our support portal :


https://support.elements-apps.com/portal

Suggest an answer

Log in or Sign up to answer