logger.info("Entering into Document table");
String s = "SELECT doc_payload FROM documents WHERE" + "(loc_id = " + eosKeyRecSummary.getLocID()+ " and order_nbr = " + eosKeyRecSummary.getOrderNum()+
" and sub_order_nbr =" + eosKeyRecSummary.getSubOrderNum()+ " and carton_id =" + eosKeyRecSummary.getCartonId()+" and doc_type = 'PR32')"
+"(?,?,?,?,?)";
//SELECT doc_payload from documents where loc_id=5910 and order_nbr=123456789 and sub_order_nbr=1 and carton_id=12345678 and doc_type = 'PR32';
getJdbcTemplate().update(s, new Object[] { eosKeyRecSummary.getLocID(), eosKeyRecSummary.getOrderNum(),
eosKeyRecSummary.getSubOrderNum(), eosKeyRecSummary.getCartonId(),eosKeyRecSummary.getxMLPayload()});
logger.info("Exiting From Document table");
logger.info("Exiting from getKeyRecDetails() method ");