Search This Blog

Monday, January 8, 2024

Go to the Previous Page on the Back Button Oracle Apex

Step 1:  Create two application items. 




Step 2: Create an application process like below

IF :AI_CURRENT_PAGE <> :APP_PAGE_ID  

THEN  
:AI_PREVIOUS_PAGE:=:AI_CURRENT_PAGE;  
END IF; 

:AI_CURRENT_PAGE:=:APP_PAGE_ID;





Step 3: Put the    &AI_PREVIOUS_PAGE.    item into the Back Button target page.



 

No comments:

Post a Comment

Create a Form Using Python for Save Data into Excel like a Database

#Download Pyhton from here https://www.python.org/downloads/  #Download Python: #Click the “Download Python 3.x.x” button (the latest versio...