<?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: internal table issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783940#M337730</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi shilpa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can give points for replies by clicking on one of the alternatives shown on the left of the answer box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if this is what you need, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
field-symbols:
  &amp;lt;itab&amp;gt; like itab. "your internal table
read table itab assigning &amp;lt;itab&amp;gt; index 98.
&amp;lt;itab&amp;gt;-address = 'Andheri'.
&amp;lt;itab&amp;gt;-location = 'Mumbai'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It could have been more helpful if you post existing code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 17 Dec 2006 14:00:01 GMT</pubDate>
    <dc:creator>Clemenss</dc:creator>
    <dc:date>2006-12-17T14:00:01Z</dc:date>
    <item>
      <title>internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783939#M337729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suppose there r 500 records in a Internal Table.&lt;/P&gt;&lt;P&gt;  emp id&lt;DEL&gt;adb, emp name&lt;/DEL&gt;Priya,  emp-addres--E Sector,   emp-Location --Noida.&lt;/P&gt;&lt;P&gt;A particular record of no 98, is to b upgraded / modified.&lt;/P&gt;&lt;P&gt;with emp-address&lt;DEL&gt;Andheri,emp-Location&lt;/DEL&gt;-Mumbai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nothing to b changed only location and address to b changed.&lt;/P&gt;&lt;P&gt;Plz give me the logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz do mention how to give points for the best replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Dec 2006 12:59:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783939#M337729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-17T12:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783940#M337730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi shilpa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can give points for replies by clicking on one of the alternatives shown on the left of the answer box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if this is what you need, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
field-symbols:
  &amp;lt;itab&amp;gt; like itab. "your internal table
read table itab assigning &amp;lt;itab&amp;gt; index 98.
&amp;lt;itab&amp;gt;-address = 'Andheri'.
&amp;lt;itab&amp;gt;-location = 'Mumbai'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It could have been more helpful if you post existing code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Dec 2006 14:00:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783940#M337730</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2006-12-17T14:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783941#M337731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try this if you want to read for particular emp id,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
field-symbols:
  &amp;lt;fs_wa&amp;gt; like &amp;lt;internal table&amp;gt;. 
read table &amp;lt;internal table&amp;gt; assigning &amp;lt;fs_wa&amp;gt; with key emp_id = '98'.
if sy-subrc eq 0.
&amp;lt;fs_wa&amp;gt;-address = &amp;lt;New address&amp;gt;.
&amp;lt;fs_wa&amp;gt;-location = &amp;lt;new location&amp;gt;.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To reward point you can click the radio buttons to award points appropiately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kathirvel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Dec 2006 14:08:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783941#M337731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-17T14:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783942#M337732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read the internal table with that 98 index and do this &lt;/P&gt;&lt;P&gt;it_tab-address = 'Andheri'.&lt;/P&gt;&lt;P&gt;it_tab-location = 'Mumbai'.&lt;/P&gt;&lt;P&gt;then moddify the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vikranth khimavath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Khimavath Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Dec 2006 14:13:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783942#M337732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-17T14:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783943#M337733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read table itab index 98.&lt;/P&gt;&lt;P&gt;itab-address = 'Andheri'.&lt;/P&gt;&lt;P&gt;itab-location = 'Mumbai'.&lt;/P&gt;&lt;P&gt;modify itab index 98 transporting address location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Dec 2006 16:52:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/1783943#M337733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-17T16:52:12Z</dc:date>
    </item>
  </channel>
</rss>

