<?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: Regarding Session Execution in Background in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-session-execution-in-background/m-p/1794853#M341623</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in ur program ur writing only Sumbit which means ur submitting data to another program and asking to execute it. So, sap cursor goes to that particular program and finishes the job and goes back to the initial screen of the calling program. It does not return to ur program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write as Submit &amp;lt;program name&amp;gt; and return&lt;/P&gt;&lt;P&gt;              with field1 = field1&lt;/P&gt;&lt;P&gt;               with field2 = field2.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way the sap cursor goes to another program and executes the same and once finished it returns back to the main program and checks what needs to be done later.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Dec 2006 11:39:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-11T11:39:32Z</dc:date>
    <item>
      <title>Regarding Session Execution in Background</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-session-execution-in-background/m-p/1794851#M341621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While processing my session in background I was given as:&lt;/P&gt;&lt;P&gt;SUBMIT rsbdcsub&lt;/P&gt;&lt;P&gt;WITH mappe EQ 'session name'&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;WITH z_verarb EQ 'X'&lt;/P&gt;&lt;P&gt;WITH logall EQ 'X'&lt;/P&gt;&lt;P&gt;AND RETURN .&lt;/P&gt;&lt;P&gt;after submitting the session i need some action has to code.&lt;/P&gt;&lt;P&gt;as after the above statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform xxx.&lt;/P&gt;&lt;P&gt;But control is not comming after the above statement.&lt;/P&gt;&lt;P&gt;Please suggest me the things.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 11:28:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-session-execution-in-background/m-p/1794851#M341621</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2006-12-11T11:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Session Execution in Background</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-session-execution-in-background/m-p/1794852#M341622</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 this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT rsbdcsub &amp;lt;b&amp;gt;AND RETURN&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;         EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;         WITH mappe = p_sessionnanme&lt;/P&gt;&lt;P&gt;         WITH von   = w_datum&lt;/P&gt;&lt;P&gt;         WITH bis   = sy-datum&lt;/P&gt;&lt;P&gt;         WITH z_verarb = c_true&lt;/P&gt;&lt;P&gt;         WITH fehler = c_false.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more detail do F1 on SUMBIT in se38.&lt;/P&gt;&lt;P&gt;Also Search in SDN with key - &amp;lt;b&amp;gt;rsbdcsub&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Will get few more useful related Posts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if this helps.&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Manish Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 11:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-session-execution-in-background/m-p/1794852#M341622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T11:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Session Execution in Background</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-session-execution-in-background/m-p/1794853#M341623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in ur program ur writing only Sumbit which means ur submitting data to another program and asking to execute it. So, sap cursor goes to that particular program and finishes the job and goes back to the initial screen of the calling program. It does not return to ur program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write as Submit &amp;lt;program name&amp;gt; and return&lt;/P&gt;&lt;P&gt;              with field1 = field1&lt;/P&gt;&lt;P&gt;               with field2 = field2.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way the sap cursor goes to another program and executes the same and once finished it returns back to the main program and checks what needs to be done later.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 11:39:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-session-execution-in-background/m-p/1794853#M341623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T11:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Session Execution in Background</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-session-execution-in-background/m-p/1794854#M341624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  It's Answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 10:37:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-session-execution-in-background/m-p/1794854#M341624</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-23T10:37:03Z</dc:date>
    </item>
  </channel>
</rss>

