Showing posts with label Best OAF training. Show all posts
Showing posts with label Best OAF training. Show all posts

Thursday, December 22, 2011

OAF Interview Question

Posting soon

OAF - Making mandatory Attachement Mandatory

Case - Need to make the Attachment Bean mandatory. Use the below line of code in PFR.

OAMessageAttachmentLinkBean oamessageattachmentlinkbean = (OAMessageAttachmentLinkBean)oawebbean.findChildRecursive("");

String attachVal = (String)oamessageattachmentlinkbean.getAttributeValue(oapagecontext.getRenderingContext(),TEXT_ATTR);

if("None".equals(attachVal))
{
throw new OAException(“Attachment mandatory”,OAException.ERROR);
}