How to check list of users who created the Plan

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. 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 :

1 2 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_name

TITLE

Jira_admin

Plan_project1

John_doe

Plan_project2

XYZ

Plan_project3

Note: Postgres SQL Compatible query

Updated on April 2, 2025

Still need help?

The Atlassian Community is here for you.