<?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: How did a text display in reverse without using function in ABAP? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290158#M1989316</link>
    <description>&lt;P&gt;The output of this code:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1868814-abap-egitimi-3-odev-1-soru-yazıyı-ters-cevirme.jpg" /&gt;&lt;/P&gt;&lt;P&gt;The output I want is as follows:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1868815-abap-egitimi-3-odev-1-soru-yazıyı-ters-cevirme-2.jpg" /&gt;It should also see the gap in between.&lt;/P&gt;</description>
    <pubDate>Sun, 13 Dec 2020 21:42:57 GMT</pubDate>
    <dc:creator>shrgrl</dc:creator>
    <dc:date>2020-12-13T21:42:57Z</dc:date>
    <item>
      <title>How did a text display in reverse without using function in ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290153#M1989311</link>
      <description>&lt;P&gt;How can a text be write in reverse? How do I access the characters of a text? I want to do this manually without using a function.&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA : c(10) VALUE 'ABCDE'.
DATA : l TYPE i,
       i TYPE i VALUE -1.
DATA : str LIKE c.
l = strlen( c ).
DO l TIMES.
  i = i + 1.
  l = l - 1.
  str+i(1) = C+l(1).
ENDDO.
WRITE str.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;This code works for me but is there a shorter way?&lt;/P&gt;</description>
      <pubDate>Sun, 13 Dec 2020 19:27:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290153#M1989311</guid>
      <dc:creator>shrgrl</dc:creator>
      <dc:date>2020-12-13T19:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: How did a text display in reverse without using function in ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290154#M1989312</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;DATA off TYPE syindex.
DO strlen( in_str ) TIMES.
    off = sy-index - 1.
    out_str = in_str+off(1) &amp;amp;&amp;amp; out_str.
ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 13 Dec 2020 20:24:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290154#M1989312</guid>
      <dc:creator>OlegBash</dc:creator>
      <dc:date>2020-12-13T20:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: How did a text display in reverse without using function in ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290155#M1989313</link>
      <description>&lt;P&gt;Without a function means probably without any function at all, so your code is the shortest legible code.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Dec 2020 21:01:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290155#M1989313</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-12-13T21:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: How did a text display in reverse without using function in ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290156#M1989314</link>
      <description>&lt;P&gt;It will not work properly since there is no gap control.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Dec 2020 21:13:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290156#M1989314</guid>
      <dc:creator>shrgrl</dc:creator>
      <dc:date>2020-12-13T21:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: How did a text display in reverse without using function in ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290157#M1989315</link>
      <description>&lt;P&gt;Could you please provide example when it does not work properly?&lt;/P&gt;&lt;P&gt;Also I want to specify the signature of the method&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  methods REVERSER
    importing
      !IN_STR type STRING default 'any Text'
    exporting
      !OUT_STR type STRING .&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 13 Dec 2020 21:19:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290157#M1989315</guid>
      <dc:creator>OlegBash</dc:creator>
      <dc:date>2020-12-13T21:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: How did a text display in reverse without using function in ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290158#M1989316</link>
      <description>&lt;P&gt;The output of this code:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1868814-abap-egitimi-3-odev-1-soru-yazıyı-ters-cevirme.jpg" /&gt;&lt;/P&gt;&lt;P&gt;The output I want is as follows:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1868815-abap-egitimi-3-odev-1-soru-yazıyı-ters-cevirme-2.jpg" /&gt;It should also see the gap in between.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Dec 2020 21:42:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290158#M1989316</guid>
      <dc:creator>shrgrl</dc:creator>
      <dc:date>2020-12-13T21:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: How did a text display in reverse without using function in ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290159#M1989317</link>
      <description>&lt;P&gt;The screenshot from debug.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1868817-pict14-01.png" /&gt;&lt;/P&gt;&lt;P&gt;Please pay attention that data types are strings, not char-like.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Dec 2020 21:56:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-did-a-text-display-in-reverse-without-using-function-in-abap/m-p/12290159#M1989317</guid>
      <dc:creator>OlegBash</dc:creator>
      <dc:date>2020-12-13T21:56:23Z</dc:date>
    </item>
  </channel>
</rss>

