Hi all,
In a dialog prog., i want when a screen is called for the first time it should come in display mode.
Then if i click on any push button or any thing it should be active.
I have been trying with the code :
DATA: LV_FLAG TYPE char1.
Loop at screen.
IF v_flag <> 'X'.
IF <----
>.
screen-input = 0.
v_flag = 'X'.
ENDIF.
Endloop.
I am not able to get the second IF condition framed properly.
Can anyone tell me what should i use in the second IF condition?