<?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: Runtime error while executing 'CUSTOMER_CLEARING' function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418975#M1409033</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;The fm CUSTOMER_CLEARING clears the custpmer open item by BDC program, so the I_MODE has to be equal to A (forground), N (background) or E (stop at the first error)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Nov 2009 13:27:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-18T13:27:19Z</dc:date>
    <item>
      <title>Runtime error while executing 'CUSTOMER_CLEARING' function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418972#M1409030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I execute fm 'CUSTOMER_CLEARING', I get a run time error that says that there is a type mismatch with respect to &lt;/P&gt;&lt;P&gt;'I_MODE' parameter used. This dump occurs when there is a call to fm 'POSTING_INTERFACE_START' by this fm. I tried executing it with different values for 'I_MODE' ,such as 'A', 'S', 'E' etc but every time it gave a run time error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest what might have gone wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&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;Puja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 13:06:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418972#M1409030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T13:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error while executing 'CUSTOMER_CLEARING' function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418973#M1409031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It means that the type you are using for I_MODE is not correct. But it strikes me as kind of odd, that this dump only occurs after the first function module is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the extended check to find out if there are any type mismatches for your parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 13:22:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418973#M1409031</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-11-18T13:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error while executing 'CUSTOMER_CLEARING' function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418974#M1409032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'POSTING_INTERFACE_START'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            I_CLIENT           = SY-MANDT&lt;/P&gt;&lt;P&gt;            I_FUNCTION         = 'C'           "Call Transaction&lt;/P&gt;&lt;P&gt;            I_GROUP            = XT_BSSPARA-MAPPE&lt;/P&gt;&lt;P&gt;            I_MODE             = I_MODE&lt;/P&gt;&lt;P&gt;            I_HOLDDATE         = XT_BSSPARA-HOLDD&lt;/P&gt;&lt;P&gt;            I_KEEP             = XT_BSSPARA-KEEPM&lt;/P&gt;&lt;P&gt;            I_USER             = XT_BSSPARA-USERN&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            CLIENT_INCORRECT   = 01&lt;/P&gt;&lt;P&gt;            FUNCTION_INVALID   = 02&lt;/P&gt;&lt;P&gt;            GROUP_NAME_MISSING = 03&lt;/P&gt;&lt;P&gt;            MODE_INVALID       = 04&lt;/P&gt;&lt;P&gt;            UPDATE_INVALID     = 05.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  break ruettgers.        "/ JWE P40K041774&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    MESSAGE A217(68).       "/ JWE  P40K041774&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think it is happening because of field lenghth declaration, try to find it .&lt;/P&gt;&lt;P&gt;try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kpsgoutam on Nov 18, 2009 2:23 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 13:22:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418974#M1409032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T13:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error while executing 'CUSTOMER_CLEARING' function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418975#M1409033</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;The fm CUSTOMER_CLEARING clears the custpmer open item by BDC program, so the I_MODE has to be equal to A (forground), N (background) or E (stop at the first error)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 13:27:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418975#M1409033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T13:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error while executing 'CUSTOMER_CLEARING' function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418976#M1409034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Puja Das,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;A	Display all screens
E	Display errors only
N	No display&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the values for I_MODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to set it directly without declaring any varible &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or declare the variable of type &lt;STRONG&gt;RFPDO-ALLGAZMD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ilesh Nandaniya&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 13:29:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-while-executing-customer-clearing-function-module/m-p/6418976#M1409034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T13:29:51Z</dc:date>
    </item>
  </channel>
</rss>

