<?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: Moving values b/w fields having different data types in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-values-b-w-fields-having-different-data-types/m-p/2531515#M574058</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;&lt;/P&gt;&lt;P&gt;Actually, sap supports character format in which ASCII format. So, you can covert from one type to another type. Sap internally identifies as a character.&lt;/P&gt;&lt;P&gt;go throgh the following example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: char1 type c value '5',&lt;/P&gt;&lt;P&gt;num type i.&lt;/P&gt;&lt;P&gt;move char1 to num.&lt;/P&gt;&lt;P&gt;write num.&lt;/P&gt;&lt;P&gt;output num = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 08 Jul 2007 06:32:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-08T06:32:39Z</dc:date>
    <item>
      <title>Moving values b/w fields having different data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-values-b-w-fields-having-different-data-types/m-p/2531513#M574056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we move values b/w fields having different data types? &lt;/P&gt;&lt;P&gt;Any sample code for type casting it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;sushmitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Jul 2007 05:27:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-values-b-w-fields-having-different-data-types/m-p/2531513#M574056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-08T05:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Moving values b/w fields having different data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-values-b-w-fields-having-different-data-types/m-p/2531514#M574057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sushmitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can move the values one data type to others,&lt;/P&gt;&lt;P&gt;if you do not have any calculation then move to charcter type  otherwise use same data type to same data type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simple example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: quant(17) type c.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;value from mseg-menge to quant&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;quant = mseg-menge.-&amp;gt; menge is quantity field&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;replace ',' with space into quant.&lt;/P&gt;&lt;P&gt;condense quant no-gaps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below links :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3260358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3260358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3427358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3427358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Seshu Maramreddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Jul 2007 05:51:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-values-b-w-fields-having-different-data-types/m-p/2531514#M574057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-08T05:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Moving values b/w fields having different data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-values-b-w-fields-having-different-data-types/m-p/2531515#M574058</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;&lt;/P&gt;&lt;P&gt;Actually, sap supports character format in which ASCII format. So, you can covert from one type to another type. Sap internally identifies as a character.&lt;/P&gt;&lt;P&gt;go throgh the following example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: char1 type c value '5',&lt;/P&gt;&lt;P&gt;num type i.&lt;/P&gt;&lt;P&gt;move char1 to num.&lt;/P&gt;&lt;P&gt;write num.&lt;/P&gt;&lt;P&gt;output num = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Jul 2007 06:32:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-values-b-w-fields-having-different-data-types/m-p/2531515#M574058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-08T06:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Moving values b/w fields having different data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-values-b-w-fields-having-different-data-types/m-p/2531516#M574059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Jul 2007 09:51:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-values-b-w-fields-having-different-data-types/m-p/2531516#M574059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-08T09:51:28Z</dc:date>
    </item>
  </channel>
</rss>

