Oracle9iAS Portal Developer Kit

remove_log_event procedure

Contained in package wwlog_api_admin.

Call this method to remove a record from the wwlog_event$ table.

procedure remove_log_event

(

p_domain in varchar2,

p_subdomain in varchar2,

p_action in varchar2

);

Users must have at least the Any Log Edit privilege to remove a log event.

Version: Oracle Portal 3.0.6.6.5 or later

Parameters:

 p_domain

The name of the domain that contains record to be removed.

Datatype: in varchar2

p_subdomain

The name of the subdomain of the record to be removed.

Datatype: in varchar2

p_action

The name of the action performed.

Datatype: in varchar2

Exceptions:

When no matching log event record is found, LOG_EVENT_NOT_FOUND exception is raised.

Example:

wwlog_api_admin.remove_log_event

(

p_domain => 'Research&Development',

p_subdomain => 'Expenses',

p_action => 'view'

);

Related topics

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