Friday 14 October 2011

Passing parameters from one OAF page to another OAF PAge

// processFormRequest()
HashMap hm = new HashMap(1);
hm.put("myParam", "myParamVal");
oapagecontext.setForwardURL("MY_FUNCTION", (byte)0, null, hm, true, "N", (byte)0);

You can then retrieve this parameter in processRequest() via:
oapagecontext.getParameter("myParam")

3 comments:

  1. HI Santhosh,

    Its very use full code.I have used this code now its working fine.

    ReplyDelete
  2. very usefull
    thanks a lot!!

    ReplyDelete