<?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: Character Processing  A to  B in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547316#M1266554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK - bear in mind that cut and paste answers are usually removed and points unassigned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Apr 2009 13:16:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-24T13:16:33Z</dc:date>
    <item>
      <title>Character Processing  A to  B</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547309#M1266547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a situation where for a given character say 'A', the program should propose the next in the english alphabet. I have used a logic with field symbols of type X , it works in 4.6c but not in ecc6.0 with the unicode checks. Is there a way to get this  or a function module that does it..&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Krish M on Apr 22, 2009 11:39 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2009 21:35:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547309#M1266547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-22T21:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: Character Processing  A to  B</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547310#M1266548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pretty basic:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ztest LINE-SIZE 80 MESSAGE-ID 00.

PARAMETERS p_let(1) OBLIGATORY.

DATA: f1(26),
      next_let(1),
      pos TYPE i.
MOVE sy-abcde TO f1.
IF f1 CA p_let.
  pos = sy-fdpos + 1.
  IF pos = 26.
    pos = 0.
  ENDIF.
  next_let = f1+pos(1).
  WRITE: p_let, next_let.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2009 22:03:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547310#M1266548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-22T22:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Character Processing  A to  B</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547311#M1266549</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;check this sample program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: input TYPE char1 VALUE 'A',&lt;/P&gt;&lt;P&gt;      output TYPE char1,&lt;/P&gt;&lt;P&gt;      index  TYPE int4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIND FIRST OCCURRENCE OF input IN sy-abcde&lt;/P&gt;&lt;P&gt;     MATCH OFFSET index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK sy-subrc = 0 AND input NE 'Z'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;index = index + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output = sy-abcde+index(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2009 22:07:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547311#M1266549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-22T22:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: Character Processing  A to  B</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547312#M1266550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA: ALL_LETTERS(26),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;NEXT_LETTER(1),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;NEXT_POSITION TYPE I.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MOVE SY-ABCDE TO ALL_LETTERS.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IF ALL_LETTERS CA APLHABET.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;NEXT_POSITION = SY-FDPOS + 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;IF NEXT_POSITION = 26.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;NEXT_POSITION = 0.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;ENDIF.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;NEXT_LETTER = ALL_LETTERS + NEXT_POSITION(1).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;WRITE: APLHABET, NEXT_LETTER.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDIF.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 02:20:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547312#M1266550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T02:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Character Processing  A to  B</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547313#M1266551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interesting code snippet Dileep. But it looks ... I don't know ... kind of familiar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 13:07:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547313#M1266551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T13:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Character Processing  A to  B</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547314#M1266552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using TRANSLATE would seem the simplest.  TRANSLATE string USING 'AB'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p1 type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;translate p1 using 'ABBCCDDEEFFGGHHIIJJKKLLMMNNOOPPQQRRSSTTUUVVWWXXYYZA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 13:18:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547314#M1266552</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-04-23T13:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Character Processing  A to  B</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547315#M1266553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,, I am very much Impressed ROB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know what I did, And you caught it.&lt;/P&gt;&lt;P&gt;But this is what mostly happening in the forums.. just to let to know the moderators i did the same in the moderators post..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for trouble, and as usual I will never repeat..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 00:53:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547315#M1266553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T00:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Character Processing  A to  B</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547316#M1266554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK - bear in mind that cut and paste answers are usually removed and points unassigned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 13:16:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547316#M1266554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T13:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Character Processing  A to  B</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547317#M1266555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;But this is what mostly happening in the forums.. just to let to know the moderators i did the same in the moderators post..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to beleive you..:-)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vijay Babu Dudla on Apr 24, 2009 9:20 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 13:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547317#M1266555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T13:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Character Processing  A to  B</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547318#M1266556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to beleive you..:-)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its Simple,&lt;/P&gt;&lt;P&gt;When I was replying I have seen many replies just copying the code and pasting  the code after a changing case...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I still remember that I have almost reportred nearly 10-12 threads as abuse explaining this...&lt;/P&gt;&lt;P&gt;And after some day I still seen the same user doing the same again... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure in which thread I have seen that. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I am sorry for all the above which is really not necessary, &lt;/P&gt;&lt;P&gt;And Now I got a clear picture &amp;amp; more aware of the forums by looking into the Community Discussions from last few days.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this thread is already closed... we can close this conversation here... &lt;/P&gt;&lt;P&gt;Thanks a lot again to the moderators.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 01:24:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-processing-a-to-b/m-p/5547318#M1266556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T01:24:30Z</dc:date>
    </item>
  </channel>
</rss>

