Skip to content

Calling logger.log in Oracle Forms

Peng Sun edited this page Jan 19, 2017 · 1 revision

When calling logger.log('test') from Oracle Forms, there'll ne compiling error: Can not directly access remote package variable or cursor

It possible to call the functions of logger package from Oracle Forms, using the code like:

DECLARE l_params logger.tab_param; BEGIN logger.LOG (p_text => 'Log from Oracle Forms', p_scope => 'testForm', p_extra => NULL, p_params => l_params); END;

Clone this wiki locally