Skip to main content

system.kanoa.quality.event.deleteChkShtItemEvents

Requires kanoaQDS license

Description

Deletes check items from a check sheet.

Syntax

deleteChkShtItemEvents(chkShtItemEventInfo, userId)

Parameters:
  • chkShtItemEventInfo (dictionary): Dictionary containing information about check sheet items.
  • userId (int): ID of the user initiating the deletion.

  • Returns:
  • deletionStatus (boolean): Success or failure of the deletion operation.
  • Code Examples

    # Usage example
    chk_sht_item_event_info = {'chkShtEventId': 1}
    user_id = 123
    result = system.kanoa.quality.event.deleteChkShtItemEvents(chkShtItemEventInfo=chk_sht_item_event_info, userId=user_id)

    print(result)