<?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 CX_SY_CONVERSION_OVERFLOW in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187111#M759040</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;   Same question as y'day.Iam getting this error  CX_SY_CONVERSION_OVERFLOW..the code works fine in mysap..when copied this in sapR/3 its not working and iam getting this error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijaya durga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 Dec 2007 17:35:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-15T17:35:26Z</dc:date>
    <item>
      <title>CX_SY_CONVERSION_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187111#M759040</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;   Same question as y'day.Iam getting this error  CX_SY_CONVERSION_OVERFLOW..the code works fine in mysap..when copied this in sapR/3 its not working and iam getting this error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijaya durga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Dec 2007 17:35:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187111#M759040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-15T17:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: CX_SY_CONVERSION_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187112#M759041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vijaya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;don't know your yesterdays question. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide information about where the error occurs - including source field value and target field technical characteristics.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Dec 2007 18:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187112#M759041</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-12-15T18:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: CX_SY_CONVERSION_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187113#M759042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  when iam running a custom function module iam getting the error &lt;/P&gt;&lt;P&gt;Re: CX_SY_CONVERSION_OVERFLOW.&lt;/P&gt;&lt;P&gt;its working fine in MYSAP and its giving this error in R/3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the error shows in this line&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;&lt;/P&gt;&lt;P&gt;               &amp;lt;fs_dyn_table&amp;gt;    TYPE STANDARD TABLE,&lt;/P&gt;&lt;P&gt;               &amp;lt;fs_dyn_wa&amp;gt;       TYPE ANY,&lt;/P&gt;&lt;P&gt;                &amp;lt;fs_record&amp;gt;       TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;fs_dyn_table&amp;gt; ASSIGNING &amp;lt;fs_dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING &amp;lt;fs_dyn_wa&amp;gt; TO &amp;lt;fs_record&amp;gt;.&lt;/P&gt;&lt;P&gt;    GET REFERENCE OF gs_record INTO gt_record.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF gv_operation = c_inbound_modify OR gv_operation = c_inbound_create.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  When updating, update the &amp;lt;fs_record&amp;gt; table with what's been sent in&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  the function table INFOTYPE_SET&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    LOOP AT gt_infotype_set ASSIGNING &amp;lt;fs_infotype_set&amp;gt;.&lt;/P&gt;&lt;P&gt;      ASSIGN COMPONENT &amp;lt;fs_infotype_set&amp;gt;-fieldname&lt;/P&gt;&lt;P&gt;          OF STRUCTURE &amp;lt;fs_record&amp;gt; TO &amp;lt;fs_dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SHIFT &amp;lt;fs_infotype_set&amp;gt;-value LEFT DELETING LEADING space.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_dyn_field&amp;gt; = &amp;lt;fs_infotype_set&amp;gt;-value.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Dec 2007 18:15:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187113#M759042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-15T18:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: CX_SY_CONVERSION_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187114#M759043</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;Check this post, May help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3404620"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Dec 2007 18:40:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187114#M759043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-15T18:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: CX_SY_CONVERSION_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187115#M759044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi satish&lt;/P&gt;&lt;P&gt;   Thanks for the reply..i already saw this forum..it doesnt help me..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;vijaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Dec 2007 18:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187115#M759044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-15T18:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: CX_SY_CONVERSION_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187116#M759045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vijaya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when dump occurs you can click debugger button.Cursor is at the command causing the error. Check the contents of the data in &amp;lt;fs_dyn_wa&amp;gt; and the fields in &amp;lt;fs_record&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not necessarily about MYSAP and R/3 - looks more like the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Dec 2007 18:58:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187116#M759045</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-12-15T18:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: CX_SY_CONVERSION_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187117#M759046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi clemen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Thanks for ur reply..i did all that..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Dec 2007 19:21:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187117#M759046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-15T19:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: CX_SY_CONVERSION_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187118#M759047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have had the same problem, the things to check are the Field definitions - the error could be that thre is a mismatch in the Field definition lengths , if this is consistant between the two Field symbols then it is a data problem-- for some STRANGE REASON SAP input firld are inconsistant , if an input field e.g. IE03- &amp;gt; general Data-&amp;gt; weight is defined as Packed 7 dec 3 which is then filled to the max eg 1234567890.120 Kg, then you try an assignment of this value from one Field sysmbol to another - you will get this error..wierd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 16:20:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187118#M759047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-21T16:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: CX_SY_CONVERSION_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187119#M759048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use CATCH statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2011 10:08:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cx-sy-conversion-overflow/m-p/3187119#M759048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-22T10:08:57Z</dc:date>
    </item>
  </channel>
</rss>

