<?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: append corresponding in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-corresponding/m-p/1937708#M387660</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must have declared gs_bapiret as an internal table and not as a work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its an internal table, use the following&lt;/P&gt;&lt;P&gt;append lines of gs_bapiret to gt_bapiret.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;append lines -&amp;gt; for internal tables&lt;/P&gt;&lt;P&gt;append -&amp;gt; for work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Feb 2007 14:02:17 GMT</pubDate>
    <dc:creator>anilnal</dc:creator>
    <dc:date>2007-02-20T14:02:17Z</dc:date>
    <item>
      <title>append corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-corresponding/m-p/1937705#M387657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Every 1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am declaring the structure with Bapiret2 and also a internal table of same structure. i am populating only the 3  fields into gs_bapiret2 structure,&lt;/P&gt;&lt;P&gt;and that i have to append into an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; append gs_bapiret to gt_bapiret.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; am not able to append that data .&lt;/P&gt;&lt;P&gt;is there is any statement like append corresponding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls let me know.&lt;/P&gt;&lt;P&gt;regards...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Feb 2007 11:23:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-corresponding/m-p/1937705#M387657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-17T11:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: append corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-corresponding/m-p/1937706#M387658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ur not able to pass the values to the work area or ur not abel to append the work area to the internal table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mahesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Feb 2007 06:18:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-corresponding/m-p/1937706#M387658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-18T06:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: append corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-corresponding/m-p/1937707#M387659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk this sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*Table declaration (new method)     "USE THIS WAY!!!
TYPES: BEGIN OF t_ekpo,
  ebeln TYPE ekpo-ebeln,
  ebelp TYPE ekpo-ebelp,
 END OF t_ekpo.
DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,      "itab
      wa_ekpo TYPE t_ekpo.                    "work area (header line)

wa_ekpo-ebeln = 'value1'.
wa_ekpo-ebelp = 'value2'.

append wa_ekpo to it_ekpo.
clear wa_ekpo.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Feb 2007 06:23:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-corresponding/m-p/1937707#M387659</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2007-02-18T06:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: append corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-corresponding/m-p/1937708#M387660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must have declared gs_bapiret as an internal table and not as a work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its an internal table, use the following&lt;/P&gt;&lt;P&gt;append lines of gs_bapiret to gt_bapiret.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;append lines -&amp;gt; for internal tables&lt;/P&gt;&lt;P&gt;append -&amp;gt; for work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 14:02:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-corresponding/m-p/1937708#M387660</guid>
      <dc:creator>anilnal</dc:creator>
      <dc:date>2007-02-20T14:02:17Z</dc:date>
    </item>
  </channel>
</rss>

