Empty Backlog Even Though Issue Exist
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
Symptoms
Backlog is empty with "There are currently no issues in the backlog" message is shown even though there are issues exist.

Diagnosis
Sprint field is applicable in Global Project and Issue Type
Total number of issues are shown via Tools > Configure > Columns
In the database, run following queries:
check what is the Sprint type custom field used as the default
1
select * from propertynumber where id in (select id from propertyentry where property_key like '%GreenHopper.Sprint.Default%');
ℹ️ take note of the propertyvalue column as this is the Custom Field ID
check if issue has value in this custom field
1
select * from customfieldvalue where customfield=<Customfield_ID>;
ℹ️ if there is no result return, proceed with the next SQL query
check if there any Sprint type customfield
1
SELECT * FROM customfield where customfieldtypekey like '%sprint%';
check if the other Sprint Type custom field has value:
1
select ISSUE from customfieldvalue where customfield=<Other_customfield_ID>;
ℹ️ if there any result return, take note of the customfield column and proceed to Resolution section
Cause
The default Sprint used for default has been changed.
Solution
Resolution
Backup Jira database
Update database manually
1
Update propertynumber set propertyvalue=<customfield> where id=<property_id>;
ℹ️customfield should referring to Sprint type custom field that has value. The property_id is referring to the ID return in the First SQL query
Restart Jira
Was this helpful?