Hello
My application has a custom authentication scheme.
I am trying to configure a procedure that forces the first's time users to change their password after login.
Starting to code this procedure I have created a procedure just to redirect to the new_password_page, with ID 10 but I get this error:

I am trying to use the function apex_util.redirect_url but I can't seem to get it to work.
Here is my PLSQL code:
create or replace procedure "CHECK_NEW_LOGIN"
as
begin
apex_util.redirect_url (
p_url => 'f?p=&APP_ID.:10:&SESSION.'
);
end "CHECK_NEW_LOGIN";
/
This procedure is also defined in the Shared Components:

I appreciate it if anyone could guide me in the right direction.
PS: I also tried enabling and disabling the DEEP LINK option but the error appears on both options.