2009 Mar 09 1:24 PM
Hi Experts,
I need to create an dynamic field in the screen. Initially the screen one button, and if I press the button one input field and text field.
Is it possible? I searched through out the SDN. But I didn't get any idea. Any links or any suggestions are more welcome.
You helps will be appreciated.
2009 Mar 09 1:28 PM
HI
You can make the field and text invisible initially
and when the button is pressed you can make them appear on the screen
Hope this helps!
Viquar Iqbal
Hi Experts,
I need to create an dynamic field in the screen. Initially the screen one button, and if I press the button one input field and text field.
Is it possible? I searched through out the SDN. But I didn't get any idea. Any links or any suggestions are more welcome.
You helps will be appreciated.
2009 Mar 09 1:28 PM
HI
You can make the field and text invisible initially
and when the button is pressed you can make them appear on the screen
Hope this helps!
Viquar Iqbal
2009 Mar 09 1:30 PM
hi,
u can do it by LOOP AT SCREEN.
loop at screen.
if screen-name = 'ITAB-FIRST_COLUMN'.
SCREEN-INPUT = 1.
MODIFY SCREEN.
ENDIF.
if screen-name = 'ITAB-SECOND_COLUMN'.
screen-input = 0.
modify screen.
endif.
endloop.
Initially required fields are in active when ever u select the button the required fields are active
~linganna
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |