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

Creating Dynamic Deep Internal Table

Former Member
0 Likes
537

Hi,

I am using "cl_alv_table_create=>create_dynamic_table" to create a dynamic internal Table.

I need to display this internal table with some Cell Style.

Hence I need to append "i_celltab TYPE lvc_t_styl" to this dynamic internal Table.

How will I do that? Following is piece of code I have used.


  CALL METHOD cl_alv_table_create=>create_dynamic_table
    EXPORTING
      it_fieldcatalog = t_fldcat
    IMPORTING
      ep_table        = t_newtable.

  ASSIGN t_newtable->* TO <t_dyntable>. 

1 REPLY 1
Read only

Former Member
0 Likes
381