for each itemID in input.Product
{productRow=Product[ID == itemID];
productRow.Available_Stock = (productRow.Available_Stock -1);
}
I am getting an error message stating "Only List Expressions are allowed to iterate, but (input Product) is of type STRING
I am sure the code is identical to the tutorial and can't find why this would be wrong. Any help would be appreciated.