<?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: Program : short dump. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723004#M631769</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shibba,&lt;/P&gt;&lt;P&gt;it was declared like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :  old type F&lt;/P&gt;&lt;P&gt;The value for variable old is not hardcoded, it was derived dynamically&lt;/P&gt;&lt;P&gt;the varaible new should not be declared as type p decimals 3, since the same value wil be moved to modify database MARM_VOLUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so could you pls review this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ponraj.s.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Aug 2007 09:59:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-10T09:59:25Z</dc:date>
    <item>
      <title>Program : short dump.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723001#M631766</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;I am trying to move the value '4.4310028492800003E+10' from a varaiable old declared as TYPE F to another variable new which is decalred as 'MARM-VOLUM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But am getting short dump when try to move this values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What could be the issue&amp;gt;?can any one help in this.&lt;/P&gt;&lt;P&gt;Points surely rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ponraj.s.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 09:07:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723001#M631766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T09:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Program : short dump.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723002#M631767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check fields declarations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Peram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 09:12:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723002#M631767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T09:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Program : short dump.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723003#M631768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think this is because the data is too large to take it in quan type field do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : text type f value '4.4310028492800003E+10',&lt;/P&gt;&lt;P&gt;       abc  type p decimals 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abc = text.&lt;/P&gt;&lt;P&gt;write : / abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 09:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723003#M631768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T09:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Program : short dump.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723004#M631769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shibba,&lt;/P&gt;&lt;P&gt;it was declared like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :  old type F&lt;/P&gt;&lt;P&gt;The value for variable old is not hardcoded, it was derived dynamically&lt;/P&gt;&lt;P&gt;the varaible new should not be declared as type p decimals 3, since the same value wil be moved to modify database MARM_VOLUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so could you pls review this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ponraj.s.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 09:59:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723004#M631769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T09:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: Program : short dump.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723005#M631770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ponraj,&lt;/P&gt;&lt;P&gt;I would recommend that you go to transaction ST22 and then analyze the short dump and also the suggestion it gives to avoid the short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it gets resolved.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 10:13:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723005#M631770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T10:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: Program : short dump.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723006#M631771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sandeep,&lt;/P&gt;&lt;P&gt;in ST22, there is not much given, &lt;/P&gt;&lt;P&gt;its failed due to  "CONVT_UNIT" or  "CONVT_OVERFLOW"   &lt;/P&gt;&lt;P&gt;  i.e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why it shd accomodate the value in variable new (its total lenght is 17)  and decimal value is 3 in it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 10:28:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-short-dump/m-p/2723006#M631771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T10:28:56Z</dc:date>
    </item>
  </channel>
</rss>

