Skip to main content

system.kanoa.quality.config.deleteAttribute

Requires kanoaQDS license

Description

Deletes an attribute.

Syntax

deleteAttribute(attributeId, userId)

Parameters:
  • attributeId (int): ID of the attribute to be deleted.
  • userId (int): User ID

  • Returns:
  • successFlag (bool): Boolean indicating the success of the deletion.
  • msg (str): Message indicating the result of the deletion.
  • Code Examples

    # Usage example
    delete_success, delete_msg = system.kanoa.quality.config.deleteAttribute(attributeId=1, userId=123)

    if delete_success:
    print(f"Successfully deleted attribute: {delete_msg}")
    else:
    print(f"Deletion failed: {delete_msg}")