‎2008 Mar 26 1:32 PM
Hello!
In the moment that I use the match code and select a information I need that other field hide.
For example:
when I select 'blue' I need that other field hide.
when I select 'green' do nothing.
thanks!
‎2008 Mar 26 1:34 PM
Hi,
If you use report use the following code,
at selection-screen output.
if < condition >.
Loop at screen.
if screen-name = 'field1'.
screen-invisible = 1.
modify screen.
endif.
endloop.
endif.
If you use module pool use the following code,
PROCESS BEFORE OUTPUT.
if < condition >.
Loop at screen.
if screen-name = 'field1'.
screen-invisible = 1.
modify screen.
endif.
endloop.
endif.
‎2008 Mar 26 1:34 PM
Hi,
If you use report use the following code,
at selection-screen output.
if < condition >.
Loop at screen.
if screen-name = 'field1'.
screen-invisible = 1.
modify screen.
endif.
endloop.
endif.
If you use module pool use the following code,
PROCESS BEFORE OUTPUT.
if < condition >.
Loop at screen.
if screen-name = 'field1'.
screen-invisible = 1.
modify screen.
endif.
endloop.
endif.
‎2008 Mar 26 1:40 PM
Hai yaar,
u can do this by using the import check box in the search help object . it returns the value.