Login
Register

Home

Trainings

Fusion Blog

EBS Blog

Authors

CONTACT US

Oracle Apps Interview Questions
  • Register

Oracle Gold Partners, our very popular training packages, training schedule is listed here
Designed by Five Star Rated Oracle Press Authors & Oracle ACE's.

webinar new

Search Courses

Which is the most commonly used package in apps that uses Autonomous Transaction?

FND_LOG, this is used for debugging. This has a procedure named string, which does a commit.

Hence your debug messages are not lost in the event of rollback during unhandled exception.

 

 

What is one of the limitations of Forms Personalization?

You can not display interactive messages as you can using fnd_message

 

 

How to use  Flexfields in reports  ?

Ans : Most common way is to use FND user exits provided by oracle applications.

Other way is to directly use the DB views (TableName  || ‘_KFV’ or ’_DFV’) created by apps, and use the concatenated_segments column which holds the concatenated segments of the key or descriptive flexfields.

 

 

 

What are Autonomous transactions ? Give a scenario where you have used Autonomous transaction in your reports ?

Ans: An autonomous transaction is an independent transaction started by another transaction, the main transaction. Autonomous transactions let you suspend the main transaction, do SQL operations, commit or roll back those operations, then resume the main transaction.

Once started, an autonomous transaction is fully independent. It shares no locks, resources, or commit-dependencies with the main transaction. So, you can log events, increment retry counters, and so on, even if the main transaction rolls back.

 

More important, autonomous transactions help you build modular, reusable software components. For example, stored procedures can start and finish autonomous transactions on their own. A calling application need not know about a procedure's autonomous operations, and the procedure need not know about the application's transaction context. That makes autonomous transactions less error-prone than regular transactions and easier to use.

 

Furthermore, autonomous transactions have all the functionality of regular transactions. They allow parallel queries, distributed processing, and all the transaction control statements including SET TRANSACTION.

 

Scenario : You can use autonomous transaction in your report for writing error messages in your database tables.

 

 


 

What is record group ?

Ans: Record group are used with LOVs to hold sql query for your list of values. The record group can contain static data as well it can access data from database tables thru sql queries.

 

 

What is a FlexField ? What are Descriptive and Key Flexfields ?

Ans: An Oracle Applications field made up of segments. Each segment has an assigned name and a set of valid values. Oracle Applications uses flexfields to capture information about your organization.

 

 

 

What are different report triggers and what is their firing sequence ?

Ans. : There are five report trigger :

·         Before Report

·         After Report

·         Before Parameter Form    

·         After Parameter Form

·         Between Pages

 

The Firing sequence for report triggers is

        Before Parameter Form – After Parameter Form – Before Report – Between Pages – After Report.

 

 

 

What is the use of cursors in PL/SQL ? What is REF Cursor ?

Ans. : The cursor are used to handle multiple row query in PL/SQL. Oracle uses implicit cursors to handle all it’s queries. Oracle uses unnamed memory spaces to store data used in implicit cursors, with REF cursors you can define a cursor variable which will point to that memory space and can be used like pointers in our 3GLs.

 

 

How to attach reports in Oracle Applications ?

Ans:  The steps are as follows :

·         Design your report in D2K

·         Generate the executable file of the report as .rdf.

·         Move the executable as well as source file to the appropriate product’s folder.

·         Register the report as concurrent executable.

·         Define the concurrent program for the executable registered.

·         Add the concurrent program to the request group of the responsibility.

 

 

 

What is the use of triggers in Forms ?

Ans : Triggers are used in forms for event handling. You can write PL/SQL code in triggers to respond to a particular event occurred in your forms like when user presses a button or when he commits the form.

The different type of triggers available in forms are :

·         Key-triggers

·         Navigational-triggers

·         Transaction-triggers

·         Message-triggers

·         Error-triggers

·         Query based-triggers

 

 

What is the use of Temp tables in Interface programs ?

Ans : Temporary tables are used in Interface programs to hold the intermediate data. The data is loaded into temporary tables first and then, after validating through the PL/SQL programs, the data is loaded into the interface tables.

 

 

What are the steps to register concurrent programs in Apps ?

Ans : The steps to register concurrent programs in apps are as follows :

·         Register the program as concurrent executable.

·         Define the concurrent program for the executable registered.

·         Add the concurrent program to the request group of the responsibility

 

 

How to pass parameters to a report ? do you have to register them with AOL ?

Ans: You can define parameters in the define concurrent program form. There is no need to register the parameters with AOL. But you may have to register the value sets for those parameters.

 

 

Do you have to register feeder programs of interface to AOL ?

Ans : Yes ! you have to register the feeder programs as concurrent programs to Apps.

 

 

What are forms customization steps ?

Ans:  The steps are as follows :

·         Copy the template.fmb and Appstand.fmb from AU_TOP/forms/us.Put it in custom directory. The libraries (FNDSQF, APPCORE, APPDAYPK, GLOBE, CUSTOM, JE, JA, JL, VERT) are automatically attached .

·         Create or open new Forms. Then customize.

·         Save this Form in Corresponding Modules.

 

 

 

What is Key and Descriptive Flexfield.

Ans : Key Flexfield: #unique identifier, storing key information

                                      # Used for entering and displaying key information.

                   For example Oracle General uses a key Flexfield called Accounting

                   Flexfield to uniquely identifies a general account.

 

             Descriptive Flexfield: # To Capture additional information.

                                                   # to provide expansion space on your form

                                                       With the help of [] . [] Represents descriptive

                                                        Flexfield.

Difference between Key and Descriptive Flexfield?

Ans :

Key Flexfield

Descriptive Flefield

1. Unique Identifier

1.To capture extra information

2. Key Flexfield are stored in segment

2.Stored in attributes

3.For key flexfield there are flexfield Qualifier and segment Qualifier

3. Context-sensitive flexfield is a feature

 of DFF. (descriptive flexfield)


 

 

 

What are the steps in Customer Interface ?

Ans:

 

How to handle errors in Customer interface ?

Ans:

 

What was your role in Customer Interface?

Ans:

 

What is the use of CUSTOM Library in Oracle Apps?

Ans:

 

Can you call APPCORE library in CUSTOM library ?

Ans : you cannot attach the APPCORE library to CUSTOM because it would cause a recursion problem    

          (because CUSTOM is attached to APPCORE). As of Oracle Applications Release 11i, you may

           attach the APPCORE2 library to CUSTOM. The APPCORE2 library duplicates most APPCORE  

           routines with the following packages:

·         APP_ITEM_PROPERTY2

·         APP_DATE2

·         APP_SPECIAL2

These packages contain the same routines as the corresponding

           APPCORE packages. Follow the documentation for the corresponding

           APPCORE routines, but add a 2 to the package names.

 

Can you use REF cursors in CUSTOM library?

Ans:

 

 

What is FlexField?

Ans: Oracle Application uses Flexfield to capture information about

             Your organization. Flexfield have flexible structure for storing key information.

              Like Company, Cost Center, and Account. They also give u highly adaptable

               Structure for storing customized information in oracle Applications.

 

 

How many Flexfields are there in AR and what are they ?

Ans:

 

 

 

What are User Exits and what are different types of User Exits in Oracle Apps ?

Ans:

 

 

What is MRC and what are it’s use?

Ans: The Multi Reporting Currency Feature allows you to report and maintain records at the transaction level in more than one functional currency. You can do by defining one or more set of books in addition to primary set of books.

 

 

How many reporting currencies can be attached to Primary Set Of Books ?

Ans:

 

What are the new features in Release 11I ?

Ans:

 

 

What are ad-hoc reports ?

Ans: Ad-hoc Report is made to meet one-time reporting needs. Concerned with or formed for a particular purpose. For example, ad hoc tax codes or an ad hoc database query

 

 

What is FSG and what is it’s use ?

Ans:  FSG is a powerful and flexible tool you can use to build your own custom  reports without programming. FSG is only available with GL.

 

 

What are different types of transactions in AR ?

Ans:

 

 

What are value sets ?

Ans:

 

What do you mean by HZ_ in customer tables ?

Ans:

 

 

How can you handle multiple rows without using loops in PL/SQL ?

Ans:

 

 

What are the different types of files used in SQL Loader ?

Ans:

 

 

 

What are Interface table in AP, AR,GL ?

Ans: AP INTERFACE TABLE: 1). AP_INTERFACE_CONTROLS.

                                                        2). AP_INTERFACE_REJECTIONS

                                                         3). AP_INVOICE_INTERFACE

                                                          4). AP_INVOICE_LINES_INTERFACE.

AR INTERFACE TABLE:

                                                    1). AR_PAYMENTS_INTERFACE_ALL

                                                    2). AR_TAX_INTERFACE

                                                    3). HZ_PARTY_INTERFACE

                                                    4). HZ_PARTY_INTERFACE_ERRORS

                                                    5). RA_CUSTOMERS_INTERFACE_ALL

                                                    6). RA_INTERFACE_DISTRIBUTIONS_ALL

                                                    7). RA_INTERFACE_ERRORS_ALL

                                                    8). RA_INTERFACE_LINES_ALL

                                                    9). RA_INTERFACE_SALESCREDITS_ALL

GLINTERFACE TABLE:

                                                  1). GL_BUDGET_INTERFACE

                                                  2). GL_DAILY_RATES_INTERFACE

                                                  3). GL_IEA_INTERFACE

                                                  4). GL_interface

                                                  5). GL_INTERFACE_CONTROL

                                                  6). GL_INTERFACE_HISTORY


 

 

What are different period types ?

Ans:

 

 

What are different types of Journal entries ?

Ans:

 

 

What are the setup steps for testing ?

Ans:

 

 

What are User Exits ?

Ans:

 

 

What is an Invoice ? How many types of invoices are there in AP and AR ?

Ans:

 

 

 

What is recurring invoices ?

Ans:

 

 

If the valueset if of type –TABLE then how many tables can we attach in the valueset ?

 

Ans:

 

 

Can you add a descriptive FlexField to a table which already have data in it ?

Ans:

 

If any conflict occurs in FSG the who will override Column Set or Row Set ?

Ans:

 

 

How to take care of null values in SQL Loader ?

Ans:

 

 

 

What is Set of Books ? What are the four conditions when you change your SOBs?

Ans:

 

 

What is Multiple Organization technical architecture?

Ans:

 

 

What can we find TEMPLATE.FMB file ?

Ans:

 

 

What are the libraries attached to TEMPLATE form ?

Ans:

 

 

What is the difference between cross-validation rules and security-rules?

Ans:

 

 

In how many ways can you enter a journal in GL?

Ans:

 

 

What are the setup steps for AP, AR, GL?

Ans:

 

 

How to register tables and columns in AOL?

Ans:

 

 

What is the difference between discounts and adjustments?

Ans:

 

 

What are different types of invoices and what is a recurring invoice?

Ans:

 

What are cycles of GL, AP, and AR?

Ans:

 

 

What are Summary Accounts and Rollup groups ?

Ans:

 


Anil Passi

Comments   

+1 #1 sivakumar 2009-02-14 19:46
Anil,
Appreciat ed if you could upload the API's for AR,AP and GL.
Quote
0 #2 Mansih shheth 2009-05-02 06:13
do u have any article for implementing Taxation in Oracle EBS
Quote
0 #3 Murugesh 2009-11-06 06:35
Hi Anil,

I am getting into the implementation of Compensation Work Bench to a Client. Is there any article written by you or is there any reference doc that can guide me.
Please advise

Regards ,
R.MURUGESH
Quote
+1 #4 anjan 2010-01-06 05:08
hi....
plz give the differences between interface and conversion and also definitions
Quote
+1 #5 sameeridol 2010-07-02 09:12
First of all ,I thank you for providing Valuable information .
Can you give some Apps Form Interview Questions & answer for Fresher ?

thanks a lot
Quote
0 #6 sagar deep singh 2010-12-21 08:28
First of all,I would like to thanks you for giving this valuable information.
I would like to suggest u to add some pictorial representation for more clear explanation.
th anks.
Quote
0 #7 sreenu4.apps 2011-01-19 01:20
hello sir i want oracle apps technical realtime question and answers and gl,ap,ar,inv,mf g docs
Quote
+1 #8 kishore 2011-09-06 08:43
Dear Sir

Could you please send the AOL pdf to
Quote
0 #9 sairoopa 2011-12-07 02:12
Thanks sir
Could you send me oracle apps technical real time interview questions please.
Quote
0 #10 jagadesh 2012-12-11 06:54
hi ,


could you please upload about brief description and examples about API's?..thanks :)
Quote
0 #11 saurabhm 2013-01-31 04:28
ra_customers _interface _all and ra_interface_li nes_all join???
Quote
-1 #12 Sridevi Koduru 2014-03-22 05:40
I am Sridevi Koduru, Oracle Apps Techno Functional Faculty with 5+ Years Training Experience on Oracle Apps Technical, Oracle Apps Functional, Oracle Financial for Indian Localization, SQL, PL/SQL and D2K including 3+ Years of Real Time Experience. I have Provided Training for 500+ Professionals Most of them are Working in Real Time now.

Contact Me for Offline and Online Training on Oracle Apps Technical, Oracle Apps Functional, Oracle Financial for Indian Localization, SQL, PL/SQL and D2K at | +91-9581017828 |
Quote
-9 #13 Sridevi 2014-04-30 16:18
I am Sridevi Koduru, Oracle Apps Techno Functional Faculty with 6 Years Training Experience on Oracle Apps Technical, Oracle Apps Financial Functional, Oracle Financial for Indian Localization, Oracle Apps SCM, Oracle Apps HRMS, SQL, PL/SQL and D2K including 3+ Years of Real Time Experience. I have Provided Training for 500+ Professionals Most of them are Working in Real Time now.

Contact Me for Offline and Online Training on Oracle Apps Technical, Oracle Apps Financial Functional, Oracle Financial for Indian Localization, Oracle Apps SCM, Oracle Apps HRMS, SQL, PL/SQL and D2K at | +91-9581017828 | http://www.oracleappstechnical.com

My Linkedin profile - http://in.linkedin.com/pub/sridevi-koduru/8b/76a/9b8/
Quote
+1 #14 vasu 2015-01-13 02:18
sridevi @ is 0 experience who just keep update her profile and having 0 rankings,as i read all bad comments about her.so please do not give wrong informatiion and misguide students and other people.
Quote
-1 #15 Suri 2015-02-26 09:13
sridevi @ is 0 experience who just keep update her profile and having 0 rankings,as i read all bad comments about her.so please do not give wrong informatiion and misguide students and other people.
Quote
0 #16 ravireddy 2015-04-02 18:08
Quoting anjan:
hi....
plz give the differences between interface and conversion and also definitions

conversion is onetime process transfering dada from legacy system in to oracle apps
interface is a conversion only but is continous
there r 2 types of interfaces 1)inbound 2)outbound
Quote
0 #17 venkatesh apps 2015-04-27 11:10
please send to API'S and interview point of questions in oracle apps technical consultant
Quote
0 #18 erp trainingcenter 2015-06-05 05:29
For Oracle Apps Technical,Funct ional,HRMS and SCM training with 100% placement assurance.Conta ct-9885489062
Quote
0 #19 ifieiyamo 2022-02-25 09:42
http://slkjfdf.net/ - Madiis Akukiba iwg.nibo.apps2f usion.com.ywm.f x http://slkjfdf.net/
Quote
0 #20 omawpuva 2022-02-25 09:52
http://slkjfdf.net/ - Uoufiwi Uxepoboci ttc.odwg.apps2f usion.com.nbr.x l http://slkjfdf.net/
Quote
0 #21 uasozunn 2022-02-25 10:05
http://slkjfdf.net/ - Xayaregoy Exicamac hge.gvqp.apps2f usion.com.tiw.u a http://slkjfdf.net/
Quote
0 #22 oqilijoenuz 2022-02-25 14:06
http://slkjfdf.net/ - Ezekik Erejahqe ucs.yonv.apps2f usion.com.elk.o s http://slkjfdf.net/
Quote
0 #23 iagijaur 2022-02-25 14:20
http://slkjfdf.net/ - Itxoqa Aarifoco wul.ftmk.apps2f usion.com.qfv.g d http://slkjfdf.net/
Quote
0 #24 emufedomvo 2022-02-25 18:07
http://slkjfdf.net/ - Aqahuyuvi Iqiritf ekw.mjbh.apps2f usion.com.qtt.y n http://slkjfdf.net/
Quote
0 #25 ejojoditomufi 2022-02-25 18:18
http://slkjfdf.net/ - Uafakirti Imeqeevuw mwo.nxlz.apps2f usion.com.mzy.v g http://slkjfdf.net/
Quote

Add comment


Security code
Refresh

Search Trainings

Fully verifiable testimonials

Apps2Fusion - Event List

<<  May 2024  >>
 Mon  Tue  Wed  Thu  Fri  Sat  Sun 
    1  2  3  4  5
  6  7  8  9101112
13141516171819
20212223242526
2728293031  

Enquire For Training

Fusion Training Packages

Get Email Updates


Powered by Google FeedBurner