Those notes arise because the same dummy parameter appears as both a constraint index and a summation index within the constraint. I don't know your optimization model, but I suspect you want the following instead:
con RR_BINARY_CONSTRAINT{<ITEMID,STOREID> in Budget_dim}: sum{<(ITEMID),(STOREID),RR> in SKU_STORE_RR_DIM} SKU_STORE_RR_BIN[ITEMID,STOREID,RR]=1; con BUDGET_CONSTRAINT{<ITEMID,STOREID> in Budget_dim}: sum{<(ITEMID),(STOREID),RR> in SKU_STORE_RR_DIM} SKU_STORE_RR_BIN[ITEMID,STOREID,RR]*InvCost[ITEMID,STOREID,RR]*Avg_Onhand[ITEMID,STOREID,RR] <= Budget[ITEMID,STOREID];
At least that will avoid the notes. To see whether the new declarations correctly express your desired model, you can use the EXPAND statement.
For more explanation of this implicit slice, see Manpower Planning and other examples in the Mathematical Programming Examples documentation.
... View more