Hi, in my model, i have created items of different labels using item.type. the labels are numeric like 1,2,3... . Now when my items enter a queue i want to track the number of items of each label entering the queue. I want to write this value to a global table. So my table could look something like this:
item label | no. of items |
1 | 10 |
2 | 14 |
3 | 12 |
i am familiar with using the triggers to write the content value for the queue into a global table, i wanted to know what particular line of code lets me write this content based on item.type label
thank you