Skip to main content

Plan Related Messages

Error codes related to plan creation, retrieval, and management.


Overview

CodeMessageDescription
PLM001The plan creation data cannot be null. Please provide the necessary details to create a new plan.Required parameter plan creation data is null
PLM002A plan with the name '{0}' already exists. Please choose a different name.Plan name already exists, violates unique constraint
PLM003The requested plan with the ID '{0}' does not exist. Please check the plan ID and try again.Plan not found with the provided ID
PLM004The 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

  1. Provide the required plan creation data in the request body.
  2. 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

  1. Choose a different name for the plan.
  2. 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

  1. Verify the plan ID is correct and corresponds to an existing plan.
  2. 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

  1. Provide a valid plan ID in the request.
  2. Ensure the plan ID field is populated before submitting.