<?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 Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446308#M1054563</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sriharitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This might be due to the miss match of the data types what you are sending to the function module. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once I have faced the same problem, while trying to move the WA_LIKP-VBELN filed(As per my requirement in the functional spec) I had the same problem. After that I tried to pass the value in this way instead of direct passing.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look to this example for clarification,  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: TLINE  LIKE TLINE OCCURS 0 WITH HEADER LINE. "Text lines&lt;/P&gt;&lt;P&gt;DATA: NAME LIKE THEAD-TDNAME. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"this is data type declared in FM for NAME field Do the same in "the program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MOVE WA_LIKP-VBELN TO NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        ID        = '3011'&lt;/P&gt;&lt;P&gt;        LANGUAGE  = 'E'&lt;/P&gt;&lt;P&gt;        NAME      = NAME " WA_LIKP-VBELN.&lt;/P&gt;&lt;P&gt;        OBJECT    = 'VBBK'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        LINES     = TLINE .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Sep 2008 06:04:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-15T06:04:38Z</dc:date>
    <item>
      <title>conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446303#M1054558</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;After executing the program i am getting error like unble to interpret 920,1 as a number.Already i have used fun mod and replace commands also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i am getting this error only for perticular input values which i am giving on  selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls give me reply ASAP.I would be thankful to u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And how can i modify the program based on user settings means userprofile.&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;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 05:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446303#M1054558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T05:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446304#M1054559</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&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;" convert internal format to user format&lt;/P&gt;&lt;P&gt;CALL FUNCTION '/SAPDII/SPP05_CONVERT_DATE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;if_date = lc_date&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;ef_date = lc_date.&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;Booh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 05:50:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446304#M1054559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T05:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446305#M1054560</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;   Give the Input Value Data Type as Character or String in the internal table and Try to Upload. It might be the problem of data type. &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 05:51:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446305#M1054560</guid>
      <dc:creator>saranwin</dc:creator>
      <dc:date>2008-09-15T05:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446306#M1054561</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;This would happen if you are moving numeric values to a character field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly check that and use appropriate data type , this should resolve this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 05:52:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446306#M1054561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T05:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446307#M1054562</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;It's Problem with the Input Value only. Give the Value with Full Length for Example : 000000920. If you give 920 it will give DUMP or error.&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;&lt;/P&gt;&lt;P&gt;Saran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 05:56:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446307#M1054562</guid>
      <dc:creator>saranwin</dc:creator>
      <dc:date>2008-09-15T05:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446308#M1054563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sriharitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This might be due to the miss match of the data types what you are sending to the function module. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once I have faced the same problem, while trying to move the WA_LIKP-VBELN filed(As per my requirement in the functional spec) I had the same problem. After that I tried to pass the value in this way instead of direct passing.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look to this example for clarification,  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: TLINE  LIKE TLINE OCCURS 0 WITH HEADER LINE. "Text lines&lt;/P&gt;&lt;P&gt;DATA: NAME LIKE THEAD-TDNAME. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"this is data type declared in FM for NAME field Do the same in "the program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MOVE WA_LIKP-VBELN TO NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        ID        = '3011'&lt;/P&gt;&lt;P&gt;        LANGUAGE  = 'E'&lt;/P&gt;&lt;P&gt;        NAME      = NAME " WA_LIKP-VBELN.&lt;/P&gt;&lt;P&gt;        OBJECT    = 'VBBK'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        LINES     = TLINE .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 06:04:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446308#M1054563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T06:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: conversion problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446309#M1054564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Mar 2009 10:28:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problem/m-p/4446309#M1054564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-23T10:28:50Z</dc:date>
    </item>
  </channel>
</rss>

