<?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: Type conflict when calling a function module (field length). in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013445#M1497059</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;Change the declaration part as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: it_IRKPF type IRKPF,
            it_ERKPF type ERKPF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 05 Jun 2010 07:11:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-05T07:11:47Z</dc:date>
    <item>
      <title>Type conflict when calling a function module (field length).</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013439#M1497053</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 am facing this issue, can anyone tell me how to correct it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Short text  &lt;/P&gt;&lt;P&gt;               Type conflict when calling a function module (field length).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal notes &lt;/P&gt;&lt;P&gt;                The termination was triggered in function "FuncParams"          &lt;/P&gt;&lt;P&gt;                 of the SAP kernel, in line 3166 of the module                   &lt;/P&gt;&lt;P&gt;                "//bas/700_REL/src/krn/runt/abfunc.c#16".                      &lt;/P&gt;&lt;P&gt;                The internal operation just processed is "FUNC".                &lt;/P&gt;&lt;P&gt;                Internal mode was started at 20100605085803.                    &lt;/P&gt;&lt;P&gt;                 Name of function module...............: "MBW_CREATE_RESERVATION"&lt;/P&gt;&lt;P&gt;                 Name of formal parameter..............: "IRKPF"                 &lt;/P&gt;&lt;P&gt;                Technical type of actual parameter....: "h"                     &lt;/P&gt;&lt;P&gt;                Technical length of actual parameter..: 8 bytes                 &lt;/P&gt;&lt;P&gt;                 Technical type of formal parameter....: "u"                     &lt;/P&gt;&lt;P&gt;                 Technical length of formal parameter..: 271 bytes               &lt;/P&gt;&lt;P&gt;                 Name of formal parameter at caller....: "IRKPF"                 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Karthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jun 2010 06:15:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013439#M1497053</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-05T06:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict when calling a function module (field length).</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013440#M1497054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthi,&lt;/P&gt;&lt;P&gt;Such Type conflict dump happens when the there is a structure mismatch between the parameters of function module and the data passed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to ensure that there is no mismatch between these two..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Post the structure type so that we can analyse what exactly is causing the issue..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jun 2010 06:29:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013440#M1497054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-05T06:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict when calling a function module (field length).</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013441#M1497055</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; &lt;/P&gt;&lt;P&gt; DATA: it_IRKPF type STANDARD TABLE OF IRKPF WITH NON-UNIQUE DEFAULT KEY,&lt;/P&gt;&lt;P&gt;             it_ERKPF type STANDARD TABLE OF ERKPF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: WA_IRKPF type IRKPF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WA_IRKPF-werks = wa_resv-werks.&lt;/P&gt;&lt;P&gt;  WA_IRKPF-RSDAT = wa_resv-bdter.&lt;/P&gt;&lt;P&gt;  WA_IRKPF-USNAM = sy-uname.&lt;/P&gt;&lt;P&gt;  WA_IRKPF-BWART = wa_resv-bwart.&lt;/P&gt;&lt;P&gt;  APPEND WA_IRKPF to it_IRKPF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'MBW_CREATE_RESERVATION'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      IRKPF   = it_IRKPF&lt;/P&gt;&lt;P&gt;      XALLP   = ' '&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      ERKPF   = it_ERKPF&lt;/P&gt;&lt;P&gt;      E_RSNUM = res_no&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      ERESB   = ZRETURN&lt;/P&gt;&lt;P&gt;      IRESB   = it_recr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my code. &lt;/P&gt;&lt;P&gt;Whethere i did in correct way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jun 2010 06:35:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013441#M1497055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-05T06:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict when calling a function module (field length).</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013442#M1497056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Can you check and make sure that the strcucture of the following parameters are compatible or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E_RSNUM = res_no&lt;/P&gt;&lt;P&gt;ERESB = ZRETURN&lt;/P&gt;&lt;P&gt;IRESB = it_recr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IRKPF = it_IRKPF and ERKPF = it_ERKPF seems to be fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jun 2010 06:50:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013442#M1497056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-05T06:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict when calling a function module (field length).</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013443#M1497057</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 checked the structure's are all correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its telling me like this error,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Technical type of actual parameter....: "h"      &lt;/P&gt;&lt;P&gt;Technical length of actual parameter..: 8 bytes  &lt;/P&gt;&lt;P&gt;Technical type of formal parameter....: "u"      &lt;/P&gt;&lt;P&gt;Technical length of formal parameter..: 271 bytes&lt;/P&gt;&lt;P&gt;Name of formal parameter at caller....: "IRKPF"  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;What is h and u here, i cant understand?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Karthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jun 2010 07:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013443#M1497057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-05T07:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict when calling a function module (field length).</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013444#M1497058</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 this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;IRKPF = wa_IRKPF&lt;/P&gt;&lt;P&gt;XALLP = ' '&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;ERKPF = wa_ERKPF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exporting parameters are expecting structure and not table which you are passing right now..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you have any issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jun 2010 07:10:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013444#M1497058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-05T07:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict when calling a function module (field length).</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013445#M1497059</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;Change the declaration part as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: it_IRKPF type IRKPF,
            it_ERKPF type ERKPF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jun 2010 07:11:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013445#M1497059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-05T07:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict when calling a function module (field length).</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013446#M1497060</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;Still the same issue i am facing after changing also..&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Karthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jun 2010 07:33:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013446#M1497060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-05T07:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict when calling a function module (field length).</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013447#M1497061</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;See SAP standard program LMEWBF01 for reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jun 2010 07:36:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013447#M1497061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-05T07:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: Type conflict when calling a function module (field length).</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013448#M1497062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinod Kumar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That helped me, i solved the issue also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jun 2010 09:01:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-conflict-when-calling-a-function-module-field-length/m-p/7013448#M1497062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-05T09:01:07Z</dc:date>
    </item>
  </channel>
</rss>

