|
start_log function |
|
Contained in package wwlog_api. Call this function to initialize a log entry and return its record ID. Note: The elapsed time for an action being logged is the difference (to 1/100 of a second) between the time that this method is called and the time that wwlog_api.stop_log is called. function start_log (
) return integer; |
|
|
Any user can use the start_log function. |
|
Version: Oracle Portal 3.0.6.6.5 or later | |
|
Parameters: |
|
|
p_domain |
The domain of the object being logged. Datatype: in varchar2 |
|
p_subdomain |
The subdomain of the object being logged. Datatype: in varchar2 |
|
p_name |
The name of the instance of the object against which the event is logged. Note: An name can be, but is not required to be, a non-translatable string value. Datatype: in varchar2 |
|
p_action |
The name of the action being performed on the object. A value for this string must be provided. Note:This parameter is a non-translatable string value.
Datatype: in
varchar2 |
|
p_information |
A comment string that can be included in the logging record. Note: This is an optional parameter.
Datatype: in varchar2 |
|
p_url |
A URL string used to redirect the browser back to the object that was logged.
Datatype: in varchar2 |
|
p_deferred |
Indicates whether the database record should be created by the start_log, or the stop_log call.
Datatype:
boolean |
|
p_key_1 |
A discretionary value for key_1.
Datatype:
in varchar2 |
|
p_key_2 |
A discretionary value for key_2.
Datatype:
in varchar2 |
|
p_key_3 |
A discretionary value for key_3.
Datatype:
in varchar2 |
|
p_key_4 |
A discretionary value for key_4.
Datatype:
in varchar2 |
|
p_key_5 |
A discretionary value for key_5.
Datatype:
in varchar2 |
|
Returns: This function returns the ID for the log entry that it starts if p_deferred is TRUE. Exceptions:
Example: l_logid := wwlog_api.start_log (
); |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |