GeekInterview.com
Series: Subject: Topic:

D2K Interview Questions

Showing Questions 1 - 20 of 73 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

In the sequence of fired trigger which one is fired first i) when _validate_item ii) key_next_item?

Asked By: prabhu | Asked On: Aug 14th, 2007

Answered by: Ram Mohan on: Apr 8th, 2013

Always first "key_next_item" firs first and then "when_validate_item" fire,this is applicable for all levels .i.e form level,block level and item level

Answered by: kiran_marla on: Jun 7th, 2010

key-next-item
when-validate-item

Scroll bar on tab pages

Asked By: niranjansmart | Asked On: Dec 20th, 2008

Can we add scroll bar at on all tab pages in a single canvas? If yes then how:

Answered by: Udara on: Oct 18th, 2012

If still couldnt see the scroll bar, just look at the x and y coordination of the scroll bar. Change the values of hose two according to the size of the window. You will see the scroll bar on the canvas.

Answered by: Udara on: Oct 17th, 2012

You can add whatever scroll bar to your form. Normally we add scroll bars to the data block. Therefore no matter whether the canvas is content or stack or tab one. Simply you can add a scroll bar to y...

What is the process to call a report from a form of current record of the form whth out parameter form?

Asked By: Interview Candidate | Asked On: Sep 5th, 2005

Star Read Best Answer

Editorial / Best Answer

Answered by: vinod_ce2005@hotmail.com

View all answers by vinod_ce2005@hotmail.com

Member Since Dec-2005 | Answered On : Dec 29th, 2005

by using run_product we can call report from a form

Answered by: radhika on: Apr 28th, 2012

we can call report from form directly from object navigator of form

Answered by: sateeshkonthala on: Nov 13th, 2010

By Using the key word RUN_PRODUCT

How to create grid in Oracle d2k?

Asked By: eswarsuresure | Asked On: Apr 25th, 2012

Is it possible to use or develop grid in Oracle d2k? If possible means how?

How to use single data block to query multiple tables 

Asked By: Interview Candidate | Asked On: Sep 2nd, 2005

Answered by: anji on: Jan 2nd, 2012

Create a view on multiple tables and after then
Create a data block on that view

Answered by: imnrj23 on: Nov 18th, 2010

Use Post_Query Trigger on the Block Level.Remember in this Trigger if you are getting the data from the base table (your Data Block Source), then you dont need any coding.If you want to query another ...

Open form example

Asked By: king_ora007 | Asked On: Jan 12th, 2009

Give an example for open_form with parameter passing from one form to another form?

Answered by: siva krishna chowdary n on: Dec 21st, 2011

call_form(file namw with path,no_hide,do_replace,no_query_only);

Answered by: dinesh 9994988813 on: Sep 24th, 2011

Code
  1. HIDE_WINDOW('WINDOW1');
  2. CALL_FORM('this u r file save path',NO_hide,no_replace,no_Query_only);
  3. SHOW_WINDOW('WINDOW1');

On-error trigger

Asked By: Subashpanda | Asked On: Feb 7th, 2011

If you write null in on-error trigger defined in form level of forms 10g, then what will happen to the error message during runtime? Will the error message get displayed or not?

Answered by: praduman jha on: Dec 10th, 2011

Dear All, Basically when we write null on on error then at that time, no error will display. At the backend when we want to search the on which packages are firing then write down ON_ERROR...

Answered by: Nithin on: Jul 24th, 2011

Nothing Happens... the on-error trigger wont be handled in case a NULL is written in the trigger

Can you maintain and manupulate 2 Oracle 10g database in a single stand alone machine. If so how and how can you access both the database objects.

Asked By: Ranjan Kumar Dey | Asked On: Jul 24th, 2007

Answered by: abhishek on: Nov 30th, 2011

we can install two instance of oracle on a stand alone machine in two different directories and distinguish them by there different home names as orcl1,orcl2 we can work with both instances........

Answered by: muraligrandhi on: Dec 2nd, 2010

Yes, we can maintain two oracle databses in a single machine.
For this we need to install two Operating systems in your machine, one is Windows and another one is Unix.
After you that you should install the databases in the two Operating systems.

What triggers are actiVATed when master detailed relationship established?

Asked By: suhasshah2007 | Asked On: Mar 28th, 2007

Answered by: saleem on: Nov 21st, 2011

1) On-Check-Delete-Master Fires when Oracle Forms attempts to delete a record in a block that is Master block in a master-detail relation 2)On-Clear-Details Fires when Oracle Forms needs to clear rec...

Answered by: shahnirav86 on: Jul 2nd, 2008

1) Which trigger are created when master -detail rela?1) master delete property *  NON-ISOLATED (default) a) on check delete masterb) on clear detailsc) on populate details  *...

How to convert a report into excel sheet

Asked By: oswal.anand | Asked On: Dec 24th, 2005

Answered by: parash_3380 on: Oct 19th, 2011

Hi Mr. Subrat, very good but when i set system parameters as destype=file and desformat=spreadsheet it is just showing on browser that "Successfully run" and nothing where as if i give destype=c...

Answered by: subrat on: Oct 13th, 2011

set system parameters

destype=file

and

desformat=spreadsheet
(100% tested) and secure

Difference between flex,lexical and bind variable

Asked By: sanju | Asked On: Jun 13th, 2006

Answered by: VENKATESH on: Aug 19th, 2011

Flex means to store the data for feature purpose.
Bind variable means it returns single column..
Lexical means it return multiple columns..

Answered by: sameeridol21 on: Jul 21st, 2010

The main diff betn lexical and bind variable  as followsBind reference will substitute a single value in PL/SQL whereas lexical variables are used to substitute multiple value.  Bind va...

What are features of 4.5,6i,9i differencekindly list them

Asked By: gopi | Asked On: Oct 17th, 2006

Answered by: manishks86 on: Jul 25th, 2011

In 1992, Oracle version 7 was released with support for integrity constraints, stored procedures and triggers. In 1997, Oracle version 8 was released with support for object-oriented development a...

Answered by: anilreddy02 on: Aug 17th, 2010

In 6i -> Report6i program units, layout modules, anchors, conflex and flex modes, frames and repeated frames.

Which property has to be used to fill the columns created_by, updated_by etc in the table when the user uses the customized form to enter the data in the table?

Asked By: jency | Asked On: Nov 21st, 2007

Answered by: kundancertain on: Jan 25th, 2011

By using FND_STANDARD.SET_WHO in PRE_INSERT and PRE_UPDATE trigger, 5 who columns can be populated. But this work in Oracle Application form customization. 

Answered by: nagendrap on: Jan 10th, 2011

In pre-insert trigger by using 'fnd_standard.who' package we can insert data into these two columns in Oracle forms.

Which property is used to define the relative position of one field with another

Asked By: Edwin Peterson | Asked On: Jan 19th, 2006

Answered by: sameeridol21 on: Jul 21st, 2010

The property used to define the relative position of one field with another is Anchor

Answered by: osden on: Oct 7th, 2007

In properties -> Record -> Distance Between Records (Default value is 0).

If there are 1 to 10 records, how many times between pages trigger will fire?If there are 1 to 2 records? And how many times it will fire from 10th to 1st record?

Asked By: babloo | Asked On: May 3rd, 2006

Answered by: sameeridol21 on: Jul 21st, 2010

Irrespective of number of records, between pages trigger will fire n-1 times.

According to the Q -if it has 10 pages (1 record/page) then it will fire 9 times.
If it has 5 pages (2 record/page) then it will fire 4 times.
It will not fire from 10th to 1st record because it fires for 1st navigation.

Answered by: Chandra K. Ravi on: Sep 6th, 2007

Mittal,  You are wrong.  Page between trigger  Fire only 4 times. If there is  5 pages in a report.



C.K.Ravi
3i-infotech

What is the correct sequence of firing triggers in forms1) pre-form2)pre-block3)when-new-form4)when-validate-item5)post-block

Asked By: nadh_kusuma | Asked On: Dec 8th, 2005

Answered by: sameeridol21 on: Jul 21st, 2010

Opening new form and going to dept.deptno --pre-logon (form level) –post-logon (form level) –pre-form (form level) –pre-block (block level) –pre-record (block level) –pre...

Answered by: bc_sumanamara on: Jan 13th, 2009

 Pre-form
When-new-form
 Pre-block
 When-validate-item
 Post-block

What is the business reason for using triggers and what sequence they get fired when control transfer from one text item to next text item ?

Asked By: suhasshah2007 | Asked On: Mar 28th, 2007

Answered by: sameeridol21 on: Jul 21st, 2010

A trigger is PL/SQL function which will fire whenever a corresponding event occures. The sequence of the triggers as follows

1> When-validate-item
2> Post-text-item 
3>Key-Next-Item
4>when-new-item-instance.

Answered by: Raghu2008 on: Aug 6th, 2008

A trigger is PL/SQL block which will fire whenever a corresponding event occures. The sequence of the triggers are Key-Next-Item, When_validate_item, Post_item and when-new-item-instance.

Thanks,
Rahgu.

What is the return type for Oracle Apps report trigger

Asked By: sandeep | Asked On: Sep 3rd, 2007

Answered by: sameeridol21 on: Jul 21st, 2010

The return type for Oracle Apps report trigger is Boolean ie TRUE Or FALSE

Answered by: Mital Mehta on: Sep 27th, 2007

That Will be Boolean like True or false

What are use of dde package in d2k

Asked By: sanjeet kumar | Asked On: Oct 25th, 2006

Answered by: imranbaig.geek on: Mar 23rd, 2010

Oracle Forms for Microsoft Windows supports Dynamic Data Exchange(DDE), a mechanism by which applications can communicate and exchange data. DDE client support is a procedural extension to Oracle Form...

Answered by: ajay2222@gmail.com on: Dec 21st, 2006

Sir can you tell me

any sites name where i can getproject in D2K

ajay singh

What is key.Next.Item trigger?

Asked By: V Rajesh Nair | Asked On: Mar 23rd, 2006

Answered by: zahid92005 on: Feb 22nd, 2010

This trigger fires forces the cursor to be taken to the next available item or data block. 

Answered by: Venkata Ramana on: Sep 14th, 2006

Key-Next-item trigger will fire whenver the user try to move the control(i.e., cursor) from one item to another item in the form by pressing return key or tab key.

First | Prev | | Next | Last Page

 

 

Ads

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.