What this type of error is usually referring to is in the config.txt file of a railcar that can haul commodities. Suppose I have a box car whose config.txt file has this kind of a queue container:
queues
{
load
{
size 8
initial-count 0
product-kuid <kuid:-3:10013>
allowed-products
{
0 <kuid:-3:10042>
}
}
}
If you check the TRS2006CCG you'll see that kuid:-3:10042 is a product-category kind, not a product. If it looked like this:
allowed-categories
{
0 <kuid:-3:10042>
}
it would be ok.
To fix the above example you could make it like this:
queues
{
load
{
size 8
initial-count 0
product-kuid <kuid:-3:10013>
allowed-products
{
0 <kuid:-3:10013>
}
}
}
which commits ok.
Bob