<?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: Increment the character in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165462#M121647</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot ,&lt;/P&gt;&lt;P&gt;Solution worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Saurabh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Jan 2006 09:14:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-03T09:14:36Z</dc:date>
    <item>
      <title>Increment the character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165458#M121643</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 want to increment the Character . e.g &lt;/P&gt;&lt;P&gt;A + 1 = B. Can any body tell me how it can be done?Saurabh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 08:38:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165458#M121643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T08:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Increment the character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165459#M121644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF sy-abcde CA lettre.&lt;/P&gt;&lt;P&gt;    sy-fdpos = sy-fdpos + 1 .&lt;/P&gt;&lt;P&gt;    lettre = sy-abcde+sy-fdpos(1).&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;don't forget the reward plz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 08:42:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165459#M121644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T08:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Increment the character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165460#M121645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it solved now ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 08:59:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165460#M121645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T08:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Increment the character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165461#M121646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this program,&lt;/P&gt;&lt;P&gt;REPORT  ZSRIM_TEMP5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : V_C1 TYPE C VALUE 'X',&lt;/P&gt;&lt;P&gt;       V_POS TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-ABCDE CS V_C1.&lt;/P&gt;&lt;P&gt;  IF SY-FDPOS = 25.&lt;/P&gt;&lt;P&gt;*--I am assuming After 'Z', 'A' has to appear.&lt;/P&gt;&lt;P&gt;    V_POS = 0.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;*--increment to next character&lt;/P&gt;&lt;P&gt;    V_POS = SY-FDPOS + 1.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  V_C1 = SY-ABCDE+V_POS.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now V_C1 will have the next character in the alphabet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi Maruthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;added comments to the program&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi Maruthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 09:07:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165461#M121646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T09:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Increment the character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165462#M121647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot ,&lt;/P&gt;&lt;P&gt;Solution worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Saurabh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 09:14:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165462#M121647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T09:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Increment the character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165463#M121648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot STEPHEN ,&lt;/P&gt;&lt;P&gt;Solution worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Saurabh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 09:16:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increment-the-character/m-p/1165463#M121648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T09:16:39Z</dc:date>
    </item>
  </channel>
</rss>

