Skip to main content

system.kanoa.quality.config.deleteTolerances

This function requires KanoaQDS module

Description

Deletes all tolerances for an attribute in KanoaQDS.

Syntax

deleteTolerances(attributeId, userId)
  • Parameters
      int attributeId - ID of the attribute for which tolerances should be deleted.
      int userId - User ID
  • Returns
      bool successFlag - Boolean indicating the success of the deletion.
      str msg - Message indicating the result of the deletion.
  • Code Examples

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

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