Book Image

Oracle APEX Cookbook : Second Edition

Book Image

Oracle APEX Cookbook : Second Edition

Overview of this book

Table of Contents (21 chapters)
Oracle APEX Cookbook Second Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Creating help functionality with apex_application.help


To support a user-friendly interface, applications can be enhanced with a help functionality. In APEX, you can easily build a context sensitive help. You can place a help link in the navigation bar so that it is available on every page in the application.

Getting ready

Make sure you have an existing application with some pages where you can show some help.

How to do it...

First, let's create the help page.

  1. In the Application Builder, click on the Create Page button.

  2. Select Blank page.

  3. Enter a page number and an alias. Click on Next.

  4. Enter a name for the help page. Click on Next.

  5. Select No tabs and click on Next.

  6. Click on Finish.

    The page has now been created. Click on the Edit page icon to continue.

  7. In the Regions section, click on the Add icon.

  8. Select PL/SQL Dynamic content.

  9. Enter a title. Click on Next.

  10. In the PL/SQL source text area, enter the following code:

    APEX_APPLICATION.HELP(
    p_flow_id => :APP_ID,
    p_flow_step_id => :REQUEST,
    p_before_region_html...