Unable to use custom date fields for scheduling in Advanced Roadmaps Plan

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。

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.

*Fisheye および Crucible は除く

    

要約

In an Advanced Roadmaps Plan, custom date fields don't show up for selection for scheduling in the Plan configuration.

Expected dropdown for scheduling date field selection (showing custom date fields):

Actual dropdown with missing custom fields:


環境

Jira Core 8.x and Advanced Roadmaps 3.29.x


診断

  1. Creating a new Plan allows for custom date fields to be selected for scheduling.
  2. The below query returns at least one result (replace <ID> by the faulty Plan's ID from the URL):

    SELECT S.*
    FROM "AO_D9132D_ISSUE_SOURCE" S
    LEFT JOIN SEARCHREQUEST F ON F.ID = CAST(S."SOURCE_VALUE" AS INTEGER)
    WHERE S."PLAN_ID" = <ID>
    AND S."SOURCE_TYPE" = 'Filter'
    AND F.ID IS NULL;

原因

The affected Plan was configured to use a filter that's been deleted. It's the "SOURCE_VALUE" that showed up on the query in Diagnosis section.

We have the following issues about this behavior:

JPOSERVER-3007 - 課題情報を取得中... ステータス

JPOSERVER-1948 - 課題情報を取得中... ステータス


ソリューション

We may either create a new Plan with a similar config as the affected one or remove the leftover records from the database:

delete from "AO_D9132D_SCENARIO_TEAM" where "ISSUE_SOURCE_ID" in (select "ID" from "AO_D9132D_ISSUE_SOURCE" where "SOURCE_TYPE" = 'Filter' and "SOURCE_VALUE" = '<FILTER_ID>');
delete from "AO_D9132D_PLANTEAM" where "ISSUE_SOURCE_ID" in (select "ID" from "AO_D9132D_ISSUE_SOURCE" where "SOURCE_TYPE" = 'Filter' and "SOURCE_VALUE" = '<FILTER_ID>');
delete from "AO_D9132D_ISSUE_SOURCE" where "SOURCE_TYPE" = 'Filter' and "SOURCE_VALUE" = '<FILTER_ID>';

Replace <FILTER_ID> by the ID in SOURCE_VALUE that came up on the Diagnosis query.






最終更新日 2021 年 6 月 11 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.