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

Dynamic Field

Former Member
0 Likes
440

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.

1 ACCEPTED SOLUTION
Read only

viquar_iqbal
Active Contributor
0 Likes
414

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

2 REPLIES 2
Read only

viquar_iqbal
Active Contributor
0 Likes
415

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

Read only

Former Member
0 Likes
414

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