Hi all - When doing this:
String productId = request.getParameter("idValue");
genericValue product1 = null;
Map inputId = UtilMisc.toMap("idValue", productId);
product1 = delegator.findByPrimaryKey("GoodIdentifications", inputId);
productId = product1.get("productId");
I get an compiler error complaining that product1.get("productId") is an object
not a string. What am I doing wrong?
Thanks in advance
Rick
