Monday, December 31, 2018

Oracle OAF: Get & Set Session Values

Put Session Value 
=========================

 pageContext.putSessionValue("mode", "U");

Get Session Value 
=========================

String mode = (String)pageContext.getSessionValue("mode");

 if (mode.equals("C"))

No comments:

Post a Comment