GeekInterview.com
Series: Subject: Topic:

D2K Interview Questions

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

Placeholder column

Asked By: mohanavel.arr | Asked On: Aug 22nd, 2008

What is the use of the placeholder column? Can placeholder column variable be used as GLobal variable with in the report? Why?

Answered by: Amar on: May 7th, 2012

Place Holder Column Is A Empty Container, It Holds The Value At Run Time. Place Holder Column Should Be Source From Formula Column And Before Report Trigger And Also With After Parameter Form Also.....

Answered by: rajgopalmatti on: Oct 19th, 2011

place holder is nothing but empty column it contains empty data at compilation time,after run the report it can hold the data

What is the meaning of fnd in aol?

Asked By: Interview Candidate | Asked On: Aug 13th, 2005

Answered by: Bonthu Nagi Reddy on: Mar 8th, 2012

FND Stands for Foundation in Application Object Library Module.

Most of the tables in AOL module starts with fnd_XXXX .

Answered by: utpal kumar nayak on: Apr 19th, 2006

The meaning of FND in Oracle Apps or in AOL(Application Object Library) is system name of core application object library and now it is renamed to Application Technology. The application has $FND_TOP which has all the apps related product files

Regards

Utpal Nayak

Program units and attached libraries

Asked By: aruna167 | Asked On: Nov 14th, 2008

Explain what are program units and attached libraries? How do they differ from one another?

Answered by: sowjanya_n on: Jun 9th, 2009

The Difference is Program units are only to the corresponding form or report.
If, you have written that code in attached library, you can use that code in multiple forms or reports - means reusability, where as you cannot reuse a program unit in multiple forms.

Type of Oracle forms

Asked By: syedrafi123 | Asked On: Apr 17th, 2008

Hi all,pls answer the following questions1.What is the difference between call form,new form, & open form?2.Can a report contain more than one template?3.Where will u define GLobal variables in reports?

Answered by: garimella.aditya on: Apr 7th, 2009

Answer to the first Question is :CALL_FORM to run forms in modal mode. The calling form remains inactive till the called form is exited.NEW_FORM to close the calling form, and then invoke the called f...

Answered by: Oracledamu on: Jul 6th, 2008

Hi,

There are two types..

1. Folder Forms

2. Normal Forms

Which directory will you copy your new custom form, what would be its extension ( .Fmb or .Fmx )?

Asked By: Interview Candidate | Asked On: Aug 13th, 2005

Answered by: askme on: Dec 5th, 2008

Why should we copy .fmb and why not .fmx. .fmx is the executable file so we should copy that.

Answered by: ravi kumar on: Jan 10th, 2006

we will copy new custorm form to custom_top/forms.

Extension of that file is .fmb

Which flexfields you have customized?

Asked By: Interview Candidate | Asked On: Aug 13th, 2005

Answered by: askme on: Dec 5th, 2008

A flexfield, is a flexible data field that your organization can customize to your business needs without programming. It is made up of sub–fields, or segments. There are 2 types of flexfields ...

Answered by: ravi kumar on: Jan 10th, 2006

Client can customize Descriptive Flex Fields.

Use of post and commit

Asked By: Sachinsingh01 | Asked On: Jul 11th, 2008

In which circumstances you will use post instead of commit?

Answered by: krishna.jha on: Dec 3rd, 2008

Posting is an event that writes insert update and delete in the form but not commiting these transaction to the data base.
Commit is an event that attempts to make the data in the database identical to data in the form.

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...

Asked By: kumar | Asked On: Mar 16th, 2006

Answered by: reddy81 on: Oct 16th, 2008

Q:1) totally there r 9 layouts available in reports,in that 8 are predefined another 1 is manual layout.1.tabular2.form like3.form letter4.group left5.group above6.mailing lable7.matrix8.matrix with g...

Answered by: pvenkey on: Jun 17th, 2008

1.Web and Paper layout
2.Web layout
3.Paper layout

Please see the question b4 u r going to answer

How I can use srw.Run_report in reports6i?

Asked By: Dhritiman Bishnu | Asked On: Jun 17th, 2006

Answered by: raghavendrajsv on: Aug 4th, 2008

SRW.RUN_REPORT('MonthlyCostsheet.rep PARAMFORM=NO P_BATCH='||''''||:batch_no||''''||' P_COMPANY_CODE ='||''''||:P_COMPANY_CODE||'...

Answered by: arvindsharma on: Sep 7th, 2007

SRW IS A PACKAGE WHICH IS USE IN REPORTS .HERE IS FOLLOWING PROCEDURES WHICH USE WITH SRW PACKAGE.SRW.ADD_DEFINITIONSRW.APPLY_DEFINTIONSRW.BREAKSRW.CONTEXT_FAILURESRW.DO_SQLSRW.DO_SQL_FAILURESRW.GETTE...

What is the process of report customization? How can you customize the suite report, after customizing ?

Asked By: ssunilroyal | Asked On: May 23rd, 2007

Answered by: raman av on: Jun 12th, 2008

step(1): download the report(.rdf)
step(2): open the report in report builder
step(3): do the modifiacation whatever you want.
step(4): save the report and compile.
step(5): place the .rdf into the respctive folder
step(6): run the report as well

What is a lexical parameter in reports 6i

Asked By: kishore | Asked On: May 23rd, 2008

Answered by: mailsudhirn on: Jun 4th, 2008

Lexical parameters are used to substitute multiple values at runtime. It can be used in FROM TABLE NAME and in WHERE clause. Usually the lexical parameters are defined in After Parameter Report or in...

Answered by: poonamyadav on: May 31st, 2008

Lexical Parameter is denoted by a symbol &(Amphersend) and is used in WHERE_CLAUSE.
with the help of this parameter we can pass strings.

What is the anchoring in reports? What is the difference between frame and repeating frame?

Asked By: chiranjeevi reddy | Asked On: Feb 8th, 2006

Answered by: ramanathan_h on: May 29th, 2008

        Anchors are used to determine the vertical and horizontal positioning of a child object relative to its parent.  The end of the anchor with a symbol on ...

Answered by: Chandra K. Ravi on: Aug 31st, 2007

Anchor is used to make fix distance between two objects in Reports Layout.

What is the diffrence between after parameter trigger and before report trigger?

Asked By: agarwal | Asked On: Nov 26th, 2007

Answered by: sateesh.talanki on: Apr 18th, 2008

After parameter Trigger: It will fire after the parameter form is displayed.here we can do validation on parameter values
Before Report Trigger: It will fire before the report is execured and after the query is parsed and date is fetched.

Answered by: Arun.Gopalan on: Feb 28th, 2008

Query which has to be run by the report is parsed at the end of AFTER PARAMATER TRIGGER. Hence values that need to be provided for the bind and lexical variables should be assigned in or before this t...

What is the placeholder column? What is the format trigger?

Asked By: chiranjeevi reddy | Asked On: Feb 8th, 2006

Answered by: jagadeesh9 on: Feb 24th, 2008

Placeholder column is a global variable for which we can set data type and data value.Format Trigger is a PL/SQL function. This trigger is going to fire before an object is printed in report output.it...

Answered by: Denzy on: Feb 14th, 2006

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, dep...

What is the difference between form 5i&6i?

Asked By: elumalai | Asked On: Jul 29th, 2006

Answered by: arif_rahman on: Sep 5th, 2007

Creating Oracle Forms Developer applications using Wizards Working with the enhanced user interface Ensuring consistency across applications Representing data within your application Understanding Ora...

Which is the common trigger in form level, block level, item level?

Asked By: BALA | Asked On: Jan 25th, 2007

Answered by: Neelkanth on: Feb 16th, 2007

When-validate-item,key-next-item ,on-error,on-message etc are the common triggers shared by form , block as well as items

Answered by: saravana on: Feb 3rd, 2007

when new_ form _instance, when new_ block _instance, when new_ item_ instance are most used common trigger

If a report requires two parameter and one parameters list of values depend on another parameter, then how this will be done. What sort of things will be done to value set?

Asked By: Bapi | Asked On: Sep 5th, 2006

Answered by: Guest on: Jan 4th, 2007

hiwe an do ways1)creating independent valueset and based on this we can create dependent valueset .1st can select independent  then only we can chosse dependent value set 2) By usi...

Answered by: Brajesh Singh Bhadoriya on: Dec 21st, 2006

create one value set. This value set will get first parameter. while creating second Value set use ":$FLEX$.<first value set name>" in the condition. for example, I m cr...

Are you familiar with user exits in reports?

Asked By: Interview Candidate | Asked On: Aug 30th, 2005

Answered by: Prakash on: Dec 18th, 2006

we have the following USER EXITS

1.FND SRWINIT

2.FND SRWEXIT

3.FND FLEXIDVAL

4.FND FORMAT_CURRENCY

5.FND FLEXSQL

Answered by: vivek on: Nov 8th, 2006

User exits are used to set profile options and are actually usedto pass the control from 4gl to 3 gl language to do complexcalculations for ex from Oracle reports to outside and return backto reports....

How do you debug an Oracle application report developed using reports 6i.

Asked By: Interview Candidate | Asked On: Aug 13th, 2005

Answered by: Prasad PNSD on: Sep 29th, 2006

using SRW.Message

How to make the project as .Exe file in Oracle forms & reports(d2k)?

Asked By: srikanth | Asked On: Dec 30th, 2005

Answered by: vikram sagar on: Sep 27th, 2006

u can make .exe file for ur project..i've given a solution for this in this forum..u can check it out and try it...

thanx..

vikram sagar

Answered by: Ravi Kumar on: Jan 10th, 2006

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 & Repo...

First | Prev | | Next | Last Page

 

 

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Career Counselling

 Have Career Question?

 Ask Chandra

 Ask Only Career questions.

Follow us:
 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, click "Subscribe".