what is latest version in reports
Answers were Sorted based on User's Feedback
Answer / sarathx
If U dont know correct answer keep observing dont give
false information and correct answer is oracle reports 10G
release 2
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / nitesh srivastava
Yeah,Exactly We should not give wrong Answer to any one.
The latest version is Reports 10g Realease 2.0
| Is This Answer Correct ? | 4 Yes | 0 No |
What is a combo box?
What is a list item?
When will ON-VALIDATE-FIELD trigger executed ?
how to pass 2 parameters from one form to other in oracle applications?
What is difference between open_form and call_form?
what is sequence of execution of following triggers 1.when-validate-item 2.post-change 3.key-next-item 4.post-text-item
What is the difference between a Function Key Trigger and Key Function Trigger ?
what are the oracle forms services components include?
What are the two ways to incorporate images into a oracle forms application?
List the built-in routines for the controlling canvas views during run-time?
What is the difference between Anchoring Object and Enclosing Objects ?
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;