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
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.
Hi Brian,
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
If you need additional guidance, simply comment on my answer or send us an email, we're eager to help.
Happy SIL coding!
Silviu
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.