How I display a pop-up dialog box with 2 buttons ( Yes or Not ) ?
I want to use some similar to: %MsgStyle_YesNo but in tthe same window i dont want that the message display in a separate window.
REM MessageBox(style, title, message_set, message_num, default_txt [, paramlist]);
&AnswerYesNo = MessageBox(%MsgStyle_YesNo, "", 21, 27, "Are you sure to delete this data "); REM Return 6 is Yes and returns 7 its that the botton No was selected ;
If &AnswerYesNo = 6 Then
MessageBox(0, "", 0, 0, "The procedure to eliminate from DB begin... "); &MiSQL = CreateSQL("Delete from %Table(:1) where Condition =: 1", &Condition);
End-If;
Note: Is on PeopleSoft Pure Internet Architecture
Title | Under | Posted on |
---|---|---|
Component interface Error: no rows exist for the specified keys | PeopleSoft Technical | 03/15/2019 - 3:54am |
ADD 24 months starting from current month.(peoplesoft) | PeopleSoft Functional | 07/29/2018 - 8:44pm |
TRC values dropdown | PeopleSoft Technical | 04/04/2018 - 12:54am |
how to find missing sequence in GRID and print the mising sequence number while saving through peoplecode | PeopleSoft Technical | 09/11/2017 - 4:49am |
I know WinMessage does display that on a page BUT PeopleSoft doesn't recommend using WinMessage. It has been replaced by MessageBox.
Give back to the community and help it grow!
* Help with unanswered forum questions and issues
* Register or login to share your knowledge at your own blog
what is the issue here?
Yes, I'm using MessageBox, but it not work... display on other page like modal... And i want that in the SAME WINDOW display the box...
I want to simulate something like the same windows popup when you delete a row on a grid... I dont want that the page reload...