system.kanoa.quality.config.sheets.getSheets
Description
Returns all unique check sheets based on the provided criteria.Syntax
getSheets(paramsDict)- 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).
- 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)