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

Display Error message with 2 Fields ready for input apart from error field

Former Member
0 Likes
431

Hi,

I want to display Error message on report selection screen.Error was triggered in at selection screen on field1.Now i need to display this error and want to make two fields editable apart from the field1(error field) .Also cursor should be at field1 when error triggered

p.s : I tried message s010 display like "E' .But this will make all the fields ready for input and cusor not in error field.

Thanks,

Hi,

I want to display Error message on report selection screen.Error was triggered in at selection screen on field1.Now i need to display this error and want to make two fields editable apart from the field1(error field) .Also cursor should be at field1 when error triggered

p.s : I tried message s010 display like "E' .But this will make all the fields ready for input and cusor not in error field.

Thanks,

1 REPLY 1
Read only

Former Member
0 Likes
352

Tried something like this?

LOOP AT SCREEN.

IF SCREEN-NAME EQ 'ABC'

OR SCREEN-NAME EQ 'DEF'

OR SCREEN-NAME EQ 'GHI'.

SCREEN-OUTPUT = '1'.

SCREEN-INPUT = '1'.

ELSE.

SCREEN-OUTPUT = '1'.

SCREEN-INPUT = '0'.

ENDIF.

MODIFY SCREEN.

ENDLOOP.

SET CURSOR FIELD 'ABC'.