Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Deal with ERR-7620 Could not determine workspace for application ().?

Ges_UserMay 8 2024

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.

This post has been answered by alacourb on May 8 2024
Jump to Answer
Comments
Post Details
Added on May 8 2024
2 comments
492 views