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