‎2007 Jul 05 9:03 AM
i want to make the selection screen parameter display only once.
how can we code it using AT selection screen output event.
‎2007 Jul 05 9:05 AM
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
‎2007 Jul 05 9:07 AM
‎2007 Jul 05 9:14 AM
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'.