HI,
I have a custom error notification with raise e_error but I can't implement a link to send an APEX page I tried with <a href=""></a> tags and this is my code:
apex_util.set_session_state('P14_ERROR_MSG', 'You don't have licenses yet, please contact the maintainer.<a href="https://www.w3schools.com">Create licenses</a>');
raise e_error;
Note: I put the "www.w3schools.com" one because I don't know how to redirect in my own APEX application and if you can explain to me how I can create a link to another page of my APEX.
Thanks.