Hi All,
I am facing a session state issue in Oracle APEX when opening the same page in multiple browser tabs.
Scenario:
- I have a page (say Page 1) which displays a list of users.
- Each user title is a link that redirects to Page 2(User Profile Page).
- The link passes
P2_USER_ID.
What I Do:
- I press Ctrl + Click on multiple users.
- This opens multiple tabs:
- Tab 1 → User ID = 1001
- Tab 2 → User ID = 1015
- Tab 3 → User ID = 1020
- Now in Tab 3 (User 1020) I click a Submit button.
- The page submits.
Problem:
After submitting in Tab 3:
- When I go back to Tab 1, it no longer shows User 1001.
- Instead, it shows User 1020 (the last submitted user).
So the first tab gets replaced with the last opened/submitted user.
Expected Behavior:
Each tab should maintain its own P2_USER_ID, and submitting in one tab should not affect other open tabs.