Application Development 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: 

Dynamic Field

Former Member
0 Kudos

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

viquar_iqbal
Active Contributor
0 Kudos

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

viquar_iqbal
Active Contributor
0 Kudos

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

Former Member
0 Kudos

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