InitialContext ic = getInitialContext();
// Call Local EJB to add the record in DB
HistoryLocalHome historyLocal = (HistoryLocalHome) ic.lookup("local/History");
HistoryLocal history = historyLocal.create();
history.setDataSource(ds);
history.deleteHistoryRecord(operation, recordTypeID, recordID);
} catch (Exception e) {
logger.error("[deleteHistoryRecord]: Exception", e);
}