system.kanoa.quality.config.sheets.copySheet
Description
Creates a copy of a check sheet in KanoaQDS.Syntax
copySheet(chkShtId, userId)- chkShtId - ID of the check sheet to copy (int).
- userId - User ID (int).
- success - True if the check sheet is copied successfully (bool).
- message - A message indicating the result (string).
Code Example
# Usage example
chk_sht_id = 56
user_id = 123
success, message = system.kanoa.quality.config.sheets.copySheet(chkShtId=chk_sht_id, userId=user_id)
print(success, message)