Sepasoft MES Module Suite
system.mes.getLotInfoByUUID(lotUUID, includeSublots, includeCustomProperties)
Get lot information including custom properties and sublots that belong to the lot.
Syntax
system.mes.getLotInfoByUUID(lotUUID, includeSublots, includeCustomProperties)
Parameters
String lotUUID - The lot UUID to return details for.
Boolean includeSublots - If true, include sublot that belong to the lot.
Boolean includeCustomProperties - If true, include custom properties for the lot, and if included, the sublots.
Returns
A dataset containing a row for each lot. If sublot are included, they reside in a dataset embedded in a column of the lot row. If custom properties are included, they will reside in a dataset embedded in a column of the lot or sublot rows.
Scope
All
Code Snippet
Python |
#This Code Snippet will return the details about the Lot lotInfo = system.mes.getLotInfoByUUID('1a62bcf0-e80d-4319-9efc-6f82409057f6', True, True) |
Sepasoft MES Module Suite