Skip to main content

system.kanoa.quality.config.sheets.copySheet

This function requires KanoaQDS module

Description

Creates a copy of a check sheet in KanoaQDS.

Syntax

copySheet(chkShtId, userId)
  • Parameters
      chkShtId - ID of the check sheet to copy (int).
      userId - User ID (int).
  • Returns
      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)