Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

From where are popup screens called

Former Member
0 Kudos
131

Hi everybody

Can someone help whit this question?

From where are popup screens called?

PBO

PAI

// Script

7 REPLIES 7

Former Member
0 Kudos
82

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

Former Member
0 Kudos
82

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.

Former Member
0 Kudos
82

Thanks for your help, but can you guys get along for what I should choice. I can only choice one.

// script

0 Kudos
82

Hi,

Could you please describe your situation and then perhaps someone can point out whats good in your case.

Regards

Former Member
0 Kudos
82

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

0 Kudos
82

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.

Former Member
0 Kudos
82

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.