EBS Customizations (MOSC)

MOSC Banner

OAF pageContext.getParameter("View"); return Null when HTML page is loaded

edited Feb 14, 2024 11:54PM in EBS Customizations (MOSC) 1 commentQuestion

We are using EBS 12.2.11

I need to change the OAF Page where clause based on the LOV selected on the page.

In the controller file I am able to do this when the LOV is changed and the Go button is pressed I can update the where clause and the data returned is correct

sample of controller code

"

String s_view = pageContext.getParameter("View");

        pageContext.writeDiagnostics (this, "s_view = " + s_view, 1);

        if (pageContext.getParameter("Go") != null) {

          pageContext.writeDiagnostics (this, "user pressed the go button", 1);

           if (s_view.equals("6")) {

            pageContext.writeDiagnostics (this, "user selected the My Department Work option", 1);

            OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean); 

Tagged:

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