<?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: conversion routine in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-routine/m-p/4188892#M1001300</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;You can move the negative symbol '-' to the left side by using the function module &lt;STRONG&gt;CLOI_PUT_SIGN_IN_FRONT&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can remove the zeroes by using the SHIFT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SHIFT w_variable RIGHT DELETING TRAILING '0'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Imran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 12 Jul 2008 06:46:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-12T06:46:15Z</dc:date>
    <item>
      <title>conversion routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-routine/m-p/4188891#M1001299</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 have  fetched 2 fields from db tables into my int.table by declaring same type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output :1.  5,00000- (data tye: decimal length 10)&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;            2. 3,00      (data type: decimal length 2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually these fields specifies no.of days.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the display format should be like -5 , 3 , 3.5, 50 like.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could anybody plz tell me how to declare ,convert and display?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;helpful answers would be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards.&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jul 2008 06:38:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-routine/m-p/4188891#M1001299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-12T06:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: conversion routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-routine/m-p/4188892#M1001300</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;You can move the negative symbol '-' to the left side by using the function module &lt;STRONG&gt;CLOI_PUT_SIGN_IN_FRONT&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can remove the zeroes by using the SHIFT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SHIFT w_variable RIGHT DELETING TRAILING '0'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Imran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jul 2008 06:46:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-routine/m-p/4188892#M1001300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-12T06:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: conversion routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-routine/m-p/4188893#M1001301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare the output field as T5PA3-NODAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then assign value to this field eg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data lv_no_of_days like T5PA3-NODAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_no_of_days = 'your field having this value'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the - sign to display in front of the value use this FM -CLOI_PUT_SIGN_IN_FRONT &lt;/P&gt;&lt;P&gt;just try where used list and see how to use this FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Kothand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jul 2008 06:47:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-routine/m-p/4188893#M1001301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-12T06:47:26Z</dc:date>
    </item>
  </channel>
</rss>

