How many pages you can in a single form ?
What is the use of Validation triggers in Reports?
What are the two phases of block coordination?
What is the difference between system.current_field and system.cursor_field ?
in reports 1og.if we enter a query in list of values then parameter form displays a dropdown.in that if any ething is selected then that will display in the report.supp if i am not selected any value then it should display all the values.how it is possible?can any one help me........
Is the After report trigger fired if the report execution fails?
What are the built_ins used the display the LOV?
in before report trigger SRW.user_exit(FND_Userinit) what will do
If a break order is set on a column would it effect columns which are under the column?
What is the basic data structure that is required for creating an LOV?
Name of the functions used to get/set canvas properties?
List the Types of Items?
Please tell me what is wrong in the below query: (Very Urgent) ================================================= function BeforePForm return boolean is begin if :from_invoice_date is null OR :to_invoice_date is null then aiv.PERIOD_NMAE:=:gl_period elsif :gl_period is null then aiv.INVOICE_DATE between :from_invoice_date and :to_invoice_date end if; return (TRUE); end;