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

Collapse button in screens

Former Member
0 Likes
783

Hi All,

I want to insert a collapse/ insert button in screens , wherein a table control will be collapse or expanded based on this button. please give your inputs and steps to do it.

Thanks ,

Ramya

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Feb 14, 2008 3:09 PM

3 REPLIES 3
Read only

Former Member
0 Likes
604

Hi,

I suggest to look for ALV Tree. I think you'll find it helpful.

Regards,

Teddy

Read only

Former Member
0 Likes
604

hi,

insert buttons in the screen initially and make then invisible like

in the pbo of the screen.

loop at screen.

if screen-name eq 'insert'.

screen-invisible = 1.

modify screen.

endif.

endloop.

if particular button is clicked then make that button visible.

if w_flag eq 'X'.

loop at screen.

if screen-name eq 'insert'.

screen-invisible = 0.

modify screen.

endif.

endloop.

endif.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Feb 14, 2008 3:09 PM

Read only

former_member194669
Active Contributor
0 Likes
604

Check for transaction code BIBS and within "Collapsible Area"

a®