Hiding or Disabling the default sucess message
By default in liferay, Whenever you submit form you will have default message as " Your request is proceed Successfully " How to disable it? There are 2 steps Step 1: Just add below in portlet.xml before "excripation-cache" add-process-action-success-action false Step 2: Add the below code in the class level of a method SessionMessages.add(portletRequest,PortalUtil.getPortletId(portletRequest) +SessionMessages.KEY_SUFFIX_HIDE_DEFAULT_SUCCESS_MESSAGE); For Reference look into the PortletAction class of hideDefaultSuccessMessage method