system.kanoa.quality.event.updateChkShtStatus
Description
Updates a check sheet event status in KanoaQDS.Syntax
updateChkShtStatus(chkShtEventId, status, userId)- 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).
- 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)