Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Using Single Autocomplete custom field with SIL Data Source

Getting Issues

Example for SIL Data Source

This example gets all the created issues with the summary matching the search.

...

Note

First of all, in order to use SQL Data Source, you have to set the JNDI as described here.

SQL Autocomplete Script

This example returns all the issue keys.

Code Block
select  p.project_key ||'-'||i.issuenum as "KEY"
from jiraissue i
inner join project_key p on p.project_id = i.project

This example returns all the issue keys .

 

...


 

See also