How to add custom column in tabular form?

筅森魡賤 提交于 2019-12-02 10:08:41

To add custom column:

Go to "Region Definition" -> "Source", add new column to SQL query there. For example:

select col1, -- column of table
       col2, -- column of table
       'some text' custom_column -- custom column that will contain text "some text" 
                                 -- in every row
from my_table

Go to "Report Attributes", select column with name "Custom column" and click the "Edit" button (pencil picture), then go to "Column link" and fill fields:

  • Link text - text to display, you can write your own static text, text from any column of query or picture
  • Target - page in application or link to any outer site
  • Page - number of your target page
  • Item - item on target page that will receive value from your link
  • Value - value, that you will send to that item. It can be either static value or value of any column of query (in this case use substitution string: "#" symbol and column name: #column_name#).

See documentation for understanding APEX URL syntax: http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35125/concept_url.htm

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!