<?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: Program rbdapp01 when called from a program is not working in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571548#M1659975</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;Please make use of this method of submit &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : rspar_tab  TYPE TABLE OF rsparams,&lt;/P&gt;&lt;P&gt;        rspar_line LIKE LINE OF rspar_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  rspar_line-selname = 'DOCNUM'.&lt;/P&gt;&lt;P&gt;    rspar_line-sign    = 'I'.&lt;/P&gt;&lt;P&gt;    rspar_line-option  = EQ'.&lt;/P&gt;&lt;P&gt;    rspar_line-low     = .&lt;/P&gt;&lt;P&gt;    rspar_line-high     = .&lt;/P&gt;&lt;P&gt;    APPEND rspar_line TO rspar_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RBDAPP01 WITH SELECTION-TABLE rspar_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to implement this code, hope this help outs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Feb 2012 08:02:24 GMT</pubDate>
    <dc:creator>former_member15255</dc:creator>
    <dc:date>2012-02-16T08:02:24Z</dc:date>
    <item>
      <title>Program rbdapp01 when called from a program is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571542#M1659969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling the program rbdapp01 from a custom program to reprocess an inbound ASN with IDOC status of 64. The code is listed as below in the custom program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT rbdapp01&lt;/P&gt;&lt;P&gt;WITH docnum = i_report_tab-docnum&lt;/P&gt;&lt;P&gt;WITH p_output = C_FALSE&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the execution of the custom program, the IIDOC is not processed and it remains in the status 64 with a message "Re processing deleted , inbound delivery IDOC , ,". When I run the program in debug mode, I can see that the control is going into the rbdapp01 program. But some where along the line, it is failing for what ever may be the reason and it does not process the IDCO, but it only populates the message. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I execute the same program rbdapp01 for the same IDOC from SE38, the IDOC is processed fine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looks like, I am missing something when I am calling this program rbdapp01 in another custom program. Any advice is really appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rupesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2012 22:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571542#M1659969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-08T22:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Program rbdapp01 when called from a program is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571543#M1659970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try it with &lt;STRONG&gt;DOCNUM-LOW&lt;/STRONG&gt; = i_report_tab-docnum&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2012 22:47:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571543#M1659970</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2012-02-08T22:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Program rbdapp01 when called from a program is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571544#M1659971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When I use the 'DOCNUM-LOW = i_report_tab-docnum' in the program, the program is ending with a run time error. When I debug this error, it looks like the DOCNUM object is filled with blanks and the program is selecting all the records from the table EDIDC with a status of 64. Also I tried to change the values to insert the DOCNUM-LOW with my specific IDOC number, but it aboarts with another run time error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the program RBDAPP01 must be called differently or passed more values, not sure. Any advice ?? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or is there other program or function module that we can use to reprocess the IDOCS with status 64 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, &lt;/P&gt;&lt;P&gt;Rupesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2012 17:48:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571544#M1659971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-09T17:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Program rbdapp01 when called from a program is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571545#M1659972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no reason why this program should be run differently than any other report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm surprised that specifying DOCNUM-LOW causes a runtime error... but anyway. To avoid any possible incompatibility during the call, since DOCNUM is a SELECT-OPTION, build a proper selection table with the IDoc number(s) you want to process and pass that when doing the SUBMIT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2012 22:30:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571545#M1659972</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2012-02-09T22:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Program rbdapp01 when called from a program is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571546#M1659973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tamas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your feedback, I tried with a table , but I still get a run time error "Exception condition "NO_BUKRS" raised." &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rupesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2012 22:47:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571546#M1659973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-15T22:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Program rbdapp01 when called from a program is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571547#M1659974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pass message type and see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Raja.D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 06:07:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571547#M1659974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-16T06:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Program rbdapp01 when called from a program is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571548#M1659975</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;Please make use of this method of submit &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : rspar_tab  TYPE TABLE OF rsparams,&lt;/P&gt;&lt;P&gt;        rspar_line LIKE LINE OF rspar_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  rspar_line-selname = 'DOCNUM'.&lt;/P&gt;&lt;P&gt;    rspar_line-sign    = 'I'.&lt;/P&gt;&lt;P&gt;    rspar_line-option  = EQ'.&lt;/P&gt;&lt;P&gt;    rspar_line-low     = .&lt;/P&gt;&lt;P&gt;    rspar_line-high     = .&lt;/P&gt;&lt;P&gt;    APPEND rspar_line TO rspar_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RBDAPP01 WITH SELECTION-TABLE rspar_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to implement this code, hope this help outs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 08:02:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571548#M1659975</guid>
      <dc:creator>former_member15255</dc:creator>
      <dc:date>2012-02-16T08:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Program rbdapp01 when called from a program is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571549#M1659976</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 using this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RBDAPP01 AND RETURN WITH DOCNUM EQ ' IDOC_NUMBER'&lt;/P&gt;&lt;P&gt;                               WITH p_output = ' '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aravind.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 09:05:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571549#M1659976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-16T09:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Program rbdapp01 when called from a program is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571550#M1659977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for all your feedback, we are able to resolve the issue with a call to rbdprocess&lt;/P&gt;&lt;P&gt;SUBMIT rbdprocess&lt;/P&gt;&lt;P&gt;                 WITH p_idoc EQ i_report_tab-docnum&lt;/P&gt;&lt;P&gt;                 WITH p_nodisp EQ 'X'&lt;/P&gt;&lt;P&gt;                 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rupesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2012 23:00:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-rbdapp01-when-called-from-a-program-is-not-working/m-p/8571550#M1659977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-21T23:00:49Z</dc:date>
    </item>
  </channel>
</rss>

