Skip to main content

system.kanoa.quality.event.updateChkShtStatus

This function requires KanoaQDS module

Description

Updates a check sheet event status in KanoaQDS.

Syntax

updateChkShtStatus(chkShtEventId, status, userId)
  • Parameters
      chkShtEventId - ID of the check sheet event to be updated (int).
      status - New status for the check sheet event (string).
      userId - ID of the user initiating the update (int).
  • Returns
      Number of records modified (int).
  • Code Example

    # 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)