How to check list of users who created the Plan

Still need help?

The Atlassian Community is here for you.

Ask the community

Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

 

Summary

A plan is a roadmap of all the work that you manage in Jira. Work can be anything you're involved in — it can be the issues your teams are working on, the releases your teams have committed to delivering, and more. Currently there is no Audit logs captured for who created the plan. This article provides a database query to check for the list of users who have created the plan.

Solution

The content on this page relates to database updates which are not supported by our Atlassian Support Offerings. Consequently, Atlassian can not guarantee providing any support for it.
Please be aware that this material is provided for your information only and using it is done so at your own risk.


You can run the following query to verify who created the plan : 

select au.lower_user_name, ap."TITLE" from "app_user" as au
Right join "AO_D9132D_PLAN" as ap ON au."user_key"=ap."CREATOR_ID";

On running the query you will get results as given below. Here you can find the respective plan name and the user who has created the plan :

lower_user_nameTITLE
Jira_adminPlan_project1
John_doePlan_project2
XYZPlan_project3

Note: Postgres SQL Compatible query 

Last modified on Jun 24, 2022

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.