Skip to main content

system.kanoa.quality.config.sheets.deleteSheet

Requires kanoaQDS license

Description

Deletes a check sheet and its associated data.

Syntax

deleteSheet(chkShtId, userId)

Parameters:
  • chkShtId (int): ID of the check sheet to delete.
  • userId (int): User ID.

  • Returns:
  • success (bool): True if the check sheet is deleted successfully.
  • message (string): A message indicating the result.
  • Code Examples

    # Usage example
    chk_sht_id = 56
    user_id = 123
    success, message = system.kanoa.quality.config.sheets.deleteSheet(chkShtId=chk_sht_id, userId=user_id)

    print(success, message)