<?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 Remove first 13 characters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165127#M995766</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have an Infoobject where we load  16 character long records like - AB12345678912001.&lt;/P&gt;&lt;P&gt;I have to transfer everything to a new Infoobject but not the first 13 character. Could you please let me know the best code with all the details...Sorry I am not an ABAPer.&lt;/P&gt;&lt;P&gt;Tahnks for you help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jul 2008 18:16:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-24T18:16:17Z</dc:date>
    <item>
      <title>Remove first 13 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165127#M995766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have an Infoobject where we load  16 character long records like - AB12345678912001.&lt;/P&gt;&lt;P&gt;I have to transfer everything to a new Infoobject but not the first 13 character. Could you please let me know the best code with all the details...Sorry I am not an ABAPer.&lt;/P&gt;&lt;P&gt;Tahnks for you help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 18:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165127#M995766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T18:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first 13 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165128#M995767</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;DATA:&lt;/P&gt;&lt;P&gt;    BEGIN OF fs_tab ,&lt;/P&gt;&lt;P&gt;        field TYPE char16,&lt;/P&gt;&lt;P&gt;    END OF fs_tab,&lt;/P&gt;&lt;P&gt; fs_tab1 LIKE fs_tab,&lt;/P&gt;&lt;P&gt; itab LIKE STANDARD TABLE OF fs_tab,&lt;/P&gt;&lt;P&gt; jtab LIKE STANDARD TABLE OF fs_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fs_tab-field = 'ABC23SCF45KKNS45'.&lt;/P&gt;&lt;P&gt;APPEND fs_tab TO itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fs_tab-field = 'XYC456SCF45KKNS4'.&lt;/P&gt;&lt;P&gt;APPEND fs_tab TO itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fs_tab-field = 'UT9BF23F45KKNS45'.&lt;/P&gt;&lt;P&gt;APPEND fs_tab TO itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT itab INTO fs_tab.&lt;/P&gt;&lt;P&gt;  MOVE fs_tab-field+13(3) TO fs_tab1-field.&lt;/P&gt;&lt;P&gt;  APPEND fs_tab1 TO jtab.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT jtab INTO fs_tab1.&lt;/P&gt;&lt;P&gt;  WRITE:/ fs_tab1-field.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this code will help you to resolve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Phani Diwakar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 18:45:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165128#M995767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T18:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first 13 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165129#M995768</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;if f1 = 'AB12345678912001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then to get the last three characters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ws_f1 = f1+13.   "Chars from 14,15,16 will be copied to variable ws_f1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 18:45:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165129#M995768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T18:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first 13 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165130#M995769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the quick reply , I solved it using a formula in the update rule.&lt;/P&gt;&lt;P&gt;Thanks much. Also assinged points as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 22:53:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165130#M995769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T22:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first 13 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165131#M995770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no comments&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 22:53:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-first-13-characters/m-p/4165131#M995770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T22:53:34Z</dc:date>
    </item>
  </channel>
</rss>

