Oracle9iAS Portal Developer Kit

update_log_information procedure

Contained in package wwlog_api.

Call this procedure to update the log table 'information' column for an event record saved in the database.

prcedure update_log_information

(

p_id in integer,

p_information in varchar2

);

Any user can use the update_log_information procedure.

Version: Oracle Portal 3.0.6.6.5 or later

Parameters:

p_id

Passes the ID of the log entry to modify.

Datatype: in integer

p_information

Passes the new value for the log table information column.

Datatype: in varchar2

Exceptions:

If the log cannot be updated, a CANNOT_UPDATE_LOG_EXCEPTION is raised.

Example:

wwlog_api.update_log_information

(

p_id => l_logid,

p_information => 'New data for information column'

);

Related topics

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