Skip to main content

system.kanoa.quality.config.sheets.copySheet

Requires kanoaQDS license

Description

Creates a copy of a check sheet.

Syntax

copySheet(chkShtId, userId)

Parameters:
  • chkShtId (int): ID of the check sheet to copy.
  • userId (int): User ID.

  • Returns:
  • success (bool): True if the check sheet is copied successfully.
  • message (string): A message indicating the result.
  • Code Examples

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