Plan Related Messages
Error codes related to plan creation, retrieval, and management.
Overview
| Code | Message | Description |
|---|---|---|
PLM001 | プラン作成データはnullを許容していません。新しいプランを作成するために必要な詳細を提供してください。 | Required parameter plan creation data is null |
PLM002 | 名前「{0}」のプランはすでに存在します。別の名前を選択してください。 | Plan name already exists, violates unique constraint |
PLM003 | 要求されたID「{0}」のプランは存在しません。プランIDを確認して再試行してください。 | Plan not found with the provided ID |
PLM004 | プランIDはnullを許容していません。有効なプランIDを提供してください。 | Required parameter plan ID is null |
Error Code Details
PLM001
Message
プラン作成データはnullを許容していません。新しいプランを作成するために必要な詳細を提供してください。
Description
The plan creation request was submitted without the required data. The plan creation data object must not be null.
Root Cause
- The plan creation data object was not included in the request body.
- The request body is empty or null.
Resolution
- Provide the required plan creation data in the request body.
- Ensure all mandatory fields are populated before submitting.
PLM002
Message
名前「{0}」のプランはすでに存在します。別の名前を選択してください。
Description
The plan name provided is already in use. Plan names must be unique within the system.
Root Cause
- A plan with the same name already exists, violating the unique constraint.
Resolution
- Choose a different name for the plan.
- List existing plans to find an available name.
PLM003
Message
要求されたID「{0}」のプランは存在しません。プランIDを確認して再試行してください。
Description
The plan identified by the specified ID could not be found in the system.
Root Cause
- The plan ID is incorrect or does not correspond to an existing plan.
- The plan was deleted before this request was made.
Resolution
- Verify the plan ID is correct and corresponds to an existing plan.
- List available plans to confirm the correct ID.
PLM004
Message
プランIDはnullを許容していません。有効なプランIDを提供してください。
Description
The plan ID parameter was not provided. A valid plan ID is required for this operation.
Root Cause
- The plan ID was not included in the request.
- The plan ID field is empty or null.
Resolution
- Provide a valid plan ID in the request.
- Ensure the plan ID field is populated before submitting.