EBS Customizations (MOSC)

MOSC Banner

Make iProcurement Attachments Readonly

My users are being moved to store attachments in Perceptive Software.  I use API's to generate web links to Perceptive.  I've been able to personalize iExpenses to turn attachments to readonly on the Controller with this code:

public void processRequest(OAPageContext pageContext, OAWebBean webBean)
{
    super.processRequest(pageContext, webBean);
  
    OAMessageAttachmentLinkBean owb = (OAMessageAttachmentLinkBean)webBean.findIndexedChildRecursive("ReviewGenInfoHeaderAttachments");
    AttachmentsUtility.configureAttachmentCapabilities(pageContext, "OIE_HEADER_ATTACHMENTS", owb, Boolean.FALSE, Boolean.FALSE, Boolean.FALSE);
}

Is there a similar bean in iProcurement that can be used to make attachments read only?

Thanks.

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center