<?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: String Reverse in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691423#M1102720</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;STRING_REVERSE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Nov 2008 08:08:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-04T08:08:35Z</dc:date>
    <item>
      <title>String Reverse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691421#M1102718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody i wanted to know how to reverse a string and extract the last 3 charcters of the string into a separate variable.&lt;/P&gt;&lt;P&gt;I have to reverse the string using the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Prem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:05:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691421#M1102718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T08:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: String Reverse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691422#M1102719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FM: STRING_REVERSE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:07:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691422#M1102719</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-04T08:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: String Reverse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691423#M1102720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;STRING_REVERSE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:08:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691423#M1102720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T08:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: String Reverse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691424#M1102721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me be a bit more specific about the problem i want to know where is the reverse string stored i.e in which parameter and how to extract only the last 3 characters of the reversed string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:13:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691424#M1102721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T08:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: String Reverse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691425#M1102722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT  ZSRK_023                                .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : P_STRING(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : RSTRING(30),&lt;/P&gt;&lt;P&gt;       LEN TYPE I,&lt;/P&gt;&lt;P&gt;       L TYPE I,&lt;/P&gt;&lt;P&gt;       RESULT(3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'STRING_REVERSE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    STRING    = P_STRING&lt;/P&gt;&lt;P&gt;    LANG      = 'E'&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    RSTRING   = RSTRING&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    TOO_SMALL = 1&lt;/P&gt;&lt;P&gt;    OTHERS    = 2.&lt;/P&gt;&lt;P&gt;LEN = STRLEN( RSTRING ).&lt;/P&gt;&lt;P&gt;L = LEN - 3.&lt;/P&gt;&lt;P&gt;RESULT = RSTRING+L(3).&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WRITE : / RESULT.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691425#M1102722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T08:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: String Reverse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691426#M1102723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks sreekant for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:22:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691426#M1102723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T08:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: String Reverse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691427#M1102724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;does it mean, that you only need the first three characters of the original string in reversed order? if yes, you can use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONCATENATE string+2(1) string+1(1) string(1) INTO string_new.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691427#M1102724</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-04T08:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: String Reverse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691428#M1102725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi eric,&lt;/P&gt;&lt;P&gt; No i actually want the last 3 charcters of the original in reverse order. actually i apologize for the confusion.&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:46:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691428#M1102725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T08:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: String Reverse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691429#M1102726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no problem, I have a simplier solution for that as well &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : gv_length TYPE i,
gv_text TYPE string,
gv_result(3) TYPE c.

gv_length = strlen( gv_text ).
DO 3 TIMES.
gv_length = gv_length - 1.
CONCATENATE gv_result gv_text+gv_length(1) INTO gv_result.
ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:59:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691429#M1102726</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-04T08:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: String Reverse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691430#M1102727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks eric.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 09:22:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-reverse/m-p/4691430#M1102727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T09:22:08Z</dc:date>
    </item>
  </channel>
</rss>

