I've defined a Kepler pro customfield with SIL script as datatource. This customfield belongs to several projects and for each project these values have to be differents.
Thus, when I'm creating an issue, I need to know the projet in the datasource SIL script to populate the kepler pro:
string query = "SELECT servicio"; query += " FROM table"; query += " WHERE proy_key='"+project+"'"; string[] resultado = sql("XXXDB",query); return resultado;
The result in log is:
/proyectos_soporte/busqueda_serviciocatalogo/datasource_serviciocatalogo.sil<< com.keplerrominfo.sil.lang.SILInfoException: [SIL Error on line: 1, column: 17] Script is not running in the context of an issue.Cannot get value for field project
How can I solve this problem?
Thanks in advance
Hi,
First of all, you will need to add the project to Dependent Fields (from the kcf pro configuration).
Secondly, in the query, we will use project for edit screen and argv["project"] for create screen. However, this will return you the project name, so you will need to extract the project key from it.
The final script should be this one:
string x = isNull(argv["project"]) ? project : getProjectKeyByName(argv["project"]); string query = "SELECT servicio"; query += " FROM table"; query += " WHERE proy_key='"+x+"'"; string[] resultado = sql("XXXDB",query); return resultado;
Hope this helps,
Alexandra
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you catch the news at Team ‘25? With Loom, Confluence, Atlassian Intelligence, & even Jira 👀, you won’t have to worry about taking meeting notes again… unless you want to. Join us to explore the beta & discover a new way to boost meeting productivity.
Register today!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.