Skip to main content

system.kanoa.quality.sheet.getSheetTypes

This function requires KanoaQDS module

Description

Retrieves check sheet types in KanoaQDS.

Syntax

getSheetTypes(paramsDict)
  • Parameters
      paramsDict - Dictionary containing optional parameters:
      - 'path': Path of the check sheet type (string).
      - 'chkShtTypeId': ID of the specific check sheet type (int).
      - 'parentId': ID of the parent check sheet type (int).
      - 'enabled': True to filter by enabled check sheet types (bool).
      - 'chkShtTypeName': Name of the check sheet type (string).
  • Returns
      data - PyDataset containing check sheet type information.
  • Code Examples

    # Usage example
    params_dict = {'enabled': True, 'chkShtTypeId': 1, 'chkShtTypeName': 'Approved'}
    sheet_types_data = system.kanoa.quality.sheet.getSheetTypes(paramsDict=params_dict)

    print(sheet_types_data)