Skip to Content
0
Former Member
Dec 02, 2009 at 03:43 PM

How to Remove Warning message from portal ****

225 Views

Hi,

I am getting a warning message in portal. I know the Bapi and message node , mesType where it is coming from. I would like to supress or delete the message.

My goal is to not show this specific Warning message in portal. Please advice.

Currently I am doing this but no result. Please help.

if (messageNode.TabElementAt(i).getMsgid().trim().equalsIgnoreCase("HRECM") &&
    messageNode.TabElementAt(i).getMsgty().trim().equalsIgnoreCase("W") && 
    messageNode.TabElementAt(i).getMsgno().trim().equalsIgnoreCase("002")){
			
wdContext.Message_Tab().removeElement(wdContext.nodeMessage_Tab.get_Message_ElementAt(i));
			
	    }

Edited by: krishna reddy on Dec 2, 2009 4:44 PM