We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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;