Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

DatabasePicker for scriptrunner

Ufuk Uysal October 8, 2020

Hi,

I want to make a database query by user email and write the phone number on the screen.

What I tried to do with behaviors is also not working.

I need to try with script field. What kind of path should I follow? An important issue for me, I request your help.

 

import com.onresolve.jira.groovy.user.FieldBehaviours
import com.onresolve.scriptrunner.db.DatabaseUtil
import groovy.transform.BaseScript

@BaseScript FieldBehaviours fieldBehaviours

def field = getFieldByName("issue.getReporter().getEmailAddress()")
def value = field.value

def info = DatabaseUtil.withSql('BLGMPROD') {sql ->
sql.firstRow("SELECT TELNO FROM SAP_EMPLOYEE WHERE INTERNETMAILADDRESS = ?", value)
}
if (value && !info) {
field.setError ("Dahili Numara Bulunamadı.")
}
else {
field.clearError()
}

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Jeroen Poismans
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 12, 2020

Hi there!

Adaptavist has a good KB article on accessing and reading DB tables:

https://scriptrunner.adaptavist.com/4.3.4/jira/recipes/misc/connecting-to-databases.html 

Let me know if this helped you!

 

Regards,

Jeroen

TAGS
AUG Leaders

Atlassian Community Events