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

OO ALV

Former Member
0 Likes
538

Moved to correct forum. Please use an informative subject in future.

Hi,

I have created one report using Object Oriented ALV.

In the Layout structure i have set for Column optimization by,

ch_layout-cwidth_opt = c_x.

In my report there is one Editable Row.

If the Editable functionality does not exist then the Output comes with the Columns optimized according to the field values.

But after using ch_layout-stylefname = 'CELLTAB'.(where CELLTAB is the field in structure for Edit option), the output does not appear to be Optimized.

Please suggest any way to resolve this.

Thanks.

Edited by: Matt on Apr 9, 2009 10:08 AM

1 ACCEPTED SOLUTION
Read only

uwe_schieferstein
Active Contributor
0 Likes
515

Hello Anurita

You may try to call method go_grid->SET_FRONTEND_LAYOUT at PBO of your screen. Perhaps it does the layout optimization even despite the editable columns.

Regards

Uwe

Moved to correct forum. Please use an informative subject in future.

Hi,

I have created one report using Object Oriented ALV.

In the Layout structure i have set for Column optimization by,

ch_layout-cwidth_opt = c_x.

In my report there is one Editable Row.

If the Editable functionality does not exist then the Output comes with the Columns optimized according to the field values.

But after using ch_layout-stylefname = 'CELLTAB'.(where CELLTAB is the field in structure for Edit option), the output does not appear to be Optimized.

Please suggest any way to resolve this.

Thanks.

Edited by: Matt on Apr 9, 2009 10:08 AM

3 REPLIES 3
Read only

matt
Active Contributor
0 Likes
515

Moved to correct forum. Please use an informative subject in future.

Read only

uwe_schieferstein
Active Contributor
0 Likes
516

Hello Anurita

You may try to call method go_grid->SET_FRONTEND_LAYOUT at PBO of your screen. Perhaps it does the layout optimization even despite the editable columns.

Regards

Uwe

Read only

0 Likes
515

Thanks Uwe