<?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 BDC Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482928#M225761</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working for an upgrade project (from 4.6B - Ecc 5.0). A 'Z'program is calling a standard prog ( rfbibl00 )and passing few parameters, it will show the values for the fields of BDKPF &amp;amp; BBSEG as info msgs. but at the end it is giving a msg - "...Editing was terminated". and after that the prog will show some report with an error msg - "No session found with status "New" or "Error". ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;folloing is the code whr they are calling the stnd prog--&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 SUBMIT rfbibl00
               TO SAP-SPOOL SPOOL PARAMETERS
               params WITHOUT SPOOL DYNPRO
               WITH ds_name = p_unfil
               WITH callmode = callmode
               AND RETURN.

      LOOP AT tab-bdc.

        SUBMIT rsbdcsub
                 TO SAP-SPOOL SPOOL PARAMETERS
                 params WITHOUT SPOOL DYNPRO
                 WITH mappe EQ  tab-bdc+0(12)
                 WITH von   EQ sy-datum
                 WITH bis   EQ sy-datum
                 AND RETURN.

      ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;so please help me in solving this problem, and reply me as soon as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amarnath Singanamala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Aug 2006 09:01:04 GMT</pubDate>
    <dc:creator>amarnath_singanamala2</dc:creator>
    <dc:date>2006-08-08T09:01:04Z</dc:date>
    <item>
      <title>BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482928#M225761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working for an upgrade project (from 4.6B - Ecc 5.0). A 'Z'program is calling a standard prog ( rfbibl00 )and passing few parameters, it will show the values for the fields of BDKPF &amp;amp; BBSEG as info msgs. but at the end it is giving a msg - "...Editing was terminated". and after that the prog will show some report with an error msg - "No session found with status "New" or "Error". ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;folloing is the code whr they are calling the stnd prog--&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 SUBMIT rfbibl00
               TO SAP-SPOOL SPOOL PARAMETERS
               params WITHOUT SPOOL DYNPRO
               WITH ds_name = p_unfil
               WITH callmode = callmode
               AND RETURN.

      LOOP AT tab-bdc.

        SUBMIT rsbdcsub
                 TO SAP-SPOOL SPOOL PARAMETERS
                 params WITHOUT SPOOL DYNPRO
                 WITH mappe EQ  tab-bdc+0(12)
                 WITH von   EQ sy-datum
                 WITH bis   EQ sy-datum
                 AND RETURN.

      ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;so please help me in solving this problem, and reply me as soon as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amarnath Singanamala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 09:01:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482928#M225761</guid>
      <dc:creator>amarnath_singanamala2</dc:creator>
      <dc:date>2006-08-08T09:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482929#M225762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1st  check &lt;/P&gt;&lt;P&gt;WITH &amp;lt;b&amp;gt;mappe&amp;lt;/b&amp;gt; EQ  &amp;lt;b&amp;gt;tab-bdc+0(12)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; both  have  same  type variable...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 09:03:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482929#M225762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T09:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482930#M225763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kishan,&lt;/P&gt;&lt;P&gt;Thanks for ur reply. yes they are same "mappe" is char 12 and "tab-bdc" is also char 12. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The thing is 1. I am getting the "editing was terminated" is coming wen it is calling rfbibl00 and 2. I m getiing -- "No session found with status "New" or "Error". ". after rsbdcsub.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amarnath.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 09:21:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482930#M225763</guid>
      <dc:creator>amarnath_singanamala2</dc:creator>
      <dc:date>2006-08-08T09:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482931#M225764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;open repoer RSBDCSUB in screen there  is  check box for &lt;/P&gt;&lt;P&gt;session status new click f1 on that and find out the screen-name for that.&lt;/P&gt;&lt;P&gt;now in submit command  also include it with value 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT rsbdcsub&lt;/P&gt;&lt;P&gt;                 TO SAP-SPOOL SPOOL PARAMETERS&lt;/P&gt;&lt;P&gt;                 params WITHOUT SPOOL DYNPRO&lt;/P&gt;&lt;P&gt;                 WITH mappe EQ  tab-bdc+0(12)&lt;/P&gt;&lt;P&gt;                 WITH von   EQ sy-datum&lt;/P&gt;&lt;P&gt;                 WITH bis   EQ sy-datum&lt;/P&gt;&lt;P&gt;                 &amp;lt;b&amp;gt;WITH Z_VERARB EQ 'X'&amp;lt;/b&amp;gt;                 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 09:28:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482931#M225764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T09:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482932#M225765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;do we need to decalre that variable Z_VERARB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amarnath.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 09:51:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482932#M225765</guid>
      <dc:creator>amarnath_singanamala2</dc:creator>
      <dc:date>2006-08-08T09:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482933#M225766</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 have done the same changes in the program, I chked SM35 for the session overview, the session is still in creating stage only.&lt;/P&gt;&lt;P&gt;It has to create a new session rite.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amarnath.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 10:28:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482933#M225766</guid>
      <dc:creator>amarnath_singanamala2</dc:creator>
      <dc:date>2006-08-08T10:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482934#M225767</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;i think there's an error from rfbibl00.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;please start rfbibl00 (alone in background) and check the log/protocol&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 10:30:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482934#M225767</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-08-08T10:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482935#M225768</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;Try to run only RFBIBL00 and see which errors are coming, I think you are getting error from RFBIBL00.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 11:17:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1482935#M225768</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2006-08-08T11:17:34Z</dc:date>
    </item>
  </channel>
</rss>

