‎2009 Dec 14 5:08 PM
Dear gurus
i have made a screen 600 and in that i have created check box.
how to retrieve this chexbox data into my program.
‎2009 Dec 14 5:18 PM
Hi Ahmed,
Declare a variable of type c in your program, of the same name of the checkbox which you have created in screen painter.
For example, say if you have defined its name as BOX with function code CANCEL,
DATA : BOX type c.
So the PAI event is triggered if you select the checkbox named BOX, function code CANCEL is passed to ABAP program & the corresponding code written in the PAI Module is executed.
For more info, check the examples in ABAPDOCU.
Regards
Abhii
‎2009 Dec 14 5:18 PM
Hi Ahmed,
Declare a variable of type c in your program, of the same name of the checkbox which you have created in screen painter.
For example, say if you have defined its name as BOX with function code CANCEL,
DATA : BOX type c.
So the PAI event is triggered if you select the checkbox named BOX, function code CANCEL is passed to ABAP program & the corresponding code written in the PAI Module is executed.
For more info, check the examples in ABAPDOCU.
Regards
Abhii