system.kanoa.lot.getRouteSteps(paramsDict)
Get all route steps for the specified parameters
Parameters
paramsDict Dictionary
| - enabled | Boolean | |
| - hasStepParams | Boolean | |
| - itemId | Integer | |
| - itemName | String | |
| - lotOperationId | Integer | |
| - lotOperationName | String | |
| - routeId | Integer | |
| - routeName | String | |
| - routeStepId | Integer | |
| - stepNum | Integer | 
Returns
routeStepData pyDataset
Example
# Get all steps for a specific route
paramsDict = {"routeId": 101}
routeStepData = system.kanoa.lot.getRouteSteps(paramsDict=paramsDict)
# Get enabled steps for a specific operation
paramsDict = {"lotOperationName": "%Assembly%", "enabled": True}
routeStepData = system.kanoa.lot.getRouteSteps(paramsDict=paramsDict)
# Get route steps by item name
paramsDict = {"itemName": "%Widget%"}
routeStepData = system.kanoa.lot.getRouteSteps(paramsDict=paramsDict)
# Get a specific step by ID
paramsDict = {"routeStepId": 5001}
routeStepData = system.kanoa.lot.getRouteSteps(paramsDict=paramsDict)