2005 Feb 22 9:20 AM
Hi everybody
Can someone help whit this question?
From where are popup screens called?
PBO
PAI
// Script
2005 Feb 22 9:27 AM
Hi,
there is no rule for it. You can do it at PBO as well as at PAI. But normally you do your data check at PAI and you should call/raise POPUP's at this event.
regards
Siggi
2005 Feb 22 9:28 AM
Hi,
Technically, they can be called from anywhere. But I guess, In general, it makes sense to call them from PBO.
Regards,
Anand Mandalika.
P.S. : As and when you get the satisfactory answers, please close the thread by marking it as <i>solved</i>. And don't forget to reward the correct answers.
2005 Feb 22 9:35 AM
Thanks for your help, but can you guys get along for what I should choice. I can only choice one.
// script
2005 Feb 22 9:44 AM
Hi,
Could you please describe your situation and then perhaps someone can point out whats good in your case.
Regards
2005 Feb 22 9:48 AM
Shehryar Khan I know it is not much, but that was all of the text I got in my last certification. I am now going again, because I got 69% 70 it required to pass, I was hopeing that I could pass the next time. If the right answer is in both PAI and PBO. Then that is the answer. And then I will see if I remember wrong, and I could click both.
// Script
2005 Feb 22 10:36 AM
Hi,
Thats a very narrow margin....all the best for your certification! I am sure u will do it this time.
Regards
ps: take a look at /thread/16548 [original link is broken] see it it helps.
2005 Feb 22 2:22 PM
I agree that you can technically call a popup screen, also known as a modul dialog box, from anywhere. Usually you would present a popup in response to something that happened on a screen. A typical example is exiting a screen without saving. When you hit the exit button, a popup window is presented, asking you to confirm that you want to exit without saving.
Since you are most often responding to an action on a screen, it makes most sense to call the popup in the PAI of the screen where the action occurs. If you code in PBO, you will be displaying a popup before the screen that owns the PBO. I suppose there may be some cases where this makes logical sense but most of the time you are reponding to some action and PAI is the best choice.