2011 Feb 09 7:41 AM
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,
2011 Feb 09 8:14 AM
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'.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |