0% found this document useful (0 votes)
228 views

How To Capture LOV Event in OAF

This document provides instructions for capturing a List of Values (LOV) event in Oracle Application Framework (OAF). It shows code that checks if a LOV event has occurred, gets the ID of the LOV input source fired, and if it matches a specific ID, invokes an Application Module method to set extra information.

Uploaded by

suri2221
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
228 views

How To Capture LOV Event in OAF

This document provides instructions for capturing a List of Values (LOV) event in Oracle Application Framework (OAF). It shows code that checks if a LOV event has occurred, gets the ID of the LOV input source fired, and if it matches a specific ID, invokes an Application Module method to set extra information.

Uploaded by

suri2221
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

How to Capture LOV Event in OAF

if (pageContext.isLovEvent())
{
System.out.println("Inside LOV Event");
String lovInputSourceId = pageContext.getLovInputSourceId();
//checking which lov event is fired.
//Below EmployeeLovInput is the ID of messageLovInput
if ("EmployeeLovInput".equals(lovInputSourceId))
{
//Invokes AM Method
am.invokeMethod("setExtraInfo");
}
}

You might also like