|
Sybernet / Supplied Procedures Reference
Release 3.00 Oct 14, 2002 |
|
This procedure is used to display the Help Text that you created with SP_HTML_HELPTEXT. While that procedure allows you to document your stored procedure or application, this procedure allows you to display it. Normally, Help Text is displayed when your users click the Instructions button.
Procedure SP_HTML_HELPTEXT_SHOW
(
ROW_ID VARCHAR2
) ;
| Parameter | Description |
|---|---|
row_id |
The unique string that identifies your stored procedure or application.
ROW_ID is a misnomer since this is a string and the usual convention is to use the fully qualified name of your stored procedure as this key. |
The following example illustrates how to call sp_html_helptext_show:
http.sp_html_helptext_show('Welcome');