This website has been archived, it is working in read-only mode.

This website has been archived, it is working in read-only mode.

when user enter select option input..

I want SELECT-OPTIONS-HIGH is by default '999' number.

user not able to change SELECT-OPTIONS-HIGH value.

how I do this?

Thanks in advance.

asked 10 Feb '13, 23:25

sandy's gravatar image

sandy
717711
accept rate: 0%

edited 10 Feb '13, 23:39


Use AT SELECTION-SCREEN OUTPUT or INITIALIZATION event to set SELECT-OPTIONS-HIGH by default (manualy add proper line). Then use

loop at screen. if screen-name = 'P_FIELDNAME'. screen-input = 0. modify screen. endif. endloop.

permanent link

answered 11 Feb '13, 02:24

Pawel%20Hixohe%20Grze%C5%9Bkowiak's gravatar image

Pawel Hixohe...
2112511
accept rate: 16%

edited 11 Feb '13, 16:36

its working but user can change that number when run. I want user cant change this number. Number is Fix. Is there property like disable to set?

(11 Feb '13, 03:43) sandy

LOOP AT SCREEN part will do the job.

(11 Feb '13, 05:20) Pawel Hixohe...

yes you are right.I just added one word and now user not able change P_FIELDNAME-HIGH input field .

loop at screen.
  if screen-name = 'P_FIELDNAME-HIGH'.
   screen-input = 0.
   modify screen.
endif.
endloop.

Thanks for help.

permanent link

answered 13 Feb '13, 01:06

sandy's gravatar image

sandy
717711
accept rate: 0%

edited 13 Feb '13, 01:08

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×28
×2

question asked: 10 Feb '13, 23:25

question was seen: 7,086 times

last updated: 13 Feb '13, 01:08