A script-enabled browser is required for this page to function properly.

Bookmark property

The Bookmark property specifies a Web link that will appear in a bookmark frame of the master HTML document or in the bookmark area of the PDF viewer. Clicking on the bookmark displays the associated object at the top of the window.

Applies to

Layout objects 

Values

A text string with no indentation/ordering information. The bookmark will appear in the bookmark list according to when the object is rendered by the report.

A text string with explicit ordering/indentation of the form x#book_mark_name, where x is an outline number. The pound sign (#) and outline number do not appear in the bookmark window but are used to determine order and indentation.

Default

Blank

Required/Optional

Optional

PL/SQL procedure

SRW.SET_BOOKMARK

Restrictions

Usage notes

Examples

Example 1: Static bookmark string

Following is an example of a value for the Bookmark property to create a bookmark string of "EXPENSE SUMMARY":

EXPENSE SUMMARY

Example 2: Dynamic bookmark string

Following is an example of a value for the Bookmark property to create a bookmark string dynamically:

:CATEGORY || ' EXPENSES'

where :CATEGORY is a column value retrieved from the database at runtime.

Example 3:Bookmark with indentation/ordering

1#Expense Summary Section 
2#Expense Detail Section
2.1#Expenses for the Administration Department
2.2#Expenses for the Engineering Department
2.3#Expenses for the Sales Department
2.3.1#Expenses for the Eastern Sales Region
2.3.2#Expenses for the Northern Sales Region
2.3.3#Expenses for the Southern Sales Region
2.3.4#Expenses for the Western Sales Region

Example 4: Ordered bookmark list

Following is an example of a value for the Bookmark property to explicitly order the list of bookmarks. For example, to order a bookmark entry as the first item in the bookmark list: Note:The number and # do not display in the bookmark area.

1#EXPENSE SUMMARY

Example 5:Ordered bookmark list, indented

Following is an example of a value for the Bookmark property to explicitly order and indent the list of bookmarks. For example, to indent a bookmark entry under the first item in the bookmark list: Note:The number and # do not display in the bookmark area.

'1.1#':CATEGORY || ' EXPENSES'