Skip to main content

system.kanoa.quality.config.sheets.deleteSheetWithHistory

This function requires KanoaQDS module

Description

Deletes a check sheet and its associated check event data from KanoaQDS.

Syntax

deleteSheetWithHistory(chkShtId, userId)
  • Parameters
      chkShtId - ID of the check sheet to delete (int).
      userId - User ID (int).
  • Returns
      success - True if the check sheet and associated data are deleted successfully (bool).
  • Code Example

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

    print(success)