7221255201 is out of primitive int range. You should use long type.
This should work fine:
long value = Long.parseLong(itemData.get(row).ERP_Customer_Item.trim());
And for other contexts, try to have a practice of keeping primitive type ranges in mind when you write code. It is like having a hammer set consisting of hammers of different size and using the appropriate one in the context. For example, if you know that a particular variable will always be in the range of [-128,127] you should use short instead of int since you will waste a lot of bits in the latter case.