Plan Related Messages
Error codes related to plan creation, retrieval, and management.
Overview
| Code | Message | Description |
|---|---|---|
PLM001 | The plan creation data cannot be null. Please provide the necessary details to create a new plan. | Required parameter plan creation data is null |
PLM002 | A plan with the name '{0}' already exists. Please choose a different name. | Plan name already exists, violates unique constraint |
PLM003 | The requested plan with the ID '{0}' does not exist. Please check the plan ID and try again. | Plan not found with the provided ID |
PLM004 | The plan ID cannot be null. Please provide a valid plan ID. | Required parameter plan ID is null |
Error Code Details
PLM001
Message
The plan creation data cannot be null. Please provide the necessary details to create a new plan.
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
A plan with the name '{0}' already exists. Please choose a different name.
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
The requested plan with the ID '{0}' does not exist. Please check the plan ID and try again.
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
The plan ID cannot be null. Please provide a valid plan 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.