<?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: Reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3320287#M795347</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. SUBMIT report .... (if you are talking of to call a already written BDC into your program)&lt;/P&gt;&lt;P&gt;2. CALL TRANSACTION &lt;/P&gt;&lt;P&gt;See F1 help for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Feb 2008 03:54:05 GMT</pubDate>
    <dc:creator>gopi_narendra</dc:creator>
    <dc:date>2008-02-04T03:54:05Z</dc:date>
    <item>
      <title>Reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3320286#M795346</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 call a bdc program from a report? how?&lt;/P&gt;&lt;P&gt; can you call a transaction from a report? how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please send me code also. it is very useful to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnks&lt;/P&gt;&lt;P&gt;swathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 03:47:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3320286#M795346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T03:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3320287#M795347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. SUBMIT report .... (if you are talking of to call a already written BDC into your program)&lt;/P&gt;&lt;P&gt;2. CALL TRANSACTION &lt;/P&gt;&lt;P&gt;See F1 help for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 03:54:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3320287#M795347</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2008-02-04T03:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3320288#M795348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Yes , We can call a transaction from a report by using &lt;/P&gt;&lt;P&gt;call transaction se38 in this way &lt;/P&gt;&lt;P&gt;here i m sending a small code where i used radiobuttons to call different transcation hope so this may be useful for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 300 AS WINDOW TITLE text-002.&lt;/P&gt;&lt;P&gt;***********************RADIOBUTTON declaration&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK block WITH FRAME TITLE text-000.&lt;/P&gt;&lt;P&gt;PARAMETERS:rb_s RADIOBUTTON GROUP g1 ,&lt;/P&gt;&lt;P&gt;           rb_c RADIOBUTTON GROUP g1,&lt;/P&gt;&lt;P&gt;           rb_v RADIOBUTTON GROUP g1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK block.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 300.&lt;/P&gt;&lt;P&gt;**********************PUSHBUTTON declaration&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /10(23) b1 USER-COMMAND b1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /10(23) b2 USER-COMMAND b2.&lt;/P&gt;&lt;P&gt;******CHECKBOX DECLARATION WITH SELECTION screen&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 200 AS WINDOW TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS : px_1 AS CHECKBOX,&lt;/P&gt;&lt;P&gt;             px_2 AS CHECKBOX,&lt;/P&gt;&lt;P&gt;             px_3 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;***********************&lt;STRONG&gt;INITIALIZATION&lt;/STRONG&gt;****************************&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  b1 ='RADIOBUTTON'.&lt;/P&gt;&lt;P&gt;  b2 ='CHECKBUTTON'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**************************AT SELECTION-screen&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;    WHEN 'B1'.                                                         "CHECKING CONDITION ON PUSH BUTTON&lt;/P&gt;&lt;P&gt;      CALL SELECTION-SCREEN '0300'.&lt;/P&gt;&lt;P&gt;************************RADIOBUTTON operations&lt;/P&gt;&lt;P&gt;      IF rb_s = 'X'.&lt;/P&gt;&lt;P&gt;        MESSAGE text-007  TYPE 'I'.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION  'VA01'.&lt;/P&gt;&lt;P&gt;      ELSEIF rb_c = 'X'.&lt;/P&gt;&lt;P&gt;        MESSAGE text-008 TYPE 'I'.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'XD01'.                                     "CALLING TRANSCATIONS AND CHECKING RADIOBUTTON&lt;/P&gt;&lt;P&gt;      ELSEIF rb_v = 'X'.&lt;/P&gt;&lt;P&gt;        MESSAGE text-009 TYPE 'I'.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'XK01'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;**********************CHECK BOX operations&lt;/P&gt;&lt;P&gt;    WHEN 'B2'.&lt;/P&gt;&lt;P&gt;      LEAVE TO LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;      CALL SELECTION-SCREEN '0200'.&lt;/P&gt;&lt;P&gt;      IF px_1 = 'X'.&lt;/P&gt;&lt;P&gt;        WRITE:text-002.&lt;/P&gt;&lt;P&gt;      ENDIF.                                                         "CHECKING CHECKBOX&lt;/P&gt;&lt;P&gt;      IF px_2 = 'X'.&lt;/P&gt;&lt;P&gt;        WRITE:text-003.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      IF px_3 = 'X'.&lt;/P&gt;&lt;P&gt;        WRITE:text-004.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 03:56:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3320288#M795348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T03:56:27Z</dc:date>
    </item>
  </channel>
</rss>

