<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Working on table dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014989#M1346787</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Next and Final Part of Code&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT it_ty1 INTO wa_ty1.
  AT NEW pernr.
    wa_all_pernr-pernr = wa_ty1-pernr.
    APPEND wa_all_pernr to it_all_pernr.
    count_pernr = 0.
  ENDAT.
  add: 1 to count_pernr.
  at END OF pernr.
    IF max_pernr &amp;lt; count_pernr.
      max_pernr = count_pernr.
    ENDIF.
  ENDAT.
ENDLOOP.

CLEAR:it_fieldcatalog.
it_fieldcatalog-fieldname = 'PERNR'.
it_fieldcatalog-col_pos = 1.
it_fieldcatalog-outputlen = '10'.
APPEND it_fieldcatalog TO it_fieldcatalog.

column_no = 2.
count = 1.

DO max_pernr TIMES.
  clear: it_fieldcatalog.
  CONDENSE: count.
  CONCATENATE: 'line' count INTO column_name.
  it_fieldcatalog-fieldname = column_name.
  it_fieldcatalog-col_pos = column_no.
  it_fieldcatalog-outputlen = '15'.
  APPEND it_fieldcatalog TO it_fieldcatalog.
  add: 1 to column_no,
       1 to count.
ENDDO.

CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
  EXPORTING
    it_fieldcatalog           = it_fieldcatalog[]
  IMPORTING
    ep_table                  = it
  EXCEPTIONS
    generate_subpool_dir_full = 1
    others                    = 2.

assign it-&amp;gt;* to &amp;lt;dyn_it&amp;gt;.
create data wa like line of &amp;lt;dyn_it&amp;gt; .
assign wa-&amp;gt;* to &amp;lt;dyn_wa&amp;gt; .

LOOP AT it_all_pernr into wa_all_pernr.
  count_column = 2.
  count = 1.
  assign_val 'PERNR' wa_all_pernr-pernr.
  LOOP AT it_ty1 into wa_ty1 WHERE pernr = wa_all_pernr-pernr.
    CONDENSE: count.
    CONCATENATE: 'LINE' count INTO column_name.
    assign_val column_name wa_ty1-comments.
    add: 1 to count.
  ENDLOOP.
  APPEND &amp;lt;dyn_wa&amp;gt; to &amp;lt;dyn_it&amp;gt;.
  clear: &amp;lt;dyn_wa&amp;gt;.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reply me back in case of any Confusion about the Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 23 Aug 2009 15:13:19 GMT</pubDate>
    <dc:creator>faisalatsap</dc:creator>
    <dc:date>2009-08-23T15:13:19Z</dc:date>
    <item>
      <title>Working on table dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014985#M1346783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is problem which i need to Move data from table one to table 2 with differnt structure the &lt;/P&gt;&lt;P&gt;for instance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;table 1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pernr                                                             comments&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;123	                       AAA
123	                          BBB
123                                          CCC
456	                         ZZZZ           
456	                          TTTT
456                                         GGGG
456                                         SSSS&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;table 2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;pernr            line 1             line 2         line3
11               AAA                BBBB            CCCC
22               ZZZZ               TTTT            GGGG&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES:BEGIN OF ty_tab,&lt;/P&gt;&lt;P&gt;    pernr TYPE numc10,&lt;/P&gt;&lt;P&gt;    comments TYPE char10,&lt;/P&gt;&lt;P&gt;  END OF ty_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:it_emp_com TYPE TABLE OF ty_tab,
      ls_emp_com LIKE LINE OF it_emp_com.


TYPES:BEGIN OF ty_tab2,
    pernr TYPE numc10,
    line1 TYPE char10,
    line2 TYPE char10,
    line3 TYPE char10,
    line4 TYPE char10,
  END OF ty_tab2.


DATA: it_emp_com2 TYPE TABLE OF ty_tab2,
      ls_emp_com2 LIKE LINE OF it_emp_com.


ls_emp_com-pernr = 123.
ls_emp_com-comments = 'AAA'.
APPEND ls_emp_com TO it_emp_com.
ls_emp_com-pernr = 123.
ls_emp_com-comments = 'BBB'.
APPEND ls_emp_com TO it_emp_com.
ls_emp_com-pernr = 123.
ls_emp_com-comments = 'CCC'.
APPEND ls_emp_com TO it_emp_com.
ls_emp_com-pernr = 456.
ls_emp_com-comments = 'ZZZ'.
APPEND ls_emp_com TO it_emp_com.
ls_emp_com-pernr = 456.
ls_emp_com-comments = 'GGGG'.
APPEND ls_emp_com TO it_emp_com.
ls_emp_com-pernr = 456.
ls_emp_com-comments = 'CCCC'.
APPEND ls_emp_com TO it_emp_com.
ls_emp_com-pernr = 456.
ls_emp_com-comments = 'SSSS'.
APPEND ls_emp_com TO it_emp_com.



FIELD-SYMBOLS : &amp;lt;fs&amp;gt; TYPE any.
REFRESH : it_emp_com2.
DATA: v_flg TYPE n,
      v_field TYPE char20.

LOOP AT it_emp_com INTO ls_emp_com.
  AT NEW pernr.
    MOVE 1 TO v_flg.
  ENDAT.
  MOVE ls_emp_com-pernr TO ls_emp_com2-pernr.
  CONCATENATE 'LS_EMP_COM2-LINE' v_flg INTO v_field.
  CONDENSE v_field NO-GAPS.
  ASSIGN v_field TO &amp;lt;fs&amp;gt;.
  WRITE ls_emp_com-comments TO &amp;lt;fs&amp;gt;.
  v_flg = v_flg + 1.
  AT END OF pernr.
    CLEAR v_flg.
    APPEND ls_emp_com TO it_emp_com2.
  ENDAT.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try like this and i wont works&lt;/P&gt;&lt;P&gt;any idea what i miss here ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Joy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Aug 2009 09:10:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014985#M1346783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-23T09:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Working on table dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014986#M1346784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Joy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Number of lines in itab2 are fix from Line1 to Line4 ? if yes than Please Test the Following Sample Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES:  BEGIN OF ty_tab1,
        pernr TYPE numc10,
        comments TYPE char10,
        END OF ty_tab1.
TYPES:  BEGIN OF ty_tab2,
        pernr TYPE numc10,
        line1 TYPE char10,
        line2 TYPE char10,
        line3 TYPE char10,
        line4 TYPE char10,
        END OF ty_tab2.

DEFINE assign_val .
  assign component &amp;amp;1 of structure &amp;lt;dyn_wa&amp;gt; to &amp;lt;dyn_val&amp;gt;.
  &amp;lt;dyn_val&amp;gt; = &amp;amp;2.
END-OF-DEFINITION.

DATA: it_ty1 TYPE STANDARD TABLE OF ty_tab1,
      wa_ty1 LIKE LINE OF it_ty1,
      it_ty2 TYPE STANDARD TABLE OF ty_tab2,
      wa_ty2 LIKE LINE OF it_ty2,
      count_pernr TYPE i.

wa_ty1-pernr = 1.
wa_ty1-comments = 'AAA'. APPEND wa_ty1 TO it_ty1. wa_ty1-comments = 'BBB'. APPEND wa_ty1 TO it_ty1.
wa_ty1-comments = 'CCC'. APPEND wa_ty1 TO it_ty1. wa_ty1-comments = 'DDD'. APPEND wa_ty1 TO it_ty1.
wa_ty1-pernr = 2.
wa_ty1-comments = 'AAA'. APPEND wa_ty1 TO it_ty1. wa_ty1-comments = 'BBB'. APPEND wa_ty1 TO it_ty1.
wa_ty1-comments = 'CCC'. APPEND wa_ty1 TO it_ty1. wa_ty1-comments = 'DDD'. APPEND wa_ty1 TO it_ty1.

SORT: it_ty1 BY pernr comments.
LOOP AT it_ty1 INTO wa_ty1.
  AT NEW pernr.
    count_pernr = 1.
  ENDAT.
  wa_ty2-pernr = wa_ty1-pernr.
  CASE count_pernr.
    WHEN 1.
      wa_ty2-line1 = wa_ty1-comments.
    WHEN 2.
      wa_ty2-line2 = wa_ty1-comments.
    WHEN 3.
      wa_ty2-line3 = wa_ty1-comments.
    WHEN 4.
      wa_ty2-line4 = wa_ty1-comments.
    WHEN OTHERS.
  ENDCASE.
  ADD: 1 TO count_pernr.
  AT END OF pernr.
    APPEND wa_ty2 TO it_ty2.
  ENDAT.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply in case of else Requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Aug 2009 09:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014986#M1346784</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-08-23T09:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Working on table dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014987#M1346785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Faisal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a way to do that dynamically (it_ty2),i.e. with table that is not have restriction&lt;/P&gt;&lt;P&gt;for example user can have 20 comments .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Joy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Aug 2009 10:44:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014987#M1346785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-23T10:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Working on table dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014988#M1346786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Joy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test the Bellow Sample Code it should work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;First Part of Code&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  zfsl_sdn_tests.

TYPES:  BEGIN OF ty_tab1,
        pernr TYPE numc10,
        comments TYPE char10,
        END OF ty_tab1.

DEFINE assign_val.
  assign component &amp;amp;1 of structure &amp;lt;dyn_wa&amp;gt; to &amp;lt;dyn_val&amp;gt;. &amp;lt;dyn_val&amp;gt; = &amp;amp;2.
END-OF-DEFINITION.

DATA: it_ty1 TYPE STANDARD TABLE OF ty_tab1,
      wa_ty1 LIKE LINE OF it_ty1,
      it_all_pernr TYPE STANDARD TABLE OF ty_tab1,
      wa_all_pernr like LINE OF it_all_pernr,
      count_pernr TYPE i,
      count_column TYPE i,
      max_pernr TYPE i,
      column_no TYPE n,
      column_name(20),
      count(20),
      it type ref to data,
      wa type ref to data,
      it_fieldcatalog TYPE STANDARD TABLE OF lvc_s_fcat WITH HEADER LINE,
      wa_fieldcatalog TYPE lvc_s_fcat.

field-symbols : &amp;lt;dyn_it&amp;gt;  type standard table,
                &amp;lt;dyn_val&amp;gt; TYPE any,
                &amp;lt;dyn_wa&amp;gt; type data,
                &amp;lt;dyn_pernr&amp;gt; type any,
                &amp;lt;dyn_comments&amp;gt; type any.
wa_ty1-pernr = 1.
wa_ty1-comments = 'AAA'. APPEND wa_ty1 TO it_ty1. wa_ty1-comments = 'BBB'. APPEND wa_ty1 TO it_ty1.
wa_ty1-pernr = 2.
wa_ty1-comments = 'AAA'. APPEND wa_ty1 TO it_ty1. wa_ty1-comments = 'BBB'. APPEND wa_ty1 TO it_ty1.
wa_ty1-comments = 'CCC'. APPEND wa_ty1 TO it_ty1. wa_ty1-comments = 'DDD'. APPEND wa_ty1 TO it_ty1.

SORT: it_ty1 BY pernr comments.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Aug 2009 15:10:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014988#M1346786</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-08-23T15:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Working on table dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014989#M1346787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Next and Final Part of Code&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT it_ty1 INTO wa_ty1.
  AT NEW pernr.
    wa_all_pernr-pernr = wa_ty1-pernr.
    APPEND wa_all_pernr to it_all_pernr.
    count_pernr = 0.
  ENDAT.
  add: 1 to count_pernr.
  at END OF pernr.
    IF max_pernr &amp;lt; count_pernr.
      max_pernr = count_pernr.
    ENDIF.
  ENDAT.
ENDLOOP.

CLEAR:it_fieldcatalog.
it_fieldcatalog-fieldname = 'PERNR'.
it_fieldcatalog-col_pos = 1.
it_fieldcatalog-outputlen = '10'.
APPEND it_fieldcatalog TO it_fieldcatalog.

column_no = 2.
count = 1.

DO max_pernr TIMES.
  clear: it_fieldcatalog.
  CONDENSE: count.
  CONCATENATE: 'line' count INTO column_name.
  it_fieldcatalog-fieldname = column_name.
  it_fieldcatalog-col_pos = column_no.
  it_fieldcatalog-outputlen = '15'.
  APPEND it_fieldcatalog TO it_fieldcatalog.
  add: 1 to column_no,
       1 to count.
ENDDO.

CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
  EXPORTING
    it_fieldcatalog           = it_fieldcatalog[]
  IMPORTING
    ep_table                  = it
  EXCEPTIONS
    generate_subpool_dir_full = 1
    others                    = 2.

assign it-&amp;gt;* to &amp;lt;dyn_it&amp;gt;.
create data wa like line of &amp;lt;dyn_it&amp;gt; .
assign wa-&amp;gt;* to &amp;lt;dyn_wa&amp;gt; .

LOOP AT it_all_pernr into wa_all_pernr.
  count_column = 2.
  count = 1.
  assign_val 'PERNR' wa_all_pernr-pernr.
  LOOP AT it_ty1 into wa_ty1 WHERE pernr = wa_all_pernr-pernr.
    CONDENSE: count.
    CONCATENATE: 'LINE' count INTO column_name.
    assign_val column_name wa_ty1-comments.
    add: 1 to count.
  ENDLOOP.
  APPEND &amp;lt;dyn_wa&amp;gt; to &amp;lt;dyn_it&amp;gt;.
  clear: &amp;lt;dyn_wa&amp;gt;.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reply me back in case of any Confusion about the Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Aug 2009 15:13:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014989#M1346787</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-08-23T15:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: Working on table dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014990#M1346788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Faisal ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks its works !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one question is if there is a way to do that without using the method create_dynamic_table?&lt;/P&gt;&lt;P&gt;maybe with create data statement &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again &lt;/P&gt;&lt;P&gt;Joy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Aug 2009 15:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014990#M1346788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-23T15:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Working on table dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014991#M1346789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Joy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you are taking about to create the dynamic table in the following way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: it TYPE REF TO data.
FIELD-SYMBOLS: &amp;lt;dyn_it&amp;gt; TYPE TABLE.
data: tabname TYPE string VALUE 'T247'.

CREATE DATA it TYPE TABLE OF (tabname).
ASSIGN it-&amp;gt;* TO &amp;lt;dyn_it&amp;gt;.

SELECT * FROM (tabname) INTO CORRESPONDING FIELDS OF TABLE &amp;lt;dyn_it&amp;gt;
  WHERE spras = 'EN'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i think using the above way we can only create the dynamic tables Like Database tables. because we have the requirement of variable number of columns here, So we will have to use that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Correct me if wrong or let me know if you have some idea about it, waiting for your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Aug 2009 16:11:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014991#M1346789</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-08-23T16:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Working on table dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014992#M1346790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another option will be using RTTS class&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://wiki.sdn.sap.com/wiki/display/Snippets/Wrapper" target="test_blank"&gt;https://wiki.sdn.sap.com/wiki/display/Snippets/Wrapper&lt;/A&gt;&lt;EM&gt;code&lt;/EM&gt;for&lt;EM&gt;creating&lt;/EM&gt;Dynamic&lt;EM&gt;Internal&lt;/EM&gt;table&lt;EM&gt;using&lt;/EM&gt;RTTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Aug 2009 16:37:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-on-table-dynamically/m-p/6014992#M1346790</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-08-23T16:37:13Z</dc:date>
    </item>
  </channel>
</rss>

