logger.debug("IN");
freezeHttpResponse();
HttpServletResponse httResponse = getHttpResponse();
StringBuffer output = new StringBuffer();
try {
SpagoBIRequestContainer request = new SpagoBIRequestContainer(serviceRequest);
if (request.isBlankOrNull(SpagoBIConstants.SUBOBJECT_ID)) {
output.append("");
} else {
Integer subObjId = request.getInteger(SpagoBIConstants.SUBOBJECT_ID);
SubObject subobject = DAOFactory.getSubObjectDAO().getSubObject(subObjId);
String dateFormat = request.getString("DATE_FORMAT");
String creationDate = null;
String lastModificationDate = null;
try {
creationDate = StringUtils.dateToString(subobject.getCreationDate(), dateFormat);