public static String getDataSetResultFromId(IEngUserProfile profile,String dsId, Map parameters) throws Exception {
IDataSetDAO dsDAO = DAOFactory.getDataSetDAO();
IDataSet ds = dsDAO.loadActiveIDataSetByID(Integer.valueOf(dsId));
String result=DataSetAccessFunctions.getDataSetResult(profile, ds, parameters);
return result;
}