cancel
Showing results for 
Search instead for 
Did you mean: 

the visible rows during runtime in List GUIBB

0 Kudos

Hello,

Is it possible to change the visible number of rows in List GUIBB during runtime? If yes, please mention how.

Thanks and Regards,

Sanjay

Accepted Solutions (0)

Answers (2)

Answers (2)

mmgc_riel
Participant
0 Kudos

DATA:

     lo_event_data                      TYPE REF TO if_fpm_parameter,

     lo_event                           TYPE REF TO cl_fpm_event.

   CREATE OBJECT lo_event_data

     TYPE cl_fpm_parameter.

   lo_event_data->set_value(

                    iv_key   = if_fpm_guibb_list=>gc_event_par_config_id

                    iv_value = _gs_config_key ).

   lo_event_data->set_value(

                    iv_key   = if_fpm_guibb_list=>gc_event_par_amount_cols

                    iv_value = '10' ).

   lo_event_data->set_value(

                    iv_key   = if_fpm_guibb_list=>gc_event_par_amount_rows

                    iv_value = iv_rows ).

   CREATE OBJECT lo_event

     EXPORTING

       iv_event_id   = if_fpm_guibb_list=>gc_event_change_cols_rows

       io_event_data = lo_event_data.

   _go_fpm->raise_event( lo_event ).

_gs_config_key is save at execute of method initialize
for the rest it works,

even the -1 for an empty grid

Former Member
0 Kudos

Hello Sanjay,

It is not possible to set the number of visible rows for a list GUIBB at runtime. You can only do this at design time

Regards

Rohan