system.kanoa.lot.unlinkLotOperationItem(lotOperationItemLinkId, userId)
Unlinks an item with a lot operation
Parameters
lotOperationItemLinkId Integer
userId Integer
Returns
message String Indicates the action taken ('Deleted' or 'Disabled')
Example
# Delete a specific lot-operation-to-item link
lotOperationItemLinkId = 8801
message = system.kanoa.lot.unlinkLotOperationItem(lotOperationItemLinkId, userId=123)
print(message)  # "Deleted" or "Disabled"