This tutorial will helps you to install android SDK manager in oracle ADF jdeveloper as well as will also explain how to create a simple on-device ADF mobile application & deploy in emulator (You can also deploy it on actual Android device too). For developing mobile application you will need these components:- jdeveloper 11.1.2.3.0 jdk 1.7 Android SDK manager ADF ... Read More »
Monthly Archives: April 2013
ADF: Programmatic View Object Using Ref Cursor.
Sometimes user needs to create View Object based on procedure or function which returns Ref cursor. For this type of requirement ADF framework provides programmatic VO option. In this tutorial I’ll explain you how we can create View Object using Cursor. To create programmatic View Object you have to override following methods of View Object Impl Class. 1. create() ... Read More »
ADF: Display Subtotal in ADF Table
Sometimes we need to show total of any number field like employee salary according to department but we also want to print employee name, id and other fields. For this purpose query is- Select first_name,employee_id,department_id,sum(salary) from employees group by first_name,employee_id,department_id But our requirement is that we want to show total of salary according to department. For this purpose I’m going ... Read More »
ADF : How to change LOV default validation message “Invalid Value”?
In this tutorial I will explain you how to change default validation message of LOV. For this I‘m using custom validation which validates user input value based on LOV in place of default Validator which is already added by default in ADF framework. Let’s take an example. I’m using HR schema for this tutorial. Step 1: Create VO for LOV ... Read More »
ADF Tuts: Passing comma separated values as Bind variable for View Object Query IN operator.
It’s very common use case where we want to pass comma separated value for WHERE clause as IN operator. Today I will explain in very simple way to overcome this issue. Here I am using very simple function INSTR in place of IN operator. Let’s take an example. Create a View Object using Employees table with following query. view plaincopy ... Read More »
ADF Tuts: Export selected table rows to Excel
<p>You create an application using the application creation wizard.</p> Step 1:- Create an Entity Object using your Schema. Step 2:- Create a Boolean transient attribute in EO. Step 3:- Create a view object using that EO. Step 4:- When you create a view object, a data control will appears in appModuleDataControl select that VO and Drag it ... Read More »