Skip to main content

system.kanoa.quality.config.sheets.getSheets

Description

Returns all unique check sheets based on the provided criteria.

Syntax

getSheets(paramsDict)

Parameters:
  • paramsDict (dictionary): Dictionary containing optional parameters.

  • Returns:
  • data (pyDataset): PyDataset containing unique check sheet information.
  • Dictionary

    ParameterTypeRequiredNotes
    enabledboolNoTrue to filter by enabled check sheets
    chkShtTypeIdintNoID of the check sheet type
    chkShtIdintNoID of the check sheet
    chkShtNamestringNoName of the check sheet
    chkShtTypeNamestringNoName of the check sheet type
    pathstringNoPath of the check sheet

    Code Examples

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