You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
We are trying to improve our reporting and use a BI tool to do this.
One challenge we fell into is reporting on the request channel type.
We can not find that in the database scheme can you point us in the right direction on how to query the database to get a result showing channels that were used to submit an issue?
welcome to the community. I'm not quite sure what you are up to, as you selected cloud as deployment type but ask for a database field, which will only be accessible on Server/DC.
Anyways, to get the request channel type, you could base your request on the following:
SELECT p.pkey || '-' || ji.issuenum, ep.json_value FROM entity_property ep
JOIN jiraissue ji ON ep.entity_id = ji.id
JOIN project p ON p.id = ji.project
WHERE ep.property_key = 'request.channel.type'
AND p.pkey = 'HELP' AND ji.issuenum = '552';
HELP needs to be replaced with your project key and 552 with the number part from your issue key
hmm, I was basing my assumptions on materials from the web, Request channel type was the field mentioned there the fact is we need to do it on the cloud version.
Is there a similar way do achieve this on the cloud version?
I still see it's possible to report on it in Jira Cloud by providing request-channel-type in JQL.
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.