<?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: data type conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311420#M506325</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;Once put break point near the appending of field catalogue and cheak whether the dta is getting appended correctly in fieldcat internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should work properly..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if so,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;nazeer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 May 2007 05:15:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-16T05:15:21Z</dc:date>
    <item>
      <title>data type conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311416#M506321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   In my ALV report i want to do &amp;lt;b&amp;gt;sum&amp;lt;/b&amp;gt; for a field that is of numeric character data type . In my field catalog for that particular field i entered as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; wa_fcat-do_sum = 'X' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; But it is not working . Can anybody tell me how to overcome this issue .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Points will be rewarded .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2007 04:59:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311416#M506321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-16T04:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: data type conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311417#M506322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also add this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;wa_fcat-datatype = 'CURR'.     " or 'QUAN'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2007 05:08:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311417#M506322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-16T05:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: data type conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311418#M506323</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;In ALV what ever ur passing the value its correct definatly u will get SUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any way i am sending sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NTGEW LIKE LIKP-NTGEW,      "NET WEIGHT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I_FIELDCAT1-FIELDNAME = 'NTGEW'.&lt;/P&gt;&lt;P&gt;  I_FIELDCAT1-SELTEXT_M = 'NET WEIGHT'.&lt;/P&gt;&lt;P&gt;  I_FIELDCAT1-DO_SUM = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND I_FIELDCAT1 TO I_FIELDCAT1.&lt;/P&gt;&lt;P&gt;  CLEAR I_FIELDCAT1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is use full answer please reward me a points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2007 05:13:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311418#M506323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-16T05:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: data type conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311419#M506324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandrasekar ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks a lot . Problem solved . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards ,&lt;/P&gt;&lt;P&gt;Senthil Kumar R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2007 05:15:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311419#M506324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-16T05:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: data type conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311420#M506325</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;Once put break point near the appending of field catalogue and cheak whether the dta is getting appended correctly in fieldcat internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should work properly..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if so,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;nazeer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2007 05:15:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion/m-p/2311420#M506325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-16T05:15:21Z</dc:date>
    </item>
  </channel>
</rss>

