Application Development and Automation 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: 
Read only

module pool programming

Former Member
0 Likes
718

Hi,

In module pool programming which event triggers first PBO or PAI.

I am getting confusion on this.

thanks,

satish

7 REPLIES 7
Read only

Former Member
0 Likes
681

Hi,

The events triggers as follows:

PBO First

PAI Second

PBO First

Regards

Kannaiah

Read only

Former Member
0 Likes
681

once tcode is executed PBO will be executed just before the screen output.

after you fill in values and execute again it takes input values and PAI is executed next PBO and then next screen.

Cycle goes on this way.

TCODE->PBO->screen1->PAI->PBO->screen2->PAI->PBO->screen3.

Read only

Former Member
0 Likes
681

Hi,

In case of module its always PBO that gets trigger first and then PAI.

That the reason why its call PBO which stands for Process Before Output and PAI -> Process After Input

Reward Points If useful

Read only

Former Member
0 Likes
681

hi,

On executing the transaction PBO is triggered and we see the screen.

Once a user action is initiated in the screen PAI is trigerred and the ok code is populated with the function code.

Thanks,

Kasiraman R

Read only

Former Member
0 Likes
681

Hi Satish,

Sequence is as follows:

PAI

PBO

Read only

Former Member
0 Likes
681

Hi,

PBO triggers first then PAI.

then again PBO..pai..

PBO-process before output-is triggered before displaying the screen.it transfers the dta from program to screen..

PAI-Process after input-is triggered after the user interacts with screen.it transfers data from the screen to program.

Read only

Former Member
0 Likes
681

Hi,

PBO triggers first then PAI.

then again PBO..pai..

PBO-process before output-is triggered before displaying the screen.it transfers the dta from program to screen..

PAI-Process after input-is triggered after the user interacts with screen.it transfers data from the screen to program.