<?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: BDC to run in foreground using session method. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888987#M372523</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1) Use CALL TRANSACTION USING bdcdata, but only for one  transaction &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2) Use submit RSBDCBTC with hidden parameter filled&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;('3) CALL TRANSACTION "SM35" USING data to find, mark and execute online your BDC &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Jan 2007 13:26:15 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2007-01-26T13:26:15Z</dc:date>
    <item>
      <title>BDC to run in foreground using session method.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888983#M372519</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;Can you please let me know how to run the BDC session in foreground using RSBDCSUB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Presently i am using the following code for RSBDCSUB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit rsbdcsub with mappe eq gc_bdcname&lt;/P&gt;&lt;P&gt;                         with Z_VERARB EQ 'X'&lt;/P&gt;&lt;P&gt;                         with FEHLER EQ ' '&lt;/P&gt;&lt;P&gt;                         and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 12:08:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888983#M372519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T12:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: BDC to run in foreground using session method.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888984#M372520</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; Yes thats how its need to be done....&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT RSBDCSUB WITH MAPPE = 'xyz'
WITH VON = SY-DATUM
WITH Z_VERARB = 'X'
AND RETURN .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Cheers&lt;/P&gt;&lt;P&gt; VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 12:20:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888984#M372520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T12:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: BDC to run in foreground using session method.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888985#M372521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is used to run in background mode only....if u want a session to run in foreground..then fill the bdcdata and create a session using this bdcdata...goto sm35 and from here pick the session which u have created and click on process. check the process/foreground radio button and press enter...the session will run in foreground.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 12:21:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888985#M372521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T12:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: BDC to run in foreground using session method.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888986#M372522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SM35 submits the Session created to RSBDCSUB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create session from program we use... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RFBIBL00 WITH DS_NAME = VA_FILE&lt;/P&gt;&lt;P&gt;WITH CALLMODE = CALLMODE AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run session.... there isnt any option to run it in foreground as far as I know, this will process it automatically, award points if found helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RSBDCSUB WITH MAPPE = P_NAME&lt;/P&gt;&lt;P&gt;WITH VON = SY-DATUM&lt;/P&gt;&lt;P&gt;WITH BIS = SY-DATUM&lt;/P&gt;&lt;P&gt;WITH FEHLER = ' '&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TO SAP-SPOOL&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LIST NAME P_NAME&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LIST DATASET P_NAME&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;COVER TEXT P_NAME&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NEW LIST IDENTIFICATION ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 12:32:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888986#M372522</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2007-01-26T12:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: BDC to run in foreground using session method.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888987#M372523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1) Use CALL TRANSACTION USING bdcdata, but only for one  transaction &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2) Use submit RSBDCBTC with hidden parameter filled&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;('3) CALL TRANSACTION "SM35" USING data to find, mark and execute online your BDC &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 13:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888987#M372523</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-01-26T13:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: BDC to run in foreground using session method.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888988#M372524</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 the same requirement as u had that time.&lt;/P&gt;&lt;P&gt;would u suggest how BDC session executed in foreground through Program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neha Gupta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 06:07:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-to-run-in-foreground-using-session-method/m-p/1888988#M372524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T06:07:24Z</dc:date>
    </item>
  </channel>
</rss>

