Skip to main content

system.kanoa.quality.config.getCheckItemTypes

This function requires KanoaQDS module

Description

Returns check item types in KanoaQDS.

Syntax

getCheckItemTypes(paramsDict)
  • Parameters
      dict paramsDict - Dictionary with optional parameters, e.g., {'chkItemTypeId': 1, 'chkItemTypeName': 'Check', 'enabled': True}
  • Returns
      pyDataset checkItemTypeData - Check item type data.
  • Code Examples

    # Usage example
    params_dict = {'chkItemTypeId': 1, 'chkItemTypeName': 'Check', 'enabled': True}
    check_item_type_data = system.kanoa.quality.config.getCheckItemTypes(paramsDict=params_dict)

    # Process the retrieved data
    for row in check_item_type_data:
    print(row['chkItemTypeId'], row['chkItemTypeName'], row['enabled'])