<?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: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043546#M1172628</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! That solved my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Jan 2009 11:13:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-06T11:13:15Z</dc:date>
    <item>
      <title>Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043536#M1172618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I call a function module, it gives a runtime error like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime error CALL_FUNCTION_CONFLICT_TYPE&lt;/P&gt;&lt;P&gt;Except. CX_SY_DYN_CALL_ILLEGAL_TYPE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that I'm using something like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function zzz&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;        xxx             = yyy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with:&lt;/P&gt;&lt;P&gt;xxx type char50&lt;/P&gt;&lt;P&gt;yyy type char2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a possibility to transform my char2 into a char50? &lt;/P&gt;&lt;P&gt;By doing this, I would be able to use the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 10:27:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043536#M1172618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T10:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043537#M1172619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Glenn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Type of the xxx  and yyy should be same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so take as below:&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;xxx type char50&lt;/P&gt;&lt;P&gt;yyy type char50 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xxx type char2&lt;/P&gt;&lt;P&gt;yyy type char2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will solves your problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 10:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043537#M1172619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T10:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043538#M1172620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data:var(50) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var = yyy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function ab&lt;/P&gt;&lt;P&gt; imp&lt;/P&gt;&lt;P&gt;  xxx = var.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 10:33:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043538#M1172620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T10:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043539#M1172621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Whenever you call a function module, always ensure that your import, export etc parameters are typed in exactly the same way as they are typed in the function module.  This is a foolproof way of avoiding this type of error and I've never seen why anyone would want to do anything else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 10:35:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043539#M1172621</guid>
      <dc:creator>christine_evans</dc:creator>
      <dc:date>2009-01-06T10:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043540#M1172622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I know it should be the same, but for some reasons I can't change the types of these parameters.&lt;/P&gt;&lt;P&gt;So I was looking for a transformation of a char2 to a char50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 10:36:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043540#M1172622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T10:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043541#M1172623</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;do one thing just make the type and size of both the importing and exporting parameter same...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: a(10) type c.   (importing)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: b(10) type c.       (exporting)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think this will help u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ritesh J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 10:40:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043541#M1172623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T10:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043542#M1172624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, this solved my problem!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 10:40:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043542#M1172624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T10:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043543#M1172625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, this solved my problem!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 10:40:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043543#M1172625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T10:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043544#M1172626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! That solved my problem!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 10:40:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043544#M1172626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T10:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043545#M1172627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;This helped to solve my problem!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 10:43:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043545#M1172627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T10:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Exception CX_SY_DYN_CALL_ILLEGAL_TYPE when calling function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043546#M1172628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! That solved my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 11:13:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-cx-sy-dyn-call-illegal-type-when-calling-function/m-p/5043546#M1172628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T11:13:15Z</dc:date>
    </item>
  </channel>
</rss>

