<?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: removing comma in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211321#M133559</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just write these lines,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: var type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i = strlen( G_LIFTS ).&lt;/P&gt;&lt;P&gt;i = i - 1.&lt;/P&gt;&lt;P&gt;G_LIFTS = G_LIFTS+0(i).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: G_LIFTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please close this if this solves the Problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Apr 2006 06:27:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-17T06:27:02Z</dc:date>
    <item>
      <title>removing comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211318#M133556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;DATA:G_LIFTS(20).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using G_LIFTS variable iam trying to display some numbers like 2,12,&amp;lt;b&amp;gt;13,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i want to remove ',' in the last.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT G_LIFTS RIGHT DELETING TRAILING ','.&lt;/P&gt;&lt;P&gt;why the above statement is not working...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Feb 2024 17:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211318#M133556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2024-02-03T17:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: removing comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211319#M133557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kaki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using a REPLACE command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE &amp;lt;str1&amp;gt; WITH &amp;lt;str2&amp;gt; INTO &amp;lt;c&amp;gt; [LENGTH &amp;lt;l&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:24:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211319#M133557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: removing comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211320#M133558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;use it like this &lt;/P&gt;&lt;P&gt;DATA: T(14) VALUE ' abcdefghij',&lt;/P&gt;&lt;P&gt;STRING LIKE T,&lt;/P&gt;&lt;P&gt;STR(6) VALUE 'ghijkl'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;WRITE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT STRING LEFT DELETING LEADING SPACE.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;SHIFT STRING RIGHT DELETING TRAILING STR.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:25:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211320#M133558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: removing comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211321#M133559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just write these lines,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: var type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i = strlen( G_LIFTS ).&lt;/P&gt;&lt;P&gt;i = i - 1.&lt;/P&gt;&lt;P&gt;G_LIFTS = G_LIFTS+0(i).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: G_LIFTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please close this if this solves the Problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:27:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211321#M133559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: removing comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211322#M133560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kaki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Try this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data c type n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  c =  strlen(g_lifts).&lt;/P&gt;&lt;P&gt;  c =  c - 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  g_lifts = g_lifts+c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;srinivasarao oleti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:27:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211322#M133560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: removing comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211323#M133561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data c type n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c = strlen(g_lifts).&lt;/P&gt;&lt;P&gt;c = c - 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_lifts = g_lifts+0(c).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;srinivasarao oleti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:28:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211323#M133561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: removing comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211324#M133562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaki,&lt;/P&gt;&lt;P&gt;chk this out..&lt;/P&gt;&lt;P&gt;DATA: ALPHABET(15) VALUE '     ABCDEFGHIJ', &lt;/P&gt;&lt;P&gt;      M1(4)        VALUE 'ABCD', &lt;/P&gt;&lt;P&gt;      M2(6)        VALUE 'BJJCA '. &lt;/P&gt;&lt;P&gt;SHIFT ALPHABET LEFT DELETING LEADING M1. &lt;/P&gt;&lt;P&gt;The field ALPHABET remains unchanged. &lt;/P&gt;&lt;P&gt;SHIFT ALPHABET LEFT DELETING LEADING SPACE. &lt;/P&gt;&lt;P&gt;The field ALPHABET now has the following contents: &lt;/P&gt;&lt;P&gt;'ABCDEFGHIJ     '. &lt;/P&gt;&lt;P&gt;SHIFT ALPHABET RIGHT DELETING TRAILING M2. &lt;/P&gt;&lt;P&gt;ALPHABET now has the following contents: &lt;/P&gt;&lt;P&gt;'      ABCDEFGHI'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:28:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211324#M133562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: removing comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211325#M133563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sudheer &amp;amp; srinivasa rao...&lt;/P&gt;&lt;P&gt;Points alloted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:37:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/removing-comma/m-p/1211325#M133563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:37:18Z</dc:date>
    </item>
  </channel>
</rss>

