<?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 problem in condition records upload program (BDC tcode: XK15) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515300#M1260939</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;Did you check the session running in the foreground. This will give you the clear picture for which field conversion is going wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Apr 2009 15:31:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-17T15:31:59Z</dc:date>
    <item>
      <title>conversion problem in condition records upload program (BDC tcode: XK15)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515297#M1260936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    I have downloaded few records from table A017 using key KUMNH (cond no), by the std program RVBTCI01 , i used three structures BRG00, BKOND1, BKOND2 and BKOND3 to download the records.&lt;/P&gt;&lt;P&gt;into a file (.txt) on the server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  now i uploaded the same file using the standard prg RV14BTCI (after recording the the transaction XK15 using BDC).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the amount field in bkond structure BKOND2-KEBTR is giving the conversion error while uploading ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is giving ERROR when the session is processed in sm35 &lt;/P&gt;&lt;P&gt;it is not accepting the decimal places while uploading the amount field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when amount field is made integer its working fine..&lt;/P&gt;&lt;P&gt;this is happening with fields MXWRT and GKWRT too .... (infact in all places where the decimals are used)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any pointers to solve this ???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 15:05:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515297#M1260936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T15:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem in condition records upload program (BDC tcode: XK15)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515298#M1260937</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;Refer to these lines in the report documentation..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;The fields in the structures refer to the data elements for the fields in the original tables.
However, numeric and packed fields are the exception. They require separate data elements of the 
type CHAR for batch input. This is because packed fields cannot be filled with the special ID. Thus, 
amounts with decimal points can be transferred to the interface.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 15:11:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515298#M1260937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T15:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem in condition records upload program (BDC tcode: XK15)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515299#M1260938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  the data elt used for KONP-KBETR in table is&lt;/P&gt;&lt;P&gt;               KBETR_KOND ( which is of type CURR , length 11 and 2 decimal)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  the data elt used for BKOND2-KBETR in structure is &lt;/P&gt;&lt;P&gt;               BKBETR ( which is of type CHAR , length 15 and 0 decimal)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so dat i can download len(11)point(1)decimal(2)  total 15 digits in the structure of 15 char&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the problem comes when i am uploading the same back into the table KONP-KEBTR &lt;/P&gt;&lt;P&gt; which is of type CURR as mentioned above &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help to solve dis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 15:24:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515299#M1260938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T15:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem in condition records upload program (BDC tcode: XK15)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515300#M1260939</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;Did you check the session running in the foreground. This will give you the clear picture for which field conversion is going wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 15:31:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515300#M1260939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T15:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem in condition records upload program (BDC tcode: XK15)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515301#M1260940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@avinash&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes i did it in foreground mode itself&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its not accepting the amount (KBETR) field which is 45.23&lt;/P&gt;&lt;P&gt;  but if i removed the decimal point and make it a interger like 45 or 4523 manually in the foreground ,&lt;/P&gt;&lt;P&gt;then its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: the case is with all the fields having decimal values for eg as i said before MXWRT and GKWRT&lt;/P&gt;&lt;P&gt;too and even the scale qty too&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 15:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515301#M1260940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T15:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem in condition records upload program (BDC tcode: XK15)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515302#M1260941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;reqt closed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2009 11:34:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem-in-condition-records-upload-program-bdc-tcode-xk15/m-p/5515302#M1260941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-07T11:34:33Z</dc:date>
    </item>
  </channel>
</rss>

