2010 Jul 13 10:23 AM
Hi Expert ,
Could you please help me to explain the purpose of PBO and PAI and which case using PBO and PAI ?
Please help.
Thanks in Advance,
Karen.
Edited by: abaper1712 on Jul 13, 2010 11:26 AM
2010 Jul 13 11:09 AM
Hello Karen,
This is a forum for Webdynpro ABAP, which is the new User Interface Technology.
You could rather post your question in [UI Progammimg forum|; or ABAP General.
Just to give you an idea what are PBO and PAI
PBO : Process before Output, here you write code which is executed before the screen is rendered in dynpros.we have similar concept in webdynpro as well and that too with more flexibilty.
PAI : Process After Input, here you write code which is executed after the end user enters the input on a screen.
Here also we have more flexibilty with webdynrpo ABAP.
Regards
Anurag Chopra
2010 Jul 13 11:33 AM
hello,
There are two ways of calling a screen. You can either use a transaction code, or the CALL SCREEN statement in an ABAP program. When you call a screen, the PROCESS BEFORE OUTPUTevent (PBO) is called, and the corresponding event block in the screen flow logic is processed. The screen itself is then displayed until the user triggers the PROCESS AFTER INPUT(PAI) event by choosing a function. In between, there may be field or input help processing. The corresponding event blocks in the flow logic are processed, if they exist. The main purpose of event blocks in the screen flow logic is to call dialog modules in the ABAP program and to provide the ABAP program with data.
Thanks and Regards
Himani Singh
2010 Jul 13 1:58 PM
2010 Jul 13 2:34 PM
And in ABAP development it is a basic question that you can research yourself quite easily.
Thread locked.
Thomas