<?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: modify Internal table records without using ,update,insert keywords in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-records-without-using-update-insert-keywords/m-p/4659498#M1096267</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; use fieldsymbols..&lt;/P&gt;&lt;P&gt;search in SCN for  examples on fieldsymbols..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds.,&lt;/P&gt;&lt;P&gt;subash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Oct 2008 10:11:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-28T10:11:26Z</dc:date>
    <item>
      <title>modify Internal table records without using ,update,insert keywords</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-records-without-using-update-insert-keywords/m-p/4659497#M1096266</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;is it possible to modify the internal table records without using modify,update,insert keywords&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2008 10:10:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-records-without-using-update-insert-keywords/m-p/4659497#M1096266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-28T10:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: modify Internal table records without using ,update,insert keywords</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-records-without-using-update-insert-keywords/m-p/4659498#M1096267</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; use fieldsymbols..&lt;/P&gt;&lt;P&gt;search in SCN for  examples on fieldsymbols..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds.,&lt;/P&gt;&lt;P&gt;subash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2008 10:11:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-records-without-using-update-insert-keywords/m-p/4659498#M1096267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-28T10:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: modify Internal table records without using ,update,insert keywords</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-records-without-using-update-insert-keywords/m-p/4659499#M1096268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Swamy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below you find sample coding for your problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: lt_knb1   TYPE knb1.

FIELD-SYMBOLS: &amp;lt;ls_knb1&amp;gt;   TYPE knb1.
FIELD-SYMBOLS: &amp;lt;ls_record&amp;gt; TYPE any,
                            &amp;lt;ls_fld&amp;gt;       TYPE any.

" Typed field symbol
LOOP AT lt_knb1 ASSIGNING &amp;lt;ls_knb1&amp;gt;.
  &amp;lt;ls_knb1&amp;gt;-ernam = syst-uname.  " directly modifies itab contents
ENDLOOP.

" Untyped field-symbol
LOOP AT lt_itab ASSIGNING &amp;lt;ls_record&amp;gt;.

  DO.
    ASSIGN COMPONENT syst-index OF STRUCTURE &amp;lt;ls_record&amp;gt; TO &amp;lt;ld_fld&amp;gt;.
    IF ( syst-subrc NE 0 ).
      EXIT.
    ENDIF.

    &amp;lt;ld_fld&amp;gt; = "...".   " directly modifies itab contents
  ENDDO.

ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2008 10:48:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-records-without-using-update-insert-keywords/m-p/4659499#M1096268</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-10-28T10:48:46Z</dc:date>
    </item>
  </channel>
</rss>

