public static boolean isAbleToExec(String state, IEngUserProfile profile) {
Monitor monitor =MonitorFactory.start("spagobi.core.ObjectAccessVerifier.isAbleToExec");
logger.debug("IN.state=" + state);
if (state.equals("REL")) {
logger.debug("OUT.return true");
monitor.stop();
return true;
}
else if (state.equals("DEV")) {
try {
if(profile.isAbleToExecuteAction(SpagoBIConstants.DOCUMENT_MANAGEMENT_ADMIN)||profile.isAbleToExecuteAction(SpagoBIConstants.DOCUMENT_MANAGEMENT_DEV)){