<?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: how to execute a report using a transaction code? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346971#M1035257</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;While creating a Ztransaction in SE93 select the start object as Program and Selection-screen (Report Transaction).. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would work and solve your issue....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;Narin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Aug 2008 15:16:23 GMT</pubDate>
    <dc:creator>narin_nandivada3</dc:creator>
    <dc:date>2008-08-19T15:16:23Z</dc:date>
    <item>
      <title>how to execute a report using a transaction code?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346967#M1035253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new in ABAP and I want to do a very simple report and then call this report using a transaction code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steps:&lt;/P&gt;&lt;P&gt;1) create the report (SE38)&lt;/P&gt;&lt;P&gt;   the report is: Z_DEMO&lt;/P&gt;&lt;P&gt;2) generate a transaction code for this report (SE93)&lt;/P&gt;&lt;P&gt;   note: the transaction code is ZDEMO&lt;/P&gt;&lt;P&gt;3) call the transaction generated on step 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I execute the report using SE38, everythig is ok and the records are inserted in my table zdemo2.&lt;/P&gt;&lt;P&gt;But when I call my transaction ZDEMO there is no insertion. Why? &lt;/P&gt;&lt;P&gt;The report ask for parameters and then fowards me to SAP's main menu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Walter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The report is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;REPORT  Z_DEMO.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;tables: zdemo2.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;parameters:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;nombre like zdemo2-nombre,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;edad like zdemo2-edad.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;begin of tabla occurs 0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;nombre like zdemo2-nombre,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;edad like zdemo2-edad,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;end of tabla.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;zdemo2-nombre = nombre.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;zdemo2-edad = edad.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;insert zdemo2.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 15:01:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346967#M1035253</guid>
      <dc:creator>former_member195084</dc:creator>
      <dc:date>2008-08-19T15:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to execute a report using a transaction code?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346968#M1035254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;While creating the transaction for your program&lt;/P&gt;&lt;P&gt;1&amp;gt;Make sure u give the program name and screen number&lt;/P&gt;&lt;P&gt;2&amp;gt;Important thing is a option "GUI SUPPORT"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check all the checkboxes or atleast SAPGUI for Windows to ensure that the Code runs in SAP GUI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 15:06:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346968#M1035254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-19T15:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to execute a report using a transaction code?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346969#M1035255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution was changing the transaction type from "program and screen" to "program and selection screen".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Walter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 15:15:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346969#M1035255</guid>
      <dc:creator>former_member195084</dc:creator>
      <dc:date>2008-08-19T15:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to execute a report using a transaction code?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346970#M1035256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi walter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please create report transaction for your report .&lt;/P&gt;&lt;P&gt;while creating a popup comes and ask which type of tcode you want to create, select second option, and select all gui support in your tcode, it will definitely  work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yogesh N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 15:15:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346970#M1035256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-19T15:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to execute a report using a transaction code?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346971#M1035257</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;While creating a Ztransaction in SE93 select the start object as Program and Selection-screen (Report Transaction).. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would work and solve your issue....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;Narin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 15:16:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346971#M1035257</guid>
      <dc:creator>narin_nandivada3</dc:creator>
      <dc:date>2008-08-19T15:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to execute a report using a transaction code?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346972#M1035258</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;While creating the Transaction in SE93.&lt;/P&gt;&lt;P&gt;1.Enter the discription.&lt;/P&gt;&lt;P&gt;2. You have to select the program &amp;amp; selection screen for report option.&lt;/P&gt;&lt;P&gt;3. You need to enter the Program Name &amp;amp; screen No. default 1000.&lt;/P&gt;&lt;P&gt;4. In the Below GUI Support Box. Select all the check boxs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 15:19:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-execute-a-report-using-a-transaction-code/m-p/4346972#M1035258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-19T15:19:53Z</dc:date>
    </item>
  </channel>
</rss>

