<?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: ABAP code help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238739#M141523</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can not search for '#' as it will probably not find it because it is not a "#" but a unprintable character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Apr 2006 19:51:28 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-04-11T19:51:28Z</dc:date>
    <item>
      <title>ABAP code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238736#M141520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Related to the previous question, the SHIFT command does not recognize the '#' sign over there. it does not eliminate so what I have used before to remove it is.&lt;/P&gt;&lt;P&gt;this is the logic..&lt;/P&gt;&lt;P&gt;if znewlawsoncode+??? na 'abcdefghijklmnopqurstuvwxyz'.&lt;/P&gt;&lt;P&gt;       shift znewlawsoncode right by 1 places.&lt;/P&gt;&lt;P&gt;       condense znewlawsoncode.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;Because the value for this field varies in length for each record sometimes it is 5 chars or 10 or 25 so how can I check for '#' sign here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As of now I have encountered the field with a constant field length, this is a different scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2006 19:25:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238736#M141520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-11T19:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238737#M141521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SEARCH string FOR '#'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-FDPOS contains the offset of the found string or the found word within the field. &lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2006 19:49:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238737#M141521</guid>
      <dc:creator>LucianoBentiveg</dc:creator>
      <dc:date>2006-04-11T19:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238738#M141522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


report zrich_0001.


data: c(2000) type c.
data: len type i.
data: offset type i.


c = 'asdl;fkjas;ldkfja;lskdjf;laksjdfklasjfiwoeirn#'.

len = strlen( c ).
offset = len - 1.
clear c+offset(1).

write:/ c.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2006 19:50:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238738#M141522</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-04-11T19:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238739#M141523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can not search for '#' as it will probably not find it because it is not a "#" but a unprintable character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2006 19:51:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238739#M141523</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-04-11T19:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238740#M141524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tested.... works fine for me.&lt;/P&gt;&lt;P&gt;May be you are wrong.&lt;/P&gt;&lt;P&gt;Check it.&lt;/P&gt;&lt;P&gt;Bye.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2006 20:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238740#M141524</guid>
      <dc:creator>LucianoBentiveg</dc:creator>
      <dc:date>2006-04-11T20:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238741#M141525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peluka, what you may be testing is using the actual character '#'. But what Vinu is facing is a special character that is there on the file but in SAP it just shows up as '#'. It is not the character '#'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To test, create a small test file with one line having two values 'A' and 'B'. Seperate them with a tab. Now upload the file into an internal table and see the contents. You will see '#' instead of tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2006 20:08:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238741#M141525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-11T20:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238742#M141526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, you win.&lt;/P&gt;&lt;P&gt;I´m wrong. Sory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2006 20:09:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238742#M141526</guid>
      <dc:creator>LucianoBentiveg</dc:creator>
      <dc:date>2006-04-11T20:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238743#M141527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thansk Rich, It worked and is easy way to get rid of the '#' sign.&lt;/P&gt;&lt;P&gt;Vinu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2006 20:28:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-help/m-p/1238743#M141527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-11T20:28:12Z</dc:date>
    </item>
  </channel>
</rss>

