Oracle JDeveloper (MOSC)

MOSC Banner

What happens if Switch LOV condition is updated?

edited Dec 23, 2025 1:19PM in Oracle JDeveloper (MOSC) 4 commentsAnswered

Hi all, We are using JDeveloper 12.2.1.3.0, for which I have questions below

In some part of our code we are executing below method if we check or uncheck a checkbox.

public void selectAndUnselectTable(boolean isSelected) {


    String l_Poshipto = null;
    DCIteratorBinding iterBind1 = ADFUtils.findIterator("DefLinesVO1Iterator");
    String Poshipto = (String) iterBind1.getCurrentRow().getAttribute("Poshipto");
    if (Poshipto.equals("DropShip")) {
        l_Poshipto = "D";
    } else if (Poshipto.equals("Vendor")) {
        l_Poshipto = "V";
    } else if (Poshipto.equals("Warehouse")) {
        l_Poshipto = "W";
    }


    iterBind1.getCurrentRow().setAttribute("SelAll", "FALSE");
    String Bypass = (String) iterBind1.getCurrentRow().getAttribute("Bypass");
    Object Plandate = (Object) iterBind1.getCurrentRow().getAttribute("Plandate");
    String Company2 = (String) iterBind1.getCurrentRow().getAttribute("Company2");

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