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: 

what is PAI event description

Former Member
0 Kudos

hi

what is PAI event description

8 REPLIES 8

Former Member
0 Kudos

hi,

PAI:

This event is responsible for processing of screen after the user enters the data and clicks the pushbutton.

Function code plays an important role in this operation.

Former Member
0 Kudos

Hi,

PAI - Process After Input : This process gets triggered with the user interaction. It means when the user clicks on some button then this module gets triggered.

check this link

http://help.sap.com/saphelp_47x200/helpdata/en/47/e07f622b9911d2954f0000e8353423/content.htm

Regards,

Priyanka.

Former Member
0 Kudos

Hi,

It is nothing but input given by user after entering values on screen and

it will be processed in PAI event.

You can validate the screen input and if error is thrre through PBO event you can show.

Also it is used to process entered data.

Reward if useful!

Former Member
0 Kudos

Hi,

It is Process after input.

It is triggered after the user enters some values in the scree.

Reward if helful.

Regards,

Umasankar.

Former Member
0 Kudos

Hi

It's the procces is triggerd as soon as the user take a decision, press a command: press a pushbutton or a key of keyboard.

So here it need to place all ABAP code in order of the funcional code (ok_code) assigned to the command pressed by user.

Max

Former Member
0 Kudos

hi

pai event is triggered after user give the input or press any button in the selection screen..

ex:in selection screen u have 3 fields and 1 button.

a-input1

b-input2

c-result

button-add.

u r applying the input and click on add butten then c = a +b. will be displayed in result field.

for this u have to write like in PAI.then only result will be displayed there..

c = a + b.

result = c.

reward if useful..

Former Member
0 Kudos

PAI

Process After Input, screen event. Triggered by user action on the GUI. With PAI, the contents of screen fields are transferred to data objects of the same name in the ABAP program.

Regards,

Pavan