How to pass an argument into method when is in map?
I'm trying to create excel file with dynamic values from table. In map I have some references to records in table like BOM.BOMid and I want to pass this like an argument to this function not like str:
Map map = new Map(Types::Integer, Types::Container);
MapEnumerator en = new MapEnumerator(map);
map.insert(1, bom.ItemId);
xlsWorkSheet.cells().item(row,column).value(<value from map>);column++;