メインコンテンツまでスキップ

Billing Cycle Related Messages

Error codes related to billing cycle creation, retrieval, and management.


Overview

CodeMessageDescription
BLC001請求サイクルの作成データはnullを許容していません。新しい請求サイクルを作成するために必要な詳細を提供してください。Required parameter billing cycle creation data is null
BLC002名前「{0}」の請求サイクルはすでに存在します。別の名前を選択してください。Billing cycle name already exists, violates unique constraint
BLC003要求された請求サイクルID「{0}」は存在しません。請求サイクルIDを確認して再試行してください。Billing cycle not found with the provided ID
BLC004請求サイクルIDはnullにできません。有効な請求サイクルIDを提供してください。Required parameter billing cycle ID is null

Error Code Details

BLC001

Message

請求サイクルの作成データはnullを許容していません。新しい請求サイクルを作成するために必要な詳細を提供してください。

Description

The billing cycle creation request was submitted without the required data. The billing cycle creation data object must not be null.

Root Cause

  • The billing cycle creation data object was not included in the request body.
  • The request body is empty or null.

Resolution

  1. Provide the required billing cycle creation data in the request body.
  2. Ensure all mandatory fields are populated before submitting.

BLC002

Message

名前「{0}」の請求サイクルはすでに存在します。別の名前を選択してください。

Description

The billing cycle name provided is already in use. Billing cycle names must be unique within the system.

Root Cause

  • A billing cycle with the same name already exists, violating the unique constraint.

Resolution

  1. Choose a different name for the billing cycle.
  2. List existing billing cycles to find an available name.

BLC003

Message

要求された請求サイクルID「{0}」は存在しません。請求サイクルIDを確認して再試行してください。

Description

The billing cycle identified by the specified ID could not be found in the system.

Root Cause

  • The billing cycle ID is incorrect or does not correspond to an existing billing cycle.
  • The billing cycle was deleted before this request was made.

Resolution

  1. Verify the billing cycle ID is correct and corresponds to an existing record.
  2. List available billing cycles to confirm the correct ID.

BLC004

Message

請求サイクルIDはnullにできません。有効な請求サイクルIDを提供してください。

Description

The billing cycle ID parameter was not provided. A valid billing cycle ID is required for this operation.

Root Cause

  • The billing cycle ID was not included in the request.
  • The billing cycle ID field is empty or null.

Resolution

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