Adf Questions

Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 20

Amit Sharma's Blog

Blog about the Java and Oracle Technologies


THURSDAY, JANUARY 17, 2013

Oracle ADF Interview Question Part- 1


ORACLE ADF INTERVIEW QUESTION PART 1

Q1. What is Oracle ADF?


Ans : Oracle Application Development Framework, usually called Oracle ADF,
provides a commercial Java framework for building enterprise applications. It
provides visual and declarative approaches to Java EE development. It supports
rapid application development based on ready-to-use design patterns, metadata-
driven and visual tools.
Q2 How does ADF fall in MVC architecture?
Oracle ADF Architecture is based on the Model-View-Controller (MVC) design
pattern.MVC consists of three layers which are model layer,view layer,controller
layer.Oracle ADF implements MVC and further separates the model layer from the
business services to enable service-oriented development of applications.

The Oracle ADF architecture is based on four layers:

The Business Services layer

This layer provides access to data from various sources and handles business logic.
ADF Component comes, in this section are ViewObject, EntityObject, ViewLink,
Association etc

The Model layer

This layer provides an abstraction layer on top of the Business Services layer,
enabling the View and Controller layers to work with different implementations of
Business Services in a consistent way. ADF Component comes in this section are
PageDefn, DataBindings,DataControls (AppModuleDataControl,
WebServiceDataControl)

The Controller layer

This layer provides a mechanism to control the flow of the Web application. ADF
Component comes in this section are TaskFlows(Bounded and unbounded, faces-
config.xml, adfc-config.xml)
The View layer

This layer provides the user interface of the application. ADF components comes in
this section are jsff, jspx page.

Q3 How will JDeveloper support rapid development?


Ans : Oracle ADF is an Oracle product. Ide used to develop ADF application which is
Oracle JDeveloper. This IDE is has all component which support in rapid developer
starting form designing Application using the UML to Java, Visual Designer,
DataBase development, Testing Webservices to Deployment. Most of the feature are
just drag and drop. hence this IDE become the perfect choice for ADF development.
Although it bit slow and hangs sometime but still we don't have any other option.

Q4 What are the different type of Business Component in Oracle ADF?


Ans : Different kinds of Business component support by ADF are EntityObject,
ViewObjects, ViewLinks, Association.

Q6 What is Entity Object in ADF Framework?


Ans: EnitityObject in ADF are similar to Table in database. Any number of ViewObejct
can create on single Entity.

Q6 What is ViewObejct in ADF framework?


Ans : ViewObject is represent the data collection. These view object can be created
in different ways which are as follows:

Entity Based ViewObject: These viewobejct will hold the reference of underlying
entity. These view object can hold data from single or multiple entities. While defining
Viewobject based on Entity you can select the attribute which you want to keep in
entity.

SQL Based ViewObject: These ViewObejct are based on sql quarries. These
viewobejct will have underlying SQL Query. At runtime they will hold data return by
SQL.

Programatic View Object: User can define the view attribute which defining
viewobejct. Data will insert programmatically into these ViewObject.

Static ViewObject : While defining user will define attribute for view and in later he
has to provide the values for those attribute. These kindof viewobejct will have fixed
no of rows.

Q7 What is Association in ADF?


Ans: Association represent the relationship between 2 and more tables like foreign key
relationship. If you create Entities from database association will automatically got created
for entity. User can also define custom association if there is no foreign-key is define in
database. In this way user can handle foreign key in ADF application and can remove
overhead from database.
Q8 What is view link?
Ans: ViewLink represent the relationship between data of same or multiple Entities or table.
It works in same manner as association work for entity. While defining the ViewLink user can
define the reference of already created association if ViewObejct based on Entity Object else
can manually select the column and define link between 2 ViewObject.

Q9 Why we used applicationmodule in ADF framework?


Ans:Applicationmodule is the component of ADF BC which hold the references of
ViewObject and instantiate them while running the application. ViewObejct reference
define in Application Module can be used to define the jsff/jspz page. If you want to
use any ViewObject on you page you must have to provide the reference in
Application Module.

Application module also provide the transaction management with commit and
rollback operation

Q10 What is the controller in ADF in respect of MVC architecture?


Ans:Controllers in ADF framework are TaskFlows, Faces-config.xml, adfc-config.xml.
In all there file you can define navigation between the pages.
Declare the manage-bean in different scope.

Q11 What are the different kind of resource bundle supported in ADF?
Ans: ADF support different types of resource bundle which are as follows:
Property file based (txt file which contains key-value pair)
xliff file based (xml file which contains key-value pair)
List Resource bundle
Q12 How to provide common resource bundle for entire proejct?
Ans: Go to property file of you Project and select resouce bundle

From here you can select one bundle for entire project.

Q13 How to provide separate resource bundle for each jsff/jspx?


Ans: Refer Q 12 answer there is option using that you can select One Bundle per
file.

Q14 What is the difference in jspx and jsff?


Ans: jspx and jsff file are same in most of manner. Only difference is that you can run jspx
directly on browser while jsff file container which will run on browser.

Q15 What is taskflow ? how many type of taskflow adf support?


Ans: Taskflow is the Component of Oracle ADF which is used to define simple task.
After successfully defining task-flow can consume any number of time.
ADF support two kind of taskflow:
Bounded TaskFlow : Bonded taskflow require the page on which they will
consume.
UnBounded TaskFlow : Unbounded taskflows can directly run on browser
Q16 How to develop reusable taskflow in ADF?
Ans: Please fins the step below
Define taskflow
Define deployment profile as ADF Library jar
Deploy adf jar file
Open new project where you want to consume the task flow.
Add newly created jar of taskflow project
go to component palate You will fine you jar name select it.
It will show list of taskflow you developed
Drag drop your taskflow as region on jsff/jspx page and run ur application

Q17 Can bounded taskflow run on browser?


Ans: NO
Q18 What are different scope of adf taskflow?
Ans: Isolate/Shared
Shared scope will share data among the multiple instance of taskflows while Isolated
doesn't.

Q19 How can you force ADF taskflow to use new transaction everytime
taskflow is called?
Ans: Go taskflow overview and you will file below item

Select always begin new transaction fron dropdown

Q20 How to use same transaction in ADF taskflow?


Ans
Q 21 How can you pass parameter to adf taskflow?
Ans: Go to overview select parameters link it will show screen like

Here you can add multiple parameter which you want to pass takflow while loading it.
Q22 Explain the purpose of using Controls flow in adf?
Ans: Controls flow defined in taskflow can be called anytime from any page of that
taskflow.
if you have same flow for multiple pages just define the control flow once in taskflow.
You can invoke it anytime from any action event.

Q23 What is the behavior of router in ADF taskflow?


Ans : Based on some condition router can decide which route need to be follow. If
none of condition match in that case router will follow default route defined by used.

Q24 How can navigation define in taskflow?


Ans : Navigation can be defined in taskflow using control flows and invoked by
jsff/jspx page using action event like button link etc.

Q25 Can ADF task flow hold more than 1 view activity?
Ans: Yes. ADF taskflow can have multiple view activity but 1 activity has to be
defined as default activity.

Q26 What is the Parent Action in ADF Taskflow?


Ans:Parent action is activity using that you can invoke the Control flow define in
parent taskflow from child taskflow. More details about how to develop it can be
found on Parent Activity
Q27 What is method activity in Adf Taskflow?
Ans: Using this activity you can invoke and method defined in manage-bean.
Q28 How to initialize ADF Taskflow?
Ans: Open the taskflow in Overview Mode select general like there is initiallizer
property.
you can provide the any method reference which will get invoked whenever taskflow
instance created.

Oracel ADF Interview Question Part 2


Posted by Amit Sharma at 8:17 PM
Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest
Labels: ADF, ADF Interview question

66 comments:

1.

Rishi PomalMarch 3, 2013 at 11:14 PM

Thank You, these question are really helpful to clear concepts related to ADF.
Reply
2.

AnonymousMay 17, 2013 at 1:01 AM

thanks for share..


Reply

3.

siva ramMay 19, 2013 at 11:17 PM

thank you for share .share more interview questions


Reply

4.

KV YADAVJune 7, 2013 at 4:13 AM

Thank you Amit for sharing these questions, it is really helpful to get an overview about
ADF. Please share some more interview questions. Thanks in advance
Reply
5.

muppavaram babuJune 14, 2013 at 7:22 AM

Hi Amit,

I created a VO's but I am unable to see now.


I can see these VO's in Data control.
Reply
Replies
1.

AnonymousJune 27, 2013 at 2:04 AM

Drag and drop VO on jspx page as table or ADF form..and then run .jspx
page.
2.

AnonymousSeptember 4, 2013 at 10:12 AM

move the ViewObject to AppModule, now show the viewobject in


DataControl
Reply

6.

ramkumar kurubaJune 19, 2013 at 12:16 AM

hi Amit
Q28 How to initialize ADF Taskflow?
Ans: Open the taskflow in Overview Mode select general like there is initiallizer
property.
you can provide the any method reference which will get invoked whenever taskflow
instance created.
for this answer i didn't find any initiallizer property in general in the overview tab in
adfc-config.xml taskflow, please give details regarding to this
Reply
7.

AnonymousJune 28, 2013 at 8:05 AM

I got one doubt, our requirement is to generate char sequence. we generate the char
sequence 10L70A0401-10L70AO450 and later I start my sequence 10L70A04A1-
10L70A04A9 so please post char sequence java code for this requriment
Reply
8.

AnonymousJuly 21, 2013 at 12:11 PM

Thanks a lot for sharing.Its really helpful


Reply
9.

AnonymousAugust 8, 2013 at 4:10 AM

hi amit
i have one doubt regarding to adf tree , i set application module in hierarchy
regions,locations,countries,departments,employees in the oracle 11g
database,employees details should be update when any one of the hierarchy , i made
jsf page into two parts by using panel splitter , in one section i taken tree , in another
section employees adf form, please resolve my problem
Reply

10.
prakash kadamAugust 26, 2013 at 11:24 PM

This is the information that I was looking for and let me tell you one thing that is it is
very useful for who is looking for ORACLE ADF.
Reply

11.

kishor mahakaleAugust 27, 2013 at 11:26 PM

Really good piece of knowledge, I had come back to understand regarding your
website from my friend Sumit, Hyderabad And it is very useful for who is looking
for ORACLE ADF.
Reply
12.

AnonymousSeptember 4, 2013 at 7:17 PM

Thanks a lot for sharing this info


Reply

13.

babu mOctober 25, 2013 at 4:40 AM

It was nice article it was very useful for me as well as useful foronline Oracle ADF
training learners. thanks for providing this valuable information.
Reply

14.

kumarNovember 9, 2013 at 2:04 AM

Thanks for this valuble information and itis useful for us .Biginfosys also provides the
best Oracle ADF online training classes in India.
Reply

15.

Shaleen HJune 17, 2014 at 10:37 PM

In what cases we will use programmetic validation and view criteria, what is the
advantage over declarative manner? Please give some real time examples.
Reply

16.

rebeka christyJuly 7, 2014 at 11:00 PM

Its really great information..Thanks for sharing this informative blog..

Oracle Course in Chennai


Reply
17.

Hemanth KumarJuly 8, 2014 at 11:51 PM

hi ,its really good and simple and clear answers.....


Reply

18.

Maik HolzmanAugust 26, 2014 at 4:07 AM

Oracle Development Platform, normally termed Oracle ADF, can be a progress


framework to supply Caffeine composition that is industrial to create straightforward
enterprise app. It offers the company and declarative and graphic growth to Java EE.
It backs-up the fast growth of program about the schedule of usable layout -habits,
driven by metadata tools.
Why ADF is Needed by me?
A current Applications connected improvement fitted with ADF to develop a totally
individual software that basically uses the data of Oracle Apps nevertheless not
needed to be incorporated with the Oracle Software. Several builders are currently
exposing, at a quickness that is enraged, the tools of quick application development.
Thus if permit plausible organization to be focused on by the enhancements and one
really wants to conceal the intricacies of J2EE, applying ADF is one of the finest
possibilities.
Who Is Able To Discover Oracle ADF?
Oracle ADF is a wonderful structure regarding speedy J2EE software progress. A
superb framework provides a declarative method to organize the the different parts of
request together as well as an easy, dependable. ADF can be learnt by one if they
understands Apps Techie, OAF, SOA Builders and ESPRESSO appropriately who
would like to change-over to ADF progress that is linked. Its a benefit that is additional
for people who work as Soa coders.
Job Prospects in Oracle ADF
http://www.oracle11gdbaonlinetraining.com/
Reply

19.

Namrata KennyApril 14, 2015 at 11:44 PM

Can we run ADF11g Essential Application on JBoss 5 ?


Reply

20.

Oracle ADF Online TrainingMay 15, 2015 at 7:49 PM

Its very useful Thanks


Reply

21.

S M ConsultantsJune 22, 2015 at 5:46 AM


It's great post....and it is very useful and informative ...
S&M consultants
Reply
Replies

1.

peterjohnAugust 9, 2015 at 8:21 AM

I appreciate you sharing this article. Really thank you! Much obliged.
This is one awesome blog article. Much thanks again.

sap online training


software online training
sap sd online training
hadoop online training
sap-crm-online-training
Reply

22.

syed sAugust 8, 2015 at 11:43 AM

I was reading your blog this morning and noticed that you have a awesome
resource page. I actually have a similar blog that might be helpful or useful
to your audience.

Regards
sap sd and crm online training
sap online tutorials
sap sd tutorial
sap sd training in ameerpet
sap crm training tutorial

Reply

23.

peterjohnAugust 9, 2015 at 8:24 AM

Pretty good post. I just came across your site and wanted to say that Ive really
enjoyed reading your posts. In any case Ill be subscribing to your feed and I hope you
will keep a good work!Cheer!

oracle online training


sap fico online training
dotnet online training
qa-qtp-software-testing-training-tutorial
Reply

24.

MelisaAugust 11, 2015 at 5:57 AM


I am following your blog from the beginning, it was so distinct & I had a chance to
collect conglomeration of information that helps me a lot to improvise myself.
Regards,
ccna training institute in Chennai|ccna courses in Chennai
Reply

25.

Steve HawksAugust 12, 2015 at 1:47 AM

There are lots of information about latest technology and how to get trained in them,
like Hadoop Training Chennai have spread around the web, but this is a unique one
according to me. The strategy you have updated here will make me to get trained in
future technologies(Hadoop Training in Chennai). By the way you are running a great
blog. Thanks for sharing this. FITA chennai reviews
Reply

26.

Pooja DossOctober 2, 2015 at 5:54 AM

There are lots of information about latest technology and how to get trained in them,
like Best Hadoop Training In Chennai have spread around the web, but this is a
unique one according to me. The strategy you have updated here will make me to get
trained in future technologies Hadoop Training in Chennai By the way you are running
a great blog. Thanks for sharing this blogs..
Reply

27.

Pooja DossOctober 2, 2015 at 5:54 AM

I found some useful information in your blog, it was awesome to read, thanks for
sharing this great content to my vision, keep sharing..
SalesForce Training in Chennai
Reply

28.

Pooja DossOctober 2, 2015 at 5:55 AM

Pretty article! I found some useful information in your blog, it was awesome to
read,thanks for sharing this great content to my vision, keep sharing..
Unix Training In Chennai
Reply

29.

Pooja DossOctober 2, 2015 at 5:56 AM

This information is impressive..I am inspired with your post writing style & how
continuously you describe this topic. After reading your post,thanks for taking the time
to discuss this, I feel happy about it and I love learning more about this topic
Android Training In Chennai In Chennai
Reply

30.

Pooja DossOctober 2, 2015 at 5:56 AM

I have read your blog and i got a very useful and knowledgeable information from your
blog.You have done a great job.
SAP Training in Chennai
Reply

31.

Pooja DossOctober 2, 2015 at 5:56 AM

Oracle Training in chennai


Thanks for sharing such a great information..Its really nice and informative..
Reply

32.

Pooja DossOctober 2, 2015 at 5:57 AM

Selenium Training in Chennai


Wonderful blog.. Thanks for sharing informative blog.. its very useful to me..
Reply

33.

Pooja DossOctober 2, 2015 at 5:57 AM

Data warehousing Training in Chennai


I am reading your post from the beginning, it was so interesting to read & I feel thanks
to you for posting such a good blog, keep updates regularly..
Reply

34.

Pooja DossOctober 2, 2015 at 5:57 AM

Whatever we gathered information from the blogs, we should implement that in


practically then only we can understand that exact thing clearly, but its no need to do
it, because you have explained the concepts very well. It was crystal clear, keep
sharing..
Websphere Training in Chennai
Reply

35.

Pooja DossOctober 2, 2015 at 5:57 AM

Oracle DBA Training in Chennai


Thanks for sharing this informative blog. I did Oracle DBA Certification in Greens
Technology at Adyar. This is really useful for me to make a bright career..
Reply

36.

jhansi joeNovember 23, 2015 at 2:03 AM

Pretty article! I found some useful information in your blog, it was awesome to read,
thanks for sharing this great content to my vision, keep sharing.
Regards
cognos Training in Chennai|cognos tm1 Training in Chennai|cognos Certification
Reply

37.

varshini deviDecember 9, 2015 at 1:23 AM

Nice Article! Mostly I have gathered knowledge from the blogger, because its provides
more information over the books & here I can get more experienced skills from the
professional, thanks for taking your to discussing this topic.
Regards,
SAP training in chennai|SAP training|SAP Institutes in Chennai|SAP training|sap
institutes in Chennai
Reply

38.

Web TrackkerJanuary 19, 2016 at 5:08 AM

sap training institute in noida


Reply

39.

Web TrackkerJanuary 29, 2016 at 3:42 AM

Internship & Recruitment Program for MCA students


Webtrackker also provide the 6 Month/ weeks industrial training / Internship &
Recruitment Program for MCA students in Java, dot net, Web designing, web
developments, Angular.js, Node.js, Hybrid apps, computer networking, Plc Scada,
Auto cad, All modules in ERP sap, sap mm, sap fico. Php, Oracle Dba, networking etc
for MCA, BCA, B.Tech Students.
Webtrackker Technologies
B-47, Sector- 64
Noida- 201301
Phone: 0120-4330760, 8802820025
Email: [email protected]
Web: www.webtrackker.com
Reply

40.

Diya PatelFebruary 9, 2016 at 4:14 AM

Best SQL Query Tuning Training Center In Chennai This information is impressive; I
am inspired with your post writing style & how continuously you describe this topic.
After reading your post, thanks for taking the time to discuss this, I feel happy about it
and I love learning more about this topic..
Reply

41.

kits onlineFebruary 11, 2016 at 10:48 PM

very nice article.Thanks for sharing the post..!


Cognos Online Training

DataStage Online Training

ETL Testing Online Training

Hadoop Online Training

Hyperion Online Training

Reply

42.

Web TrackkerFebruary 22, 2016 at 4:05 AM

Web designing Training Institute in noida - with 100% placement support - web
trackker is the is best training institute for web designing, web development in delhi. In
you are looking web designing Training in noida, web designing Training Institute in
Noida, web designing training in delhi, web design training institute in Ghaziabad, web
designing training institute, web designing training center in noida, web designing
course contents, web designing industrial training institute in delhi, web designing
training coaching institute, best training institute for web designing training, top ten
training institute, web designing training courses and content then Webtrackker is the
best option for you.
Reply

43.

Web TrackkerFebruary 23, 2016 at 3:58 AM

Linux Training Institute in Noida


Best Linux & UNIX Training Institute In Noida, Delhi- Web Trackker Is The Best Linux
& Unix Training Institute In Noida, Top Linux & Unix Coaching In Noida Sector 63, 53,
18, 15, 16, 2, 64 Providing The Live Project Based Linux & Unix Industrial Training.
Reply

44.

Web TrackkerFebruary 23, 2016 at 4:27 AM

SAS Training Institute in noida


Best SAS training in Noida- with 100% placement support - Fee Is 15000 Rs - web
trackker is the best institute for industrial training institute for SAS in Delhi, Ghaziabad,
if you are interested in SAS industrial training then join our specialized training
programs now. SAS Training In Noida, SAS industrial training in noida, SAS training
institute in noida, SAS Training In ghaziabad, SAS Training Institute in noida, SAS
coaching institute in noida, SAS training institute in Ghaziabad.
Reply

45.

Webtrackker DilshadFebruary 25, 2016 at 11:09 PM

Java training institute in noida-webtrackker is best java training institute in noida witch
also provides real time working trainer, then webtrackker best suggestion of you and
better carrier if you are looking the"Java Training in Noida, java industrial training,
java, j2ee training courses, java training institute in noida, java training center in delhi
ncr, java training institute in ncr, Ghaziabad, project based java training, institute for
advance java courses, training institute for advance java, java industrial training in
noida, java/j2ee training courses in ghaziabad, meerut, noida
sector 64, 65, 63, 15, 18, 2"Webtrackker is best otion for you.
Reply

46.

shenaFebruary 26, 2016 at 11:47 PM

1800-640-8917 Norton antivirus technical support phone number, Norton customer


support toll free number, NORTON antivirus customer Support number, 1800-640-
8917 NORTON antivirus tech support number, Norton antivirus technical support
phone number, 1800-640-8917 Norton antivirus technical support number, 1800-640-
8917 Norton antivirus technical support toll free number, Norton technical support
number.
Reply

47.

Web TrackkerMarch 2, 2016 at 4:51 AM

Webtrackker Technologies- Webtrackker is an IT company and also provides the


project based industrial training in Java, J2EE. Webtrackker also provide the 100% job
placement support. JAVA Training Institute in Meerut, Best J2EE training Institute in
Meerut, best JAVA Training Institute in Meerut, best JAVA Training Institute in Meerut,
project JAVA Training in Meerut, JAVA Training on live project based in Meerut, Java
Training Courses in Meerut, Summer Training Program in Meerut, Summer Training
Program on java in Meerut.
Reply

48.

UnknownMarch 8, 2016 at 3:11 AM

Best hadoop training institute in Noida- with 100% placement support - Fee Is 15000
Rs - web trackker is the best institute for industrial training institute for hadoop in Delhi,
Ghaziabad, if you are interested in hadoop industrial training then join our specialized
training programs now. hadoop Training In Noida, hadoop industrial training in noida,
hadoop training institute in noida, hadoop Training In ghaziabad, hadoop Training
Institute in noida, hadoop coaching institute in noida, hadoop training institute in
Ghaziabad.hadoop training Institute in Noida
Reply
49.

Webtrackker InfoMarch 8, 2016 at 5:37 AM

Best hadoop training institute in Noida- with 100% placement support - Fee Is 15000
Rs - web trackker is the best institute for industrial training institute for hadoop in Delhi,
Ghaziabad, if you are interested in hadoop industrial training then join our specialized
training programs now. hadoop Training In Noida, hadoop industrial training in noida,
hadoop training institute in noida, hadoop Training In ghaziabad, hadoop Training
Institute in noida, hadoop coaching institute in noida, hadoop training institute in
Ghaziabad.hadoop training Institute in Noida
Reply
Replies

1.

Webtrackker InfoMarch 8, 2016 at 5:37 AM

Best hadoop training institute in Noida- with 100% placement support -


Fee Is 15000 Rs - web trackker is the best institute for industrial training
institute for hadoop in Delhi, Ghaziabad, if you are interested in hadoop
industrial training then join our specialized training programs now.
hadoop Training In Noida, hadoop industrial training in noida, hadoop
training institute in noida, hadoop Training In ghaziabad, hadoop
Training Institute in noida, hadoop coaching institute in noida, hadoop
training institute in Ghaziabad.hadoop training Institute in Noida
Reply

50.

Webtrackker DilshadMarch 18, 2016 at 5:03 AM

sas training institute in noida - web trackker is the best institute for industrial training
for SAS in noida,if you are interested in SAS industrial training then join our
specialized training programs now. webtrackker provides real time working trainer with
100% placment suppot.
Reply

51.

Webtrackker DilshadMarch 18, 2016 at 5:12 AM

sas training institute in noida - web trackker is the best institute for industrial training
for SAS in noida,if you are interested in SAS industrial training then join our
specialized training programs now. webtrackker provides real time working trainer with
100% placment suppot.
Reply

52.

Webtrackker DilshadMarch 18, 2016 at 5:35 AM

Android training institute in noida - webtrackker is best training institute webtrackkerr


provides real time working trainer with 100% placement supprt. webtrackker provides
all IT course like SAP(ABAP, BASIS, FI/CO, CRM, MM, PP, BI), SAS, WEB
DESIGNING, AUTOCAD, CAM, NODEJS, ANGULARJS, HYBIRD APPS, DIGITAL
MARKETING.
Reply

53.

Web TrackkerMarch 21, 2016 at 3:51 AM

Paris airport transfer - Parisairportransfer is very common in Paris that provides


facilities to both the businessmen and the tourists. We provide airport transfers from
London to any airport in London and also cruise transfer services at very affordable
price to our valuable clients.

Paris taxi
Paris airport shuttle
paris hotel transfer
paris airport transfer
paris shuttle
paris car service
paris airport service
disneyland paris transfer
paris airport transportation
beauvais airport transfer
taxi beauvais airport
taxi cdg airport
taxi orly airport
Reply

54.

Jessy CandyApril 12, 2016 at 3:17 AM

Thanks for posting this useful information,


It is very useful to who are searching for oracle adf online training.
Reply

55.

Bud FurnJune 28, 2016 at 3:32 AM

Thank you for your feedback. We're glad you enjoyed the post. Feel free to share it
with others you think may benefit from this information.

Turnkey Home Interiors Chennai


Reply

56.

mythily mythuOctober 5, 2016 at 12:37 AM

Thanks for posting this useful information.


msbi training in chennai
Reply
57.

mythily mythuOctober 5, 2016 at 12:39 AM

good posting.
hadoop training in chennai
Reply

58.

mythily mythuOctober 5, 2016 at 12:40 AM

Thanks for posting this useful information.


sas-predictive-modeling training in chennai
Reply

59.

Rajan MahajanNovember 14, 2016 at 4:36 AM

It is an excellent blog... I would like to appreciate you for providing such an awesome
information.. You have done a very good job..
Oracle Training in Noida
Reply

60.

Aptron DelhiFebruary 22, 2017 at 3:37 AM

Thanks for sharing your post. This is very helpful. You can also visit on: Best ERP SAP
Training Institute in Delhi

Reply

61.

yasarMarch 2, 2017 at 1:22 AM

very nice and informative blog


big data projects chennai
mobile computing projects chennai
cloud computing projects chennai
secure computing projects chennai
Reply
62.

AnonymousMarch 29, 2017 at 9:54 AM

Hi Amit
we have a requirement in oracle adf,how to calculate difference between two dates .
I want to implement using oracle adf please help us.
Reply
Thanks for your valuable comment. You comment will go live soon.

Newer PostOlder PostHome


Subscribe to: Post Comments (Atom)
ABOUT ME

Amit Sharma
mumbai, Maharastra, India
I am working on JDeveloper and ADF from past 4 year Here i am sharing my JDeveloper
Experience that may help other people. Everybody is welcome here, post your queries here
i'll be glad to solve them.
View my complete profile

SEARCH THIS BLOG


Top of Form

Search

There was an error in this gadget

LINKEDIN PROFILE

TRANSLATE

Powered by Translate

BLOG ARCHIVE
2013 (9)
o September (2)
o August (1)
o March (1)
o January (5)
How to change view criteria at run time
Oracle ADF Interview question Part 3
ADF Interview Question - Part 2
Oracle ADF Interview Question Part- 1
Default value to view attribute using other attrib...
2012 (12)
2010 (7)

FOLLOWERS TOTAL PAGEVIEWS

FACEBOOK BADGE
Amit Sharma
133816

There was an error in


this gadget
AMAZON CONTEXTUAL
PRODUCT ADS

VISITOR'S

1,287 Pageviews
Mar. 23rd - Apr. 23rd

Create Your Badge


VISITORS LIVE

LABELS

ADF (20) ADF BC (2) Adf Bounded Task flow (1)adf defaultCommand (1) Adf Dynamic Tab Shell: Tab selection
using the keyboard (1) ADF Interview question(3) ADF Mobile (2) ADF Mobile WebService Call (1) ADF popup (1) Adf
Table Default Row selection (1) Af:table (1)Af:table Row Selection (1) Android Development (1) Auto generate Key in Entity
Object (1) Bounded Task Flow (1)Captch In Java Application (1) Captcha J2EE (1) Change Current Tab Title (1) Change
Current Tab Title Using Java Code (1) Change ViewCriteria At Runtime (1) class (1)Custom Method Appmodule (1) Default
Action for adf page(1) default editor (1) Error Messages (1) Extension (1)Google Talk (1) How to define default action/button for
ADF(1) inner clases (1) java (2) java inner class (1) jdev hibernate plugin (1) JDeveloper (7) jdeveloper default
editor (1) jdeveloper extension (1) JDeveloper Extension for Generating Hibernate Units (1) JPA Tomcat Datasource (1) jsff/jspx
design view hang (1) LOV (1) MDS(1) Meta Data Services (1) Meta Data Services Using ADF(1) Mobile ADF (1) Oracle ADF
Tab selection (1) Oracle Adf Mobile Framework (2) Oracle Group Function (1)OracleADF (1) Parent Action
Activity (1) plugin for hibernate(1) Query (1) SelectOneChoice (1) setPropertyListener (1)showPopupBehaviour (1) SQL Inside
ADF (1) Tab Title (1)Table Selected row data without javascript (1) Task Flow (1)tomcat data-source (1) Total Column
Footer (1)ViewCriteria (1) VO Attribute Default Value (1) VORowImpl(1) Webservice Data Control (1)

POPULAR POSTS
Oracle ADF Interview Question Part- 1
Oracle ADF Interview question Part 1 Q1. What is Oracle ADF? Ans : Oracle Application Development
Framework, usually called Ora...
ADF Interview Question - Part 2
ADF Interview Question - Part 2 Q29 What is the different between Action and ActionListener? Ans :
ActionListener : ActionListene...
How to disable adf default row selection in <af:table>?
How to disable adf default row selection in <af:table>? Problem Definition In day to day development
we faced common issue with ...
Parent Action Activity in ADF Bounded Task Flow
Effective use of Parent Action Activity Here in this post I am explaining the way of Using Parent Action
Activity. Using Parent Acti...
How to execute sql using ADF Application
How to execute sql using ADF Application I am going to explain the here is How can we execute the
sql statement Application. Open your...
Change ADF Default Error Messages
How to change ADF default messages These are some requirement on which we want to change the
default adf error messages. I am...
How to use JPA using data-source on tomcat?
How to use JPA using data-source on tomcat? Step :1 Add following details to context.xml of tomcat
server <Resource auth="Con...
Oracle ADF Interview question Part 3
Oracle ADF Interview question Part 3 Q52 How to save custom property in ADF? Q53 How to
generate id from seq usign EntityObject ...
ADF : Issue with Popup and setPropertyListener
ADF : Issue with Popup and setPropertyListener I am trying to launch popup on button click and on
same event I want to set some property...
Default value to view attribute using other attribute of same row
Default value to view attribute using other attribute of same row Some time requirement will come in
development to set some view-obejct...

LIVE ACTIVITY

Picture Window theme. Powered by Blogger.

You might also like