Hi,
I am looking help on ALV grid (output).
By default in the output of report i get 5 fields using ALV grid.
After getting this list , i have a option to increase and choose more fields.
Let us say i have added 2 more to already existing 5 fields.
So from the next time, when ever user executes the report he should get the 7 fields as default.
is the possible with out touching the source code of the report.
regards
Satheesh
yes,
-> fill parm. is_variant and i_save
CALL METHOD grid1->set_table_for_first_display
EXPORTING i_structure_name = 'ZTAB'
is_layout = lay
it_toolbar_excluding = tb0
is_variant = gs_variant
i_save = x_save
...
regards Andreas
Yes, you can save the layouts, as global, or as user specific. As well as making a layout a default.
On the ALV toolbar, there should be an icon for changing layouts and saving layouts. Experiment with these functions.
Regards,
Rich Heilman
Add a comment