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

Triggering events in Selection screen

Former Member
0 Likes
853

Is their any transaction to find out which <b>selection screen event</b> triggerd.

- David Boon

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
812

Hi,

Please let us know your requirement in detail..

These are the events in the selection screen..

1. ... ON psel

2. ... ON END OF sel

3. ... ON VALUE-REQUEST FOR psel_low_high

4. ... ON HELP-REQUEST FOR psel_low_high

5. ... ON RADIOBUTTON GROUP radi

6. ... ON BLOCK block

7. ... OUTPUT

Thanks,

Naren

4 REPLIES 4
Read only

Former Member
0 Likes
813

Hi,

Please let us know your requirement in detail..

These are the events in the selection screen..

1. ... ON psel

2. ... ON END OF sel

3. ... ON VALUE-REQUEST FOR psel_low_high

4. ... ON HELP-REQUEST FOR psel_low_high

5. ... ON RADIOBUTTON GROUP radi

6. ... ON BLOCK block

7. ... OUTPUT

Thanks,

Naren

Read only

p291102
Active Contributor
0 Likes
812

Hi,

The event AT SELECTION-SCREEN is the basic form of a whole series of events that occur

while the selection screen is being processed.

The standard selection screen in an executable program or in the logical database linked to it is

automatically called between the INITIALIZATION and START-OF-SELECTION events. When

you call the selection screen, and when users interact with it, the ABAP runtime environment

generates selection screen events, which occur between INITIALIZATION and START-OFSELECTION.

You can define event blocks for these events in your program to change the selection screen or

process user input.

AT SELECTION-SCREEN is triggered at least twice during actions on selection screens that are linked into another selection screen as a subscreen - first for the linked selection screen itself, and then for the linking selection screens.

AT SELECTION SCREEN OUTPUT event is triggered at the screen event PBO of a selection screen. In the event block, the selection screen can be prepared through assignments to the data objects of parameters and selection criteria and through dynamic screen modifications.

AT SELECTION-SCREEN ON <field> is triggered when the contents of each individual input field are passed from the selection screen

to the ABAP program. The input field <field> can be checked in the corresponding event block.

If an error message occurs within this event block, the corresponding field is made ready for input

again on the selection screen.

It will helpful to u.

Thanks,

Shankar

Read only

Former Member
0 Likes
812

Hi david,

I think u r asking abt the tc to know which selection-screen event triggered.but as far as i concerned we didnt have

Read only

Former Member
0 Likes
812

Actually i am in need of TC only ,what SriLatha said . I think their is some tc.

- David Boon