system.kanoa.quality.sheet.deleteSheetType
Description
Deletes a sheet type in KanoaQDS.Syntax
deleteSheetType(chkShtTypeId, userId)- chkShtTypeId - ID of the sheet type to delete (int).
- userId - User ID (int).
- success - Bit indicating success (bool).
- message - String containing a success or error message.
Code Example
# Usage example
chk_sht_type_id = 4
user_id = 123
success, message = system.kanoa.quality.sheet.deleteSheetType(chkShtTypeId=chk_sht_type_id, userId=user_id)
print(success, message)