Oracle9iAS Portal Developer Kit

show procedure

Contained in package wwa_app_module.

Call this procedure to display a form component.

The session ID can be obtained from the HTML source of the form component, i.e. it appears as a hidden variable named p_session_id.

When a form component is run in full page mode, the session ID can be obtained from the browser, where the URL format would be:

http://HOST:PORT/pls/DAD/PORTAL_SCHEMA.wwa_app_module.show?p_sessionid=341

procedure show
(
    p_sessionid in number default null,
    p_regionid in number default null,
    p_portletid in number default null
);

Version: Oracle Portal 3.0.9

Parameters:

p_sessionid

The ID of the session.

The ID is created by either the new_instance or show_portlet procedures.This form component session can only be accessed from the Oracle Portal session that created it. It cannot be shared amongst other Portal sessions.

Datatype: number
Default: null

p_regionid

Not currently used.

p_portletid

Not currently used.

Exceptions:

  • None

Example:

Consider a form component with session ID 341. There are two ways to display this form component, by either:

  • Calling the procedure:

    <portal_schema>.wwa_app_module.show(p_sessionid => 341);

  • Entering the following URL in a browser:

    http://HOST:PORT/pls/DAD/PORTAL_SCHEMA.wwa_app_module.show?p_sessionid=341

Related topics

The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio