How can validate input values in selection screen and which event was fired?

Showing Answers 1 - 17 of 17 Answers

Satya Krishna

  • Sep 12th, 2005
 

We can Validate Selection Screen With the Help of the Following Events, the Event Follows the Same hierachy.

AT SELECTION-SCREEN ON

AT SELECTION-SCREEN ON BLOCK

AT SELECTION-SCREEN OUTPUT

AT SELECTION-SCREEN.

  Was this answer useful?  Yes

Vishnu

  • Jun 26th, 2006
 

At selection-screen on

select stmt ------------------ where = .

if sy-subrc = 0.

validation success for LOw value in selection screen

At selection-screen on

select stmt-------------------- where =

if sy-subrc <> 0.

validation failure on high value in the selection field.

else

success.

endif

  Was this answer useful?  Yes

venkat

  • Dec 25th, 2006
 

Hi,

     At selection-screen ouput will not be used for input validations. For input values in selection screen events are at selection-screen, at selection-screen on field, e.t.c

  Was this answer useful?  Yes

lakshmi

  • Sep 26th, 2011
 

We can Validate Selection Screen With the Help of the Following Events, the Event Follows the Same hierachy.

AT SELECTION-SCREEN ON
AT SELECTION-SCREEN ON BLOCK
AT SELECTION-SCREEN OUTPUT
AT SELECTION-SCREEN.

  Was this answer useful?  Yes

Dinesh

  • Feb 3rd, 2015
 

AT SELECTION-SCREEN ON event is used to validate input.

  Was this answer useful?  Yes

SANGU VINODKUMAR

  • Jul 22nd, 2015
 

At selection-screen is an event, which is used to validate the selection screen input fields, if you want to validate the particular input field we use at selection-screen on event.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions