|
show_html procedure |
|
Contained in package wwerr_api_error_ui. Call this procedure to show the error stack in full screen HTML format. It is an alternative to the show method with the CONTENT_TYPE_HTML parameter value assumed. This procedure should be called by functions that are explicitly handling the exception and producing a UI from it. Note: By default, the HTML error UI contains a Back button to navigate to the previous page. If any of the p_text_n arguments are not null, they are displayed instead of the Back button. This allows for customized error dialogs. procedure show_html (
); |
|
Version: Oracle Portal 3.0.6.6.5 or later | |
|
Parameters: |
|
|
p_help_url |
A string URL for the Help page, if one is available. Note: A null value indicates that no Help page is available and no help icon is displayed.
Datatype: varchar2 |
|
p_text1 |
A text string to print next to the first URL.
Datatype: in
varchar2 |
|
p_url1 |
The URL referred to in p_text1.
Datatype:
in varchar2 |
|
p_text2 |
A string to print next to the second URL.
Datatype:
in varchar2 |
|
p_url2 |
The URL referred to in p_text2.
Datatype:
in varchar2 |
|
p_text3 |
A string to print next to the third URL.
Datatype:
in varchar2 |
|
p_url3 |
The URL referred to in p_text3.
Datatype:
in varchar2 |
|
Exceptions: This procedure raises no user-defined exceptions. Example: In this example, two URLs with accompanying text are provided, and the parameters p_text3 and p_url3 are null. wwerr_api_error_ui.show_html (
); |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |