<?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 Quantity field conversion problem in SAP script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-conversion-problem-in-sap-script/m-p/2060680#M425867</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;&lt;/P&gt;&lt;P&gt;I have problem with sap script quantity field conversion. &lt;/P&gt;&lt;P&gt;In purchase order the actual value of field( MDPM-ERFMG) is 3,500. &lt;/P&gt;&lt;P&gt;But in Print preview it is showing only 3.5&lt;/P&gt;&lt;P&gt;Any one Please help me in this problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Mar 2007 11:10:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-15T11:10:13Z</dc:date>
    <item>
      <title>Quantity field conversion problem in SAP script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-conversion-problem-in-sap-script/m-p/2060680#M425867</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;&lt;/P&gt;&lt;P&gt;I have problem with sap script quantity field conversion. &lt;/P&gt;&lt;P&gt;In purchase order the actual value of field( MDPM-ERFMG) is 3,500. &lt;/P&gt;&lt;P&gt;But in Print preview it is showing only 3.5&lt;/P&gt;&lt;P&gt;Any one Please help me in this problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 11:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-conversion-problem-in-sap-script/m-p/2060680#M425867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T11:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Quantity field conversion problem in SAP script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-conversion-problem-in-sap-script/m-p/2060681#M425868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It is rightly  printing.&lt;/P&gt;&lt;P&gt;Value of  MDPM-ERFMG is 3,500. here it is not comma, full stop (All Qty fields are with 3 decimals)&lt;/P&gt;&lt;P&gt;Change your settings in SU01 Tcode.&lt;/P&gt;&lt;P&gt;In script, it might be written as &amp;amp;MDPM-ERFMG(.1)&amp;amp; so it is printing&lt;/P&gt;&lt;P&gt;3.5.(with one decimals)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 11:16:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-conversion-problem-in-sap-script/m-p/2060681#M425868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T11:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Quantity field conversion problem in SAP script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-conversion-problem-in-sap-script/m-p/2060682#M425869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Number of Decimal Places 

A program symbol of one of the data types DEC, QUAN, and FLTP can contain decimal place data. Use the option below to override the Dictionary definition for the number of decimal places for the formatting of this symbol value. 

Syntax

&amp;amp;symbol(.N)&amp;amp; 



The EKPO-MENGE field contains the value 1234.56. The Dictionary definition specifies 3 decimal places and an output length of 17. 

&amp;amp;EKPO-MENGE&amp;amp; -&amp;gt; 1,234.560 
&amp;amp;EKPO-MENGE(.1) -&amp;gt; 1,234.6 
&amp;amp;EKPO-MENGE&amp;amp;(.4) -&amp;gt; 1,234.5600 
&amp;amp;EKPO-MENGE&amp;amp;(.0) -&amp;gt; 1,235 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 11:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-conversion-problem-in-sap-script/m-p/2060682#M425869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T11:24:42Z</dc:date>
    </item>
  </channel>
</rss>

