Could you please help me out on the below request?
I have a field called 'Value1' and another field called 'Value2'. Both are Select list custom fields with numbers from 1 to 5. When I create an issue, let's say I will select '3' in field Value1 and '4' in field Value2, I want the script to multiply those two values and display the result (12) in another field called 'Result'.
Hi Karthick,
Try setting the following SIL script to your SIL cf:
number x = customfield_xxxxx;
number y = customfield_yyyyy;
return x*y;
SIL will automatically cast the two custom field values to numeric values and will do the correct calculation, assuming you only have values from 1 to 5 in the two select lists..
Kind Regards,
Alex
How do you know the custom field values? They should be different based upon what custom fields are actually being used.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, the values I provided were only an example. You should replace with your own custom field ids. I updated the example with more generic example.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you remember where to find those values? I do not have access to a JIRA system until later today.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can see the custom field ids from the Custom Fields administration section. Go to the desired custom field and hover the Configure link from the right drop-down. You should see the custom field id displayed as parameter in the url.
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.
If you look in your JIRA log, you should see error messages. I know you are not addressing the custom fields correctly because the name should be customfield_<number>. What I don't remember is how to get you the number. It should be in the JIRA screen where you defined value1 and value2.
http://confluence.kepler-rominfo.com/display/SIL/Variable+Resolution (see the section about custom fields)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I have tried many but nothing works. I am not good in coding.
return (Value1 * Value2)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I am using JIRA and created a new SIL Script custom field type and named as 'Result'. I would like to write a code in the new field created to multiply values from Value 1 and Value 2 select list custom field types.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please show me your SIL code?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The only the calculated field (result) would be a Kepler Custom field. How are you defining the value1 and value2? Are you using JIRA or are you going to use a Kepler Database Custom fields? Yes, a Kerpler Database Custom field is a different plugin from Kepler Custom fields.
http://confluence.kepler-rominfo.com/display/DBCF/User+Guide
http://confluence.kepler-rominfo.com/display/KCF/User+Guide
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What parts do you have working and what parts are you struggling with?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.