Oracle D2K Interview Questions And Answers

Download Oracle D2K Interview Questions and Answers PDF

Strengthen your Oracle D2K interview skills with our collection of 28 important questions. These questions are specifically selected to challenge and enhance your knowledge in Oracle D2K. Perfect for all proficiency levels, they are key to your interview success. Download the free PDF now to get all 28 questions and ensure you're well-prepared for your Oracle D2K interview. This resource is perfect for in-depth preparation and boosting your confidence.

28 Oracle D2K Questions and Answers:

Oracle D2K Job Interview Questions Table of Contents:

Oracle D2K Job Interview Questions and Answers
Oracle D2K Job Interview Questions and Answers

1 :: What is oracle d2k? why we use it?

It is a front end tool which consist of forms and reports and use plsql as a coding language
Read More

2 :: Were you involved in any data conversion, which one?

We have done data conversion for1.Suppliers2.AP Invoices3.Customers4.AR Invoices
Read More

3 :: Which Oracle Apps version you are very confident in?

As we basically use 11.5.9 version hence its better to tell that only.
Read More

4 :: Total months of effort in Oracle Apps technical work?

If you are technically strong in Oracle D2k then it will take very less or near abt one month to learn abt Oracle apps.
Read More

5 :: Are you familiar with User exits in reports?

The best example for user exit which i used is FND FORMAT_CURRENCY.
Read More

6 :: Do you know what are User Profiles in Apps. Any examples you can give?

User Profile : It is a set of changeable options through which your application runs.User profile can be defined at various levels. They are

1.System

2.Application

3. Responsibility

4. User
Read More

7 :: How many concurrent programs you have customized, can you name some of them?

Have to see the standra reports and possible customizations
Read More

8 :: How to make the project as .exe file in oracle forms & reports(d2k)?

Developer/2000 doesn't make exe files. Think of your Dev 2k project like an access database, you develop the forms and reports and then when you deploy them you also install the Forms & Reports Runtimes on the clients machine. Forms, when compiled have the *.fmx extension as opposed to the normal *.fmb extension.

Developer/2000 doesn't make .exe files.
Read More

9 :: How do you run ms_batch file in forms?
what could be the value :system.mode?

host('c:myFile.bat');

host('c:myfile.bat);
Read More

10 :: How to get / select the nth row from the table?
how to select first n rows ,last n rows from a table?

nth salary

select salary

from table_name a

where &n=(select count(salary) from table_name b where a.salary<=b.salary);

n salaries

select salary

from table_name a

where &n>=(select count(salary) from table_name b where a.salary<=b.salary);


select level,max(column name) from emp where level = n connect by prior sal > sal group by level;
Read More

11 :: Do you know what is APPLYSYS in Oracle application database schema, what is APPS?

Applsys is a schema as apps and applsyspub.this schema contains the information about the FND or forndation tables.
Read More

12 :: Any work done in Oracle Workflow builder. Did you customize or build a new workflow?

Yes, I customized the Work Flow For Credit Memo Request approval in AR through Workflow Builder.
Read More

13 :: Do you know table based value sets?

yes i know.

Nav=>application-->validation-->set

we will give set name.

select type as table,"edit information" button will hilight, click that

give application name-->table name(for which u want to make table value set)-->column name-->give name of the column-->where/order by(give the condition or order either asc/desc)-->save it and use in "parameters" window in concurrent program creation.
Read More

14 :: Which Flexfields you have customized?

Client can customize Descriptive Flex Fields.
Read More

15 :: Have you good knowledge on Java?

Can anybody give the meaning of this question.

i think answer is: i know java
Read More

16 :: Have you used lexical parameters in reports?

There is no need of using Lexical parameter in reports Deveoper.Instead We can use bind Variables as a parameter.
Read More

17 :: Which directory will you copy your new reports, what would be its extension (.rdf or .rex)?

THe extension of the Oracle report will be *.rdf (Report Definition File).

You place the Oracle report on the corresponding application top in the reports folder.

Eg: $XAP_TOP/../reports


Generally we place the newly developed reports in Custom top. $CUSTOM_TOP/reports/US
Read More

18 :: Which directory will you copy your new custom form, what would be its extension (.fmb or .fmx)?

Directory Name:-

Move the fmb file into :-

cust_top/forms/US

Keep the new form (renamed) in au_top/forms/US
Read More

19 :: In oracle application how do you debug or trace errors?

You can trace in Oracle application Help menu.

Start Oracle application Goto Help

Help->Diagnostics->Trace-> Regular Trace.

will ask for Apps Pass. Wil Show Not dialog Box which Gave you the path of Trace file. FTP the Trace file.
Read More

20 :: Are you familiar with internet architecture of Oracle Apps 11i?

There are 3 tier of Internet Architechture of Oracle Application 11i.

1. Desktop Tier
2. Database Tier
3. Application Tier.
Read More

21 :: Which Oracle applications PL/SQL standard APIs you are familiar, have you used most of them?

1. Fnd_File - PL/SQL I/O
2. Fnd_program - Concurrent Program Loaders
3. Fnd_set - Request Set Creation
4. Fnd_request - Concurrent Request Submission
5. Fnd_Submit - Request set Submission
6. Fnd_Request - Info

and so on...
Read More

22 :: What are the new features in Release 11I?

The main features in Release 11i is

1.Multi Org-To support Multiple organizations.

1.Multi Currency-Defineing the multiple currencies to single organization

2.Multi Lingual-Suporting of multi Languages.
Read More

23 :: How I can use SRW.RUN_REPORT in Reports6i?

You can use srw.run_report as followssrw.run_report('module=modulename.rdf destype=screen paramform=yes');
Read More

24 :: How many different layouts are available in Reports6i? What are they?
in which sequence , form level trigger will fire? in which sequence, report trigger will fire?
how many types of canvas are there in form? what r they?
what are bind variables and lexical reference in oracle reports?
how many types of colums are there in Reports6i? what are they?
what is the purpose of placeHolder column in Report?
can u have a form with out a canvas?
what is confine mode and flex mode in reports?
how do u register report in oracleApps?

There are eight different layout formats :

1. Tabular

2. Form Like

3. Mailing Label

4. Form Letter

5. Group Left

6. Group Above

7. Matrix

8. Matrix with group
Read More

25 :: What is the Placeholder Column?
What is the Format Trigger?

A placeholder column is used to hold the value of certain calculation or a variable that is being carried out in a formula column. A place holder can be defined as anumber, character or date type, depending upon the type of value which will be stored into it.

A format trigger is used when we want to display a particular field, if certain conditions are met.
Read More