Skip to Main Content

Developer Community

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!

The calling page is refreshed every time when I click on OK button in the Dialog Page - OAF CO Extension

Hi

I am trying to show a pop-up message from iExpense Allocations Page when user search for the Award value. The Dialog page is showing up successfully, but every time when I click on the OK button from Dialog Page the calling page is refresh where the entered data are deleted.

Below is the code I used in ProcessForm Request, Please suggest me a good way to keep the data in Calling page untouched when navigating from the Dialog page.

                            String msg1;  
                           msg1 = AwardNumber;  
                           OAException message = new OAException(msg1);  
                           OADialogPage dialogPage = new OADialogPage(OAException.WARNING, message, null,"",null);  
                           dialogPage.setOkButtonItemName("OKButton");  
                           dialogPage.setOkButtonToPost(true);  
                           dialogPage.setOkButtonLabel("Ok");  
                           dialogPage.setPostToCallingPage(true);  
                           pageContext.redirectToDialogPage(dialogPage);

Thanks,

Kesavan

Comments
Post Details
Added on Aug 7 2025
0 comments
86 views