Skip to main content

system.kanoa.quality.config.sheets.getSheets

This function requires KanoaQDS module

Description

Returns all unique check sheets based on the provided criteria.

Syntax

getSheets(paramsDict)
  • Parameters
      paramsDict - Dictionary containing optional parameters:
      - 'enabled': True to filter by enabled check sheets (bool).
      - 'chkShtTypeId': ID of the check sheet type (int).
      - 'chkShtId': ID of the check sheet (int).
      - 'chkShtName': Name of the check sheet (string).
      - 'chkShtTypeName': Name of the check sheet type (string).
      - 'path': Path of the check sheet (string).
  • Returns
      data - PyDataset containing unique check sheet information.
  • Code Example

    # Usage example
    params_dict = {'enabled': True, 'chkShtTypeId': 1, 'chkShtId': 2, 'chkShtName': 'QA Check 1', 'chkShtTypeName': 'QA Checks', 'path': 'QA Checks\QA Check%'}
    sheets_data = system.kanoa.quality.config.sheets.getSheets(paramsDict=params_dict)

    print(sheets_data)