Hi All,
We have now upgraded our system to NW 7.4. In the old portal, we had a PAR file used to clear the HTTPSessions for MSS ReminderofDates and Overview iviews. The respective beans were used to clear the HTTP sessions. Please find below excerpts from the old code:
Import com.sap.pct.hcm.attendanceoverviewperiod.OverviewBean;
Import com.sap.pct.hcm.reminderofdates.ReminderOfDatesBean;
HttpSession session = request.getServletRequest().getSession();
obj = session.getAttribute(name);
if(obj instanceof ReminderOfDatesBean)
session.removeAttribute(name);
else
if(obj instanceof OverviewBean)
session.removeAttribute(name);
But, the issue I am facing is that, in the new ESS MSS versions (633 and 630 resp.) these beans couldnt be found out. Could someone advice me on how to clear the MSS HTTPSessions in the new version?
Thanks & Regards,
Anoop.