<?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 How  to include recording in the program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-include-recording-in-the-program/m-p/3784562#M910566</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had recorded a transaction f-27 in shdb with name zrec , I had one zprogram in that i had written some logic. Now I want to include the recording(zrec) in zprogram . so please kindly guide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also please tell me when we need to go for call trans and when we need session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for  all the replies&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Apr 2008 16:41:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-22T16:41:57Z</dc:date>
    <item>
      <title>How  to include recording in the program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-include-recording-in-the-program/m-p/3784562#M910566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had recorded a transaction f-27 in shdb with name zrec , I had one zprogram in that i had written some logic. Now I want to include the recording(zrec) in zprogram . so please kindly guide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also please tell me when we need to go for call trans and when we need session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for  all the replies&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 16:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-include-recording-in-the-program/m-p/3784562#M910566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T16:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: How  to include recording in the program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-include-recording-in-the-program/m-p/3784563#M910567</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 go to SHDB . select the recording, click on PROGRAM button.Give program name . Select radio button "Transfer From Recording".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then a code is displayed in the next window.&lt;/P&gt;&lt;P&gt;Copy the code necessary from  recording into your program.I.e internal table declaration , perform stmts and , Form endform stmts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL TRANSACTION&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1) When less number of records i.e &amp;lt; 25000 records are there.&lt;/P&gt;&lt;P&gt;2) When client requires explicit error file handling.&lt;/P&gt;&lt;P&gt;3) when the process must be very fast.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SESSION&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;1) Background processing and scheduling are to be done.&lt;/P&gt;&lt;P&gt;2) Large volumes of data is handled.&lt;/P&gt;&lt;P&gt;3) Multiple transactions are to be handled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 17:54:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-include-recording-in-the-program/m-p/3784563#M910567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T17:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: How  to include recording in the program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-include-recording-in-the-program/m-p/3784564#M910568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do agree with Narayana,&lt;/P&gt;&lt;P&gt;            we can directly create program from SHDB itself by clicking on  Program button.&lt;/P&gt;&lt;P&gt;           Otherwise create program in se38 and copy paste the contents while writing perform statements from recording table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever you want to upload large volume of data and multiple transaction involved we will use session method. Generally in session method we will submit the session in background by using statement  " Submit using RSBDCSUB".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever user wants some specific error format to display error log or  want to use asynchronous update then we will go for call transaction method.      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if we use asyn update in call transation then it will be faster than session method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Umakanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 04:47:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-include-recording-in-the-program/m-p/3784564#M910568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T04:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: How  to include recording in the program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-include-recording-in-the-program/m-p/3784565#M910569</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;You can use SUBMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 05:59:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-include-recording-in-the-program/m-p/3784565#M910569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T05:59:09Z</dc:date>
    </item>
  </channel>
</rss>

