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

Modue Pool

Former Member
0 Likes
704

Hi,

I am creating one table wizard at selection screen.But there is only horizontal scroll bar there is no vertical scroll bar.

So please help me . I think there is some dummy code.

Please give me taht.

Thanks,

Sandeep Garg

5 REPLIES 5
Read only

Former Member
0 Likes
677

While creating table control with wizerd, there are options to have vartical and hirizonta scrool bar ( radiobutton), you have to select that option then only scrool bars will come.

Read only

Former Member
0 Likes
677

You don't need any additional code for that ....Select vertical and horizontal check boxes while creating a table wirzard for the vertical scroll bar ..

regards,

Santosh

Read only

0 Likes
677

Hi,

There is no option like this what did you suggest me.

There is only one check box Scroll.

Plese help me.

Read only

Former Member
0 Likes
677

Hi Sandeep,

Add the following code to make the vertical scroll bar to come on runtime:

MODULE get_t_ctrl_lines OUTPUT.

t_ctrl-lines = ln + 100.

ENDMODULE. " get_T_CTRL_lines OUTPUT

Hope this helps.

Reward if helpful.

Regards,

Sipra

Read only

Former Member
0 Likes
677

Hi,

Add this.............

DESCRIBE TABLE i_makt LINES ln.

  • To make the vertical scroll bar to come on runtime

t_ctrl-lines = ln + 100

(add this in PBO)

MODULE get_t_ctrl_lines.

LOOP AT i_makt WITH CONTROL t_ctrl CURSOR t_ctrl-current_line.

Regards,

Priya.

Edited by: Priyadharshini Veluswamy on May 6, 2008 11:13 AM