Hi, I am trying to read the value of a label ("Status") of every backorder item in a list.
I have tried this code with no success:
List Lista = List("MBV");
pt("Lenght: "); pd(Lista.backOrders().length); pr();
for(int i = 1; i <= Lista.backOrders().length; i++)
{
pt(Lista.backOrders()[i].labels["Status"].value);
}
could you please help?
thank you