<?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 FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580799#M262058</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting error ' Type conflict when calling a function module '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Johnn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Oct 2006 11:45:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-09T11:45:25Z</dc:date>
    <item>
      <title>FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580799#M262058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting error ' Type conflict when calling a function module '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Johnn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 11:45:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580799#M262058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T11:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580800#M262059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the importing and exporting parameters declared in the same data type that of Function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 11:47:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580800#M262059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T11:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580801#M262060</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;If you are getting this error in Z program then check the parameters defined by for passing to the function module and parameters in the function module are of same data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 11:48:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580801#M262060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T11:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580802#M262061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check your Importing and Exporting Parameters that has to be of the same type as defined in FM..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Example&lt;/P&gt;&lt;P&gt;in GUI_DOWNLOAD FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"     REFERENCE(BIN_FILESIZE) TYPE  I OPTIONAL&lt;/P&gt;&lt;P&gt;*"     REFERENCE(FILENAME) TYPE  STRING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(FILETYPE) TYPE  CHAR10 DEFAULT 'ASC'&lt;/P&gt;&lt;P&gt;*"     REFERENCE(APPEND) TYPE  CHAR01 DEFAULT SPACE&lt;/P&gt;&lt;P&gt;*"     REFERENCE(WRITE_FIELD_SEPARATOR) TYPE  CHAR01 DEFAULT SPACE&lt;/P&gt;&lt;P&gt;*"     REFERENCE(HEADER) TYPE  XSTRING DEFAULT '00'&lt;/P&gt;&lt;P&gt;*"     REFERENCE(TRUNC_TRAILING_BLANKS) TYPE  CHAR01 DEFAULT SPACE&lt;/P&gt;&lt;P&gt;*"     REFERENCE(WRITE_LF) TYPE  CHAR01 DEFAULT 'X'&lt;/P&gt;&lt;P&gt;*"     REFERENCE(COL_SELECT) TYPE  CHAR01 DEFAULT SPACE&lt;/P&gt;&lt;P&gt;*"     REFERENCE(COL_SELECT_MASK) TYPE  CHAR255 DEFAULT SPACE&lt;/P&gt;&lt;P&gt;*"     REFERENCE(DAT_MODE) TYPE  CHAR01 DEFAULT SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;FILENAME HAS TO BE STRING ONLY IF YOU PASS EITHER CHAR OR ANY OTHER DATA TYPE IT POPS YOU SUCH ERROR&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Santosh Kumar P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 11:49:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580802#M262061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T11:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580803#M262062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might have a parameter of your FM with a type different of the expected one.&lt;/P&gt;&lt;P&gt;Check for your importing/exporting parameters and tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erwan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 11:49:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580803#M262062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T11:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580804#M262063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jhon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to se37 - &amp;gt; and chk the type of import and export parameter of that FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;similary u cahnge in ur pgm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 11:54:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580804#M262063</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-10-09T11:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580805#M262064</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;If you are getting this error in Z program then check the parameters defined by for passing to the function module and parameters in the function module are of same data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 12:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1580805#M262064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T12:03:46Z</dc:date>
    </item>
  </channel>
</rss>

