|
|
|
|
|
|
initSmall for a column header [message #323076 is a reply to message #322181] |
Tue, 27 May 2008 04:30 |
benseer
Messages: 22 Registered: October 2005 Location: Bangalore
|
Junior Member |
|
|
Hi Andrew,
Strangly all method not working for me..
I have tried Column,Custom & PL/SQL method to make it initSmall. The header is a part of Tabular form built on a direct SQL query
like
Select empno "Emp ID", ebuy "eBuy",f_getPercent(sal) "Hike" from emp;
Here "eBuy" is diplaying as EBuy..
|
|
|
|
Re: initSmall for a column header [message #333202 is a reply to message #323529] |
Thu, 10 July 2008 16:52 |
gungalagunga
Messages: 3 Registered: July 2008
|
Junior Member |
|
|
Create a hidden variable, say P10_Col_1.
Then in an onload after header process, assign Co1_1 a value, like:
begin
:P10_Col_1 := 'mY Nam3';
end;
In the report definition, set the "custom" heading to &P10_COL_1.
That should do it.
|
|
|