<?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: Facing problem during use of Function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477074#M1254070</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Check the data type in the function module &amp;amp; in the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Apr 2009 09:46:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-10T09:46:02Z</dc:date>
    <item>
      <title>Facing problem during use of Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477073#M1254069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have to use one function module I have to pass kunnr and one structure.&lt;/P&gt;&lt;P&gt;Following is the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT I_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_CHARACT-ATINN = I_FINAL-ATINN.&lt;/P&gt;&lt;P&gt;I_CHARACT-KLART = '011'        .&lt;/P&gt;&lt;P&gt;I_CHARACT-ATWRT = I_FINAL-ATWRT.&lt;/P&gt;&lt;P&gt;append i_charact.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_SD_CHARACT_CHANGE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    IV_KUNNR         = I_FINAL-KUNNR&lt;/P&gt;&lt;P&gt;    IT_CHARACT       = I_CHARACT[]&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have defined I_CHARACT like IT_CHARACT.&lt;/P&gt;&lt;P&gt;IT_CHARACT-ATINN IS NUMERIC TYPE AND no.of charectar is 10.But its output lenght is 30 and having conversion routine ATINN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now our requirmrnt is that we have to pass some text like AMAR_KUMAR in that ATINN field but it is not reading this value thr program but when I give this thr sm37 then it reads.&lt;/P&gt;&lt;P&gt;And I tried to change I_charact table type but it gives dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 09:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477073#M1254069</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T09:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem during use of Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477074#M1254070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Check the data type in the function module &amp;amp; in the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 09:46:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477074#M1254070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T09:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem during use of Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477075#M1254071</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;try passing 'AMAR_KUMAR' via FM CONVERSION_EXIT_ATINN_INPUT first and then append the output to I_CHARACT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. &lt;/P&gt;&lt;P&gt;data : lv_atinn type atinn value 'AMAR_KUMAR' .   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ATINN_INPUT&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;             VALUE = lv_atinn &lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;              VALUE = lv_atinn &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use lv_atinn .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 09:51:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477075#M1254071</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2009-04-10T09:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem during use of Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477076#M1254072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the data element of I_CHARACT-ATINN same as required for IT_CHARACT-ATINN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit Mohan Gupta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 09:53:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477076#M1254072</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T09:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem during use of Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477077#M1254073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks...Dev&lt;/P&gt;&lt;P&gt;I hope it will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 10:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-during-use-of-function-module/m-p/5477077#M1254073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T10:55:18Z</dc:date>
    </item>
  </channel>
</rss>

