Oracle9iAS Portal Developer Kit

customize procedure

Contained in package wwa_app_module.

Call this procedure to display the customization screen for a form component.

procedure customize
(
    p_module_id in integer,
    p_back_page_url in varchar2 default null,
    p_page_url in varchar2 default null,
    p_exec_mode in varchar2 default wwv_global.RUN_AS_NORMAL,
    p_reference_path in varchar2 default null,
    p_provider_id in integer default null
);

Version:Oracle Portal 3.0.9

Parameters:

p_module_id

The module ID of the form component

Datatype: integer

p_back_page_url

The URL (encoded) to display when clicking on the OK or Cancel button

Datatype: varchar2
Default: null

p_page_url

Not currently used.

p_exec_mode

Indicates the display mode:

  • Full page mode (wwv_global.RUN_AS_NORMAL)
  • Portlet mode (wwv_global.RUN_AS_PORTLET)

Datatype: varchar2
Default: wwv_global.RUN_AS_NORMAL

p_reference_path

(In portlet mode only). The reference path of the portlet.

Datatype: varchar2
Default: null

p_provider_id

The ID of the provider to which the form component belongs.

Datatype: varchar2
Default: null

Exceptions:

None.

Example:

Consider the procedure helloworld in the PORTAL SCHEMA that prints "Hello World".
To display this message when you click the Cancel button or OK button, call the customize procedure as follows:

customize
(

p_module_id => <module_id>,
p_back_page_url => '<portal_schema>.helloworld'

);

Note: You need to grant the execute privilege to the helloworld procedure to <portal_schema>_public database user.

Related topics

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