Monday, January 27, 2014

Get the value selected in a LOV in adf

    public void organizationCode(ValueChangeEvent valueChangeEvent) {
        // Organization Code from the Organization Code LOV from the parameters selection screen
        String valueSelected = (String)valueChangeEvent.getNewValue();
        System.out.println(valueSelected );
    }

No comments:

Post a Comment