<?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: table entries in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720608#M895664</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write the Below Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: BEGIN OF GT_FILE occurs 0,
hienm TYPE rshiedir-hienm,
NODENAME TYPE rsnodename,
IOBJNM TYPE rsiobjnm,
VALUE1 TYPE rsnodename,
TXTSH TYPE rstxtsh,
END OF GT_FILE.

DATA:
  wa_file LIKE LINE OF gt_file.

LOOP AT gt_file INTO wa_file.
  INSERT Ztable FROM wa_file.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 May 2008 09:38:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-01T09:38:06Z</dc:date>
    <item>
      <title>table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720607#M895663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a final internal table like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: BEGIN OF GT_FILE occurs 0,&lt;/P&gt;&lt;P&gt;     hienm TYPE rshiedir-hienm,&lt;/P&gt;&lt;P&gt;     NODENAME TYPE rsnodename,&lt;/P&gt;&lt;P&gt;     IOBJNM TYPE rsiobjnm,&lt;/P&gt;&lt;P&gt;     VALUE1 TYPE rsnodename,&lt;/P&gt;&lt;P&gt;     TXTSH TYPE rstxtsh,&lt;/P&gt;&lt;P&gt;     END OF GT_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting all the values to gt_file.&lt;/P&gt;&lt;P&gt;i have creted a ztable with same fileds as final internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem is &lt;/P&gt;&lt;P&gt;in the final internal table i have 5 values , this 5 values need to get into ztable once i execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i use insert command how to declare work area for the above final internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 09:33:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720607#M895663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T09:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720608#M895664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write the Below Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: BEGIN OF GT_FILE occurs 0,
hienm TYPE rshiedir-hienm,
NODENAME TYPE rsnodename,
IOBJNM TYPE rsiobjnm,
VALUE1 TYPE rsnodename,
TXTSH TYPE rstxtsh,
END OF GT_FILE.

DATA:
  wa_file LIKE LINE OF gt_file.

LOOP AT gt_file INTO wa_file.
  INSERT Ztable FROM wa_file.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 09:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720608#M895664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T09:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720609#M895665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI hemal,&lt;/P&gt;&lt;P&gt;  Why do you want to declare  a work area?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can just say&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert &amp;lt;name of your ZTABLE&amp;gt; from table GT_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 09:39:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720609#M895665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T09:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720610#M895666</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;PRE&gt;&lt;CODE&gt;data: BEGIN OF GT_FILE occurs 0,
hienm TYPE rshiedir-hienm,
NODENAME TYPE rsnodename,
IOBJNM TYPE rsiobjnm,
VALUE1 TYPE rsnodename,
TXTSH TYPE rstxtsh,
END OF GT_FILE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;according to ur code work area and table name are same &lt;STRONG&gt;GT_FILE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT gt_file .
  INSERT Ztable FROM gt_file.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just try this....&lt;/P&gt;&lt;P&gt;Hope this helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 09:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720610#M895666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T09:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720611#M895667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried  as you said but its not working, and its going to dump.&lt;/P&gt;&lt;P&gt;please help how to do&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 09:41:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/3720611#M895667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T09:41:55Z</dc:date>
    </item>
  </channel>
</rss>

