<?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: Running a session from the zprogram in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877667#M51001</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Brad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You here on a Sunday as well? Man! I see how enthusiastic you are !! Hope to catch some of it &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep it Up !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Apr 2005 12:16:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-04-24T12:16:25Z</dc:date>
    <item>
      <title>Running a session from the zprogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877664#M50998</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 want to create a BDC(session Method).&lt;/P&gt;&lt;P&gt;This program should have the following things-&lt;/P&gt;&lt;P&gt;1.Should Create and run the session instead of processing it from  transaction  SM35.&lt;/P&gt;&lt;P&gt;2.The output of the program should display the error log of the session.&lt;/P&gt;&lt;P&gt;3. This error log should be sent to concerned persons as mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do it in a single program.&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;Regards&lt;/P&gt;&lt;P&gt;Satish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Apr 2005 10:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877664#M50998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-24T10:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Running a session from the zprogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877665#M50999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for point no. 1 use program &amp;lt;u&amp;gt;&amp;lt;b&amp;gt;rsbdcsub&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reading logs and sending mail are also possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have any specific question please do let us know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Apr 2005 11:09:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877665#M50999</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-04-24T11:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Running a session from the zprogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877666#M51000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to do all this from one program why don't you use CALL TRANSACTION and then if it fails add the session to the SM35 queue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this you can:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 Create and run the transaction from the program using CALL TRANSACTION&lt;/P&gt;&lt;P&gt;2 Display the error log (by looping through the messages table issued from CALL TRANSACTION)&lt;/P&gt;&lt;P&gt;3 Issue an email with the error messages (again by using the messages table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, if you want to keep a BDC session in SM35 for later processing you could &amp;lt;b&amp;gt;submit it to the queue only in the event that the CALL TRANSACTION failed &amp;lt;/b&amp;gt;.  If you wanted to leave this in error status you could then submit the program RSBDCSUB to process the session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Apr 2005 12:01:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877666#M51000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-24T12:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Running a session from the zprogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877667#M51001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Brad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You here on a Sunday as well? Man! I see how enthusiastic you are !! Hope to catch some of it &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep it Up !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Apr 2005 12:16:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877667#M51001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-24T12:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Running a session from the zprogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877668#M51002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have about 1600 points to catch up!!!! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, thought I would do my bit by helping those in need, or is it just that the weather is not so nice today in Paris so I am stuck inside with not much to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Apr 2005 13:19:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-a-session-from-the-zprogram/m-p/877668#M51002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-24T13:19:55Z</dc:date>
    </item>
  </channel>
</rss>

