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

selection screen

Former Member
0 Likes
390

i want to make the selection screen parameter display only once.

how can we code it using AT selection screen output event.

3 REPLIES 3
Read only

Former Member
0 Likes
363

hi,

If you clear the contents of selection screen in AT selection screen output.. the values will not be available for further processing..

so clear the selection sceen parameters at the end of your program..

reward if I am not wrong with your question

regards,

nazeer

Read only

Former Member
0 Likes
363

hi,

clear the selection-screen.

Read only

Former Member
0 Likes
363

Hi Pavan,

U can hide the controls which u dont want to show by checking some values .

Like u can use export statement to export value to the variable say i to memory.

Now at selection screen output check the value of this variable

If the value is 1 ( u set the value of the variable as 1 using code) .

hide the controls u want .

If the value is 0 (by default the variables value is 0)

enable the controls.

The syntax for the export statement is as below.

EXPORT decide_scr TO DATABASE indx(st) ID 'ZMY_VALUE'.

U can retrive the value saved to memory by using import. The syntax for import is as below

IMPORT decide_scr TO decide_scr1 FROM DATABASE indx(st) ID 'ZMY_VALUE'.