<?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: transaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction/m-p/3292151#M787742</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Call the transaction /BEV4/PLEA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press F1 (hep) F9 (technical info) for the two requested parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have those a parameyer id&lt;/P&gt;&lt;P&gt;If yes, set the parameters before calling transaction&lt;/P&gt;&lt;P&gt;- SET PARAMETER ID 'XXX' FIELD filename.&lt;/P&gt;&lt;P&gt;- CALL TRANSACTION ' BEV4/PLEA'.&lt;/P&gt;&lt;P&gt;If no, call SHDB to build a short BDC that you will use in CALL TRANSACTION .&lt;/P&gt;&lt;P&gt;- Fill an itab of BDCDATA type&lt;/P&gt;&lt;P&gt;- CALL TRANSACTION ' BEV4/PLEA' using itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jan 2008 07:48:10 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2008-01-07T07:48:10Z</dc:date>
    <item>
      <title>transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction/m-p/3292150#M787741</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;i have to call one transaction from a report program.&lt;/P&gt;&lt;P&gt;and i have to pass values for tha transacton from the calling report.&lt;/P&gt;&lt;P&gt;transaction code is /BEV4/PLEA&lt;/P&gt;&lt;P&gt;i have to pass file name and path here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to do it.&lt;/P&gt;&lt;P&gt;can any one help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 06:39:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction/m-p/3292150#M787741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T06:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction/m-p/3292151#M787742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Call the transaction /BEV4/PLEA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press F1 (hep) F9 (technical info) for the two requested parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have those a parameyer id&lt;/P&gt;&lt;P&gt;If yes, set the parameters before calling transaction&lt;/P&gt;&lt;P&gt;- SET PARAMETER ID 'XXX' FIELD filename.&lt;/P&gt;&lt;P&gt;- CALL TRANSACTION ' BEV4/PLEA'.&lt;/P&gt;&lt;P&gt;If no, call SHDB to build a short BDC that you will use in CALL TRANSACTION .&lt;/P&gt;&lt;P&gt;- Fill an itab of BDCDATA type&lt;/P&gt;&lt;P&gt;- CALL TRANSACTION ' BEV4/PLEA' using itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 07:48:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction/m-p/3292151#M787742</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-01-07T07:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction/m-p/3292152#M787743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to call a transaction from report and pass values to it...&lt;/P&gt;&lt;P&gt;i have done it,for billing doc..by clicking on vbeln field it calls transaction va03..&lt;/P&gt;&lt;P&gt;to send a value use set parameter id...and in the select options give memory id..&lt;/P&gt;&lt;P&gt;here is a sample code...which helps you..  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case fieldname.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; when 'vbeln'.&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt; IF sy-subrc = 0 AND e_column_id-fieldname EQ 'VBELN'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   SET PARAMETER ID 'GR1' FIELD output-vbeln.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   CALL TRANSACTION 'script' .&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;*endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options  s_vbeln for vbrk-vbeln no intervals memory id gr1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if any doubt revert back,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reward if helpful,&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 08:54:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction/m-p/3292152#M787743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T08:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction/m-p/3292153#M787744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From se93 - get program name associated with your Transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is executable program, you may be able to use SUBMIT progname USING SELECTION SET / WITH options and pass parameters to your called transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 09:11:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction/m-p/3292153#M787744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T09:11:57Z</dc:date>
    </item>
  </channel>
</rss>

