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

select layout & save layout button missing in the toolbar

Former Member
3,208

Hi guys,

I've just developed my first ALV using ABAP objects, but the tollbat doesn't contain buttons select &save layout.

what could be worng?

Thanks a lot!

olian

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,410

Look at ALV display variant related parameters

- is_variant Don't forget to give the report name is_variant-report = sy-repid before calling set_table_for_first_display.

- is_save Give to is_save a value allowing to save variant to get the save icon. (X-standard, A-all, U-user variants, not space)

(Also take a look at [ALV Gird Control (BC-SRV-ALE)|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVALV/BCSRVALV.pdf])

Regards

3 REPLIES 3
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,411

Look at ALV display variant related parameters

- is_variant Don't forget to give the report name is_variant-report = sy-repid before calling set_table_for_first_display.

- is_save Give to is_save a value allowing to save variant to get the save icon. (X-standard, A-all, U-user variants, not space)

(Also take a look at [ALV Gird Control (BC-SRV-ALE)|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVALV/BCSRVALV.pdf])

Regards

Read only

0 Likes
1,410

IS_VARIANT was the right solution.

Thanx!

Read only

Former Member
0 Likes
1,410

Make I_SAVE = 'X'

CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'

EXPORTING

.................

I_SAVE = ' X'

....................