<?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: conversion error in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210536#M133351</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlson,&lt;/P&gt;&lt;P&gt;   It is better to use a char type variable with length 20 although it is supposed to hold a decimal value.&lt;/P&gt;&lt;P&gt;I have faced a similar type of problem and i did the same.&lt;/P&gt;&lt;P&gt;Or You may be getting the dump because the field is expecting 15 + 4  + 1(for sign) + 1(for decimal) so total 21 chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Mar 2006 14:41:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-13T14:41:43Z</dc:date>
    <item>
      <title>conversion error in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210535#M133350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table control with a field defined like dec 20, and i have a table field defined like dec 15 positions 4 decimals, with signe, so.. long = 20, and when i try to pass to the table control for example the value 409.3461-,it gives me a dump with error conversion telling me that the sign has lost, i have tried in the table control with dec 15 too , but the same, i would thank any help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 14:36:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210535#M133350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-13T14:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: conversion error in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210536#M133351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlson,&lt;/P&gt;&lt;P&gt;   It is better to use a char type variable with length 20 although it is supposed to hold a decimal value.&lt;/P&gt;&lt;P&gt;I have faced a similar type of problem and i did the same.&lt;/P&gt;&lt;P&gt;Or You may be getting the dump because the field is expecting 15 + 4  + 1(for sign) + 1(for decimal) so total 21 chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 14:41:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210536#M133351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-13T14:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: conversion error in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210537#M133352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the domain of the receiving field and make sure it allows the sign. If it doesn't, either change the domain so that it does allow the sign or use a different domain that does allow a sign.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(If it's an SAP domain, don't change it.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 15:11:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210537#M133352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-13T15:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: conversion error in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210538#M133353</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;I had faced the same issue with table controls and realized that the conversion error goes away if you put a 'V' in the Text attribute of the field. I had a field of type DEC 4, and I had to put in the text in the field as '___V' (3 spaces and a V at the end). In your case it looks like you will have to populate the field with 19 spaces and a V at the end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have seen the same thing in some of standard SAP screens, that is where i got the idea from, weird as it may sound.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 16:36:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210538#M133353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-13T16:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: conversion error in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210539#M133354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your quick replies, finally i have all data ok, excepting the text mask.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 18:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-error-in-table-control/m-p/1210539#M133354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-13T18:43:54Z</dc:date>
    </item>
  </channel>
</rss>

