|
|
|
Re: How can Pass more variable in Column Link [message #377865 is a reply to message #377812] |
Thu, 25 December 2008 23:59 |
dr.s.raghunathan
Messages: 540 Registered: February 2008
|
Senior Member |
|
|
is it not possible to write some process in before page header and using n number of columns parameter.
In many of the application packages, conveniently every one used three column link only. ofcourse i do not know why. further concatenating columns we shall be able solve. But in apex 3.1.2 concatenation is not getting permitted while passing the parameter link. For me it is a mistery too.
yours
dr.s.raghunathan
|
|
|
Re: How can Pass more variable in Column Link [message #377888 is a reply to message #377865] |
Fri, 26 December 2008 01:54 |
kinghow
Messages: 13 Registered: December 2008
|
Junior Member |
|
|
In BI report,many level report is statistic view,can not pass the primary key.
drillthrough more level to untill get detail data,must pass many dimensions column.
The app is developer begin 1.6,run on 2.0,recently need add some function,so rise to 3.1.2, I'm very disappointed Column Link is still 3 items.I wish next vesion it can be add by userself.
|
|
|
Re: How can Pass more variable in Column Link [message #379397 is a reply to message #377812] |
Tue, 06 January 2009 05:36 |
c_stenersen
Messages: 255 Registered: August 2007
|
Senior Member |
|
|
What you could do is disable the link, and write it in manually in the HTML expression field in the column attributes.
E.g. You have a table called mytable with the columns col1, col2, col3 and col4. If your report code is then
select col1, col2, col3, col4 from mytable
You can give in something like this in the column where you want your link (this is if you want to link to page 2)
<a href="f?p=&APP_ID.:2:&APP_SESSION.::&DEBUG.::ITEM1,ITEM2,ITEM3,ITEM4:#COL1#,#COL2#,#COL3#,#COL4#">Link text</a>
The fields with hash signs around them are the names of the columns which you want to pass to the page you're linking to from the report. And if you want the link to display the value of column 1 you could just replace "Link text" with #COL1#
|
|
|
|
|