system.kanoa.quality.config.sheets.deleteSheet
Description
Deletes a check sheet and its associated data from KanoaQDS.Syntax
deleteSheet(chkShtId, userId)- chkShtId - ID of the check sheet to delete (int).
- userId - User ID (int).
- success - True if the check sheet is deleted successfully (bool).
- message - A message indicating the result (string).
Code Example
# 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)