Forums

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

how to start development with JIRA ?

Prabu Sivagnanam
May 19, 2019

Myself Salesforce developer, want to create integration between Salesforce & JIRA...As of now doing POC on this (I already did 1 POC by using 3rd party -Service Rocket connectors,but our management dont' want since the connectors are paid), our company using JIRA server version..So how can I proceed with this since i know only salesforce part and dont have any idea how to start development with JIRA ? even i don't know whether jira is customizable ?, what language its built on?,where to type code?...I didn't find any proper document for this.. mobile: +91 9080487629

2 answers

0 votes
AkashD
August 8, 2016

Hello Silviu,

I am in trouble to resolve the linked issue parent-child structure auto transition please help me how do i resolve this problem

My SIL post function :-

string sk;
bool alldesign = true;
for (sk in linkedIssues(parent)) {
if (%sk%.status != "Design Completed" && sk != key) {
alldesign = false;
}
}
if(alldesign) {
autotransition(3, parent);
}

I have two different issue types in one project where isuue type "Story Task" is parent and issue type "Task" as child i put the post fuction in Transition of child workflow issue type "Task"

But its not changing the transition of issue type "Story Task"

please help me how do i resolve this problem. 

0 votes
Silviu Burcea
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
February 26, 2015

Hi Brian,

  1. I'm guessing that you have used the parent predefined variable to do that from subtask to parent. You can get the CF value from another issue by using the issue key and the CF name/id, like this:

    number val = DEMO-1.SomeNumericCF; // get the value

    The rest of your task should be simple using this hint. You can find more information about variable resolution here, it's a valuable resource for novices, you will learn how to get and set CF values in seconds:

    http://confluence.kepler-rominfo.com/display/SIL30/Variable+Resolution

     

  2. You can obtain the epic current status using the above hint. If you know the next transition to follow, you can use the autotransition routine to move forward in the workflow.

 

If you need additional guidance, simply comment on my answer or send us an email, we're eager to help.

 

Happy SIL coding!

Silviu

Suggest an answer

Log in or Sign up to answer