I wrote a custom pl sql function for authorization. I know that my function is called by Apex authorization. But I need to debug what happens inside my authz function.
I successfully used wwv_flow.debug () before debugging the ajax calls that I made to store procs. I could see my messages in the apex debug window.
But when debugging my authorization function, I cannot see my debugging messages. I am trying to use wwv_flow.debug () and apex_debug.message ()
This leads me to two questions:
Thank.
UPDATE: it turns out that my messages did not appear because authorization was cached and my pl / sql code was not called, so I solved issue # 2. And I see both my wwv_flow.debug () and apex_debug.messages (). Question number 1 is still standing.
source
share