<?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 LE_DSP_REMOTE function in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/le-dsp-remote-function/m-p/6033207#M1349726</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;In my ABAP program I'm using LE_DSP_REMOTE function by filling the following fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if_confirm_decentral = 'X'.&lt;/P&gt;&lt;P&gt;if_pmode                   = '0003'.&lt;/P&gt;&lt;P&gt;IT_RES-resno           =  '0001'.&lt;/P&gt;&lt;P&gt;IT_RES-vbeln            = delivery_number.&lt;/P&gt;&lt;P&gt;IT_RES-posnr           =  delivery_item_number.&lt;/P&gt;&lt;P&gt;IT_RES-akmng          = 'A'.&lt;/P&gt;&lt;P&gt;IT_RES-lfimg             = delivery_amount_tobe_splitted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my program when I push a button I fill these fields and call this program it works fine for the first time, but when I call the program again for different values it gives the following message: " Function module LE_DSP_REMOTE was terminated with exception INTERNAL_ERROR  (CRPOINxxxx)". Do you have any ideas about the 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, 04 Aug 2009 08:45:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-04T08:45:41Z</dc:date>
    <item>
      <title>LE_DSP_REMOTE function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/le-dsp-remote-function/m-p/6033207#M1349726</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;In my ABAP program I'm using LE_DSP_REMOTE function by filling the following fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if_confirm_decentral = 'X'.&lt;/P&gt;&lt;P&gt;if_pmode                   = '0003'.&lt;/P&gt;&lt;P&gt;IT_RES-resno           =  '0001'.&lt;/P&gt;&lt;P&gt;IT_RES-vbeln            = delivery_number.&lt;/P&gt;&lt;P&gt;IT_RES-posnr           =  delivery_item_number.&lt;/P&gt;&lt;P&gt;IT_RES-akmng          = 'A'.&lt;/P&gt;&lt;P&gt;IT_RES-lfimg             = delivery_amount_tobe_splitted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my program when I push a button I fill these fields and call this program it works fine for the first time, but when I call the program again for different values it gives the following message: " Function module LE_DSP_REMOTE was terminated with exception INTERNAL_ERROR  (CRPOINxxxx)". Do you have any ideas about the 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, 04 Aug 2009 08:45:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/le-dsp-remote-function/m-p/6033207#M1349726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-04T08:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: LE_DSP_REMOTE function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/le-dsp-remote-function/m-p/6033208#M1349727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Mr. Dynasty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you ever tried calling the function in this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: taskname type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'LE_DSP_REMOTE'  &lt;U&gt;STARTING NEW TASK taskname&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  EXPORTING&lt;/P&gt;&lt;P&gt;                    IF_SIMULATE                 = IF_SIMULATE1&lt;/P&gt;&lt;P&gt;                    IF_CONFIRM_DECENTRAL        = IF_CONFIRM_DECENTRAL1&lt;/P&gt;&lt;P&gt;                    IF_PMODE                    = IF_PMODE1&lt;/P&gt;&lt;P&gt;                  TABLES&lt;/P&gt;&lt;P&gt;                    IT_RES                      = IT_RES2&lt;/P&gt;&lt;P&gt;                    ET_DETAIL                   = ET_DETAIL1&lt;/P&gt;&lt;P&gt;                    ET_SUMM                     = ET_SUMM1&lt;/P&gt;&lt;P&gt;                    ET_SUMM_23                  = ET_SUMM_231&lt;/P&gt;&lt;P&gt;                 EXCEPTIONS&lt;/P&gt;&lt;P&gt;                   ERROR_IN_SUBFUNCTIONS       = 1&lt;/P&gt;&lt;P&gt;                   OTHERS                      = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The key point here is using the &lt;U&gt;STARTING NEW TASK&lt;/U&gt; addition. Otherwise you cannot use the function more than once in your &lt;/P&gt;&lt;P&gt;ABAP program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2009 07:40:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/le-dsp-remote-function/m-p/6033208#M1349727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-06T07:40:23Z</dc:date>
    </item>
  </channel>
</rss>

