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: 

Events and differents buttons

former_member384574
Active Participant
0 Kudos

Hi experts!!

I've a doubt, I've to make a program with three buttons, when the user's click on one button It must appear down this button another button, the problem is how can I put it visible or invisible that button? The three button has another 2 differents button.... I think I could make this with MODIF ID BTC, but it doesn't work... any idea please?

Thanks a lot

Regards,

Rebeca

2 REPLIES 2

Former Member
0 Kudos

hi,

use the modify screen statement.

like:

if event = '1'.

loop at screen.

if screen-name = button_2.

screen-active = 0.

endif.

modify screen.

endloop.

regards..

former_member384574
Active Participant
0 Kudos

I've done!!! Thanks, this is the answer

SELECTION-SCREEN PUSHBUTTON 17(79) DCH USER-COMMAND DCH

MODIF ID DTP VISIBLE LENGTH 15.

Thanks a lot!