‎2008 Jun 17 3:12 PM
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
‎2008 Jun 17 3:17 PM
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
‎2008 Jun 17 3:17 PM
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
‎2008 Jun 17 4:07 PM
‎2008 Jun 17 3:34 PM
Make I_SAVE = 'X'
CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
EXPORTING
.................
I_SAVE = ' X'
....................