Skip to Content
0
Former Member
Mar 25, 2010 at 04:45 AM

Create Dynamic Internal table using Class:cl_salv_table

625 Views

Hi Experts,

I have to Create a Dynamic Internal table using Class:cl_salv_table.

Previously I have used 'create_dynamic_table' :

CALL METHOD cl_alv_table_create=>create_dynamic_table
    EXPORTING
      it_fieldcatalog           = i_fieldcat
    IMPORTING
      ep_table                  = g_table
    EXCEPTIONS
      generate_subpool_dir_full = 1
      OTHERS                    = 2.

Do we have an option for the same in Class: CL_SALV_TABLE?

Thanks.