Top Forms Reports Interview Questions :: ALLInterview.com http://www.allinterview.com Top Forms Reports Interview Questions en-us What are the type of triggers available in Oracle Reports ? http://www.allinterview.com/showanswers/28716.html There are five types of trigger in Oracle Reports Before Parameter Form Fires before the Runtime Parameter Form are displayed. Can access the PL/SQL global variables, report level columns and manipulate accordingly. After Parameter Form How to create LOV in Oracle forms? http://www.allinterview.com/showanswers/36382.html Click the LOV icon in the object navigator and choose ur option of a manual or wizard . A record group will be authomatically created depending on the LOV. How the Action Trigger works? and what is full syntex of srw.run_rep http://www.allinterview.com/showanswers/60496.html Action Triggers are pl/sql procedure executed when select a button in the Reports previewer. It is mainly used to call another report. Srw.Run_report(Command_line char) It executes the specified R25RUN. What is user exit.? http://www.allinterview.com/showanswers/28732.html As i know This is one of the program which will transfer the data into third generation language and get some information,complete reamain execution process What is a difference between pre-select and pre-query? http://www.allinterview.com/showanswers/8007.html Fires during the execute query and count query processing after oracle forms constructs the select statement to be issued, but before the statement is actually issued. The pre-query trigger fires just before oracle forms iss How do you call other Oracle Products from Oracle Forms? http://www.allinterview.com/showanswers/7960.html Run_product is a built-in, Used to invoke one of the supported oracle tools products and specifies the name of the document or module to be run. If the called product is unavailable at the time of the call, Oracle Forms returns a message to the o what are different types of canvas views? http://www.allinterview.com/showanswers/3428.html There are three types of canvas views:- 1.Stacked Canvas Views 2.Content Canvas Views 3.Horizontal/Vertical Toolbar Canvas Views What is difference between open_form and call_form? http://www.allinterview.com/showanswers/7998.html Open form openes a new form call_form call an existing form in before report trigger SRW.user_exit(FND_Userinit) what will do http://www.allinterview.com/showanswers/27684.html jit will retrieve all user details. How to call Report from other Report ? http://www.allinterview.com/showanswers/23702.html We can use the following code on the when_button_pressed trgger of the button taken on the report layout. SRW.RUN_REPORT SRW.RUN_REPORT executes the specified R25RUN command. Type: Procedure Syntax: SRW.RUN_REPORT (command_line how to eliminate duplictes in column except group and section? http://www.allinterview.com/showanswers/59713.html delete from tablename a where rowid not in(select max(rowid) from tablename b where a.rowid=b.rowid) When to use Place holder columns in Oracle Reports and what is a pla http://www.allinterview.com/showanswers/69367.html place holder colum's are used to strore the value of the varibale. what is integrity n how many integrity rules r there? http://www.allinterview.com/showanswers/28729.html integrity means which doesn't allow duplication of files. we have 3 types of integrity rules. 1. Entity Integrity Rule : In this Primary key can't be null. 2. Referential Integrity : It tells the relation be what are difference between post database commit and post-form commit http://www.allinterview.com/showanswers/8006.html Post-form commit fires once during the post and commit transactions process, after the database commit occures. The post-form-commit trigger fires after inserts,updates and deletes have been posted to the database but before the how do u call a report from form http://www.allinterview.com/showanswers/27680.html by using RUN_PRODUCT build-in