Skip to main content

system.kanoa.quality.event.updateChkShtStatus

Requires kanoaQDS license

Description

Updates a check sheet event status.

Syntax

updateChkShtStatus(chkShtEventId, status, userId)

Parameters:
  • chkShtEventId (int): ID of the check sheet event to be updated.
  • status (string): New status for the check sheet event.
  • userId (int): ID of the user initiating the update.

  • Returns:
  • recordsModified (int): Number of records modified.
  • Code Examples

    # Usage example
    chk_sht_event_id = 123
    new_status = 'Approved'
    user_id = 456
    result = system.kanoa.quality.event.updateChkShtStatus(chkShtEventId=chk_sht_event_id, status=new_status, userId=user_id)

    print(result)