Skip to main content

system.kanoa.quality.sheet.deleteSheetType

This function requires KanoaQDS module

Description

Deletes a sheet type in KanoaQDS.

Syntax

deleteSheetType(chkShtTypeId, userId)
  • Parameters
      chkShtTypeId - ID of the sheet type to delete (int).
      userId - User ID (int).
  • Returns
      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)