List some built-in routines used to manipulate images in
image_item?
Answer / guest
Image_add
Image_and
Image_subtract
Image_xor
Image_zoom
| Is This Answer Correct ? | 2 Yes | 0 No |
Give built-in routine related to a record groups?
When does an on-lock trigger fire ?
What are the Built-ins used for sending Parameters to forms?
Can a formula column refered to columns in higher group?
based on parameter value layout of report should change
Two popup pages can appear on the screen at a time ?
i want print character reports in 10g application reports pl help me my id is yoga.roh@gmail.com
How do you control the constraints in forms ?
There are Two pl/sql Libraries Lib1,Lib2 are attached to a form and these two libraries contains functions with same name fun1 (i,e lib1 have a function fun1 and lib2 also have a function fun1).how to call these functios from forms?
i want to print the employee details on department wise with group above report with the fields DEPTNO------group above ENAME ------ SAL-------- COMM------ I WANT OUTPUT LIKE THIS ---------------------------------------------------------- 1)FIRST DEPTNO=10 EMPLOYEES DISPLAYED IN FIRST PAGE AND DEPTNO=20 EMPLOYEES DISPLAYED IN 2ND PAGE WHAT I HAVE TO DO OUTPUT ------- --FIRST_PAGE ----------- DEPTNO:10 ENAME SAL COMM KING 5000 A 2000 2222 ---- =- -- SECONDPAGE DEPTNO:20 ENAME SAL COMM MILLER 220 22 D 45 23 -- - - LIKE THE ABOVE PROCDURE REPORTS HOW MANY DEPARTMENTS ARE EXISITING IN EMP TABLE
List the different types of columns in oracle reports.
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;