Multiple layout reports [message #129881] |
Wed, 27 July 2005 02:55 |
mhkraju
Messages: 14 Registered: April 2005 Location: Hyderabad
|
Junior Member |
|
|
hi,
i want a report in the following style............
there are four parameters 1 , 2 , 3 , 4.
for each and every parameter the output should be different i.e., it should be a multiple layout report depending upon the parameters.
please give me solution as early as possible
it is very urgent...................
|
|
|
Re: Multiple layout reports [message #130500 is a reply to message #129881] |
Sun, 31 July 2005 14:56 |
oraclejo
Messages: 50 Registered: July 2005 Location: Ammar
|
Member |
|
|
easy
Draw the different layouts
Then use formatting trigger on each frame of the layout
for example, wirte the following on a format trigger
if :p1=1 then
return true;
else
return false;
end if;
When false is return by a frame formatting trigger, the frame will be suppressed and therefore, everything inside will be suppressed as well
ammar sajdi
www.e-ammar.com
Jordan
|
|
|