<?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: interaction with transaction codes with interactive reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interaction-with-transaction-codes-with-interactive-reports/m-p/1547722#M248876</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 have to do some thing like this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  ZTETS_CURSOR                            .

DATA: FIELD(20),
      VALUE(10).
DATA: BEGIN OF ITAB OCCURS 0,
        VBELN LIKE VBAK-VBELN,
        POSNR LIKE VBAP-POSNR,
       END OF ITAB.


SELECT VBELN
       POSNR
       FROM VBAP
       UP TO 100 ROWS
       INTO TABLE ITAB.

TOP-OF-PAGE.

  WRITE:(10) 'VBELN',
         (6) 'POSNR'.

END-OF-SELECTION.

  LOOP AT ITAB.

    WRITE: /(10) ITAB-VBELN,
             (6) ITAB-POSNR.

  ENDLOOP.



AT LINE-SELECTION.

  GET CURSOR FIELD FIELD VALUE VALUE.

  IF FIELD = 'ITAB-VBELN'.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT  = VALUE
      IMPORTING
        OUTPUT = VALUE.

    SET PARAMETER ID 'AUN' FIELD VALUE.
    CALL TRANSACTION 'VA02' AND SKIP FIRST SCREEN.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Aug 2006 12:03:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-10T12:03:44Z</dc:date>
    <item>
      <title>interaction with transaction codes with interactive reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interaction-with-transaction-codes-with-interactive-reports/m-p/1547721#M248875</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 want to call a transaction code from the report which i prepared.for example...if im displaying the list of order no.of a customer as output ,then when i want to make some changes in the order details ..instead of going to transcode VA02 ..i want the transcation has to open when i double click the order number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Aug 2006 11:56:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interaction-with-transaction-codes-with-interactive-reports/m-p/1547721#M248875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-10T11:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: interaction with transaction codes with interactive reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interaction-with-transaction-codes-with-interactive-reports/m-p/1547722#M248876</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 have to do some thing like this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  ZTETS_CURSOR                            .

DATA: FIELD(20),
      VALUE(10).
DATA: BEGIN OF ITAB OCCURS 0,
        VBELN LIKE VBAK-VBELN,
        POSNR LIKE VBAP-POSNR,
       END OF ITAB.


SELECT VBELN
       POSNR
       FROM VBAP
       UP TO 100 ROWS
       INTO TABLE ITAB.

TOP-OF-PAGE.

  WRITE:(10) 'VBELN',
         (6) 'POSNR'.

END-OF-SELECTION.

  LOOP AT ITAB.

    WRITE: /(10) ITAB-VBELN,
             (6) ITAB-POSNR.

  ENDLOOP.



AT LINE-SELECTION.

  GET CURSOR FIELD FIELD VALUE VALUE.

  IF FIELD = 'ITAB-VBELN'.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT  = VALUE
      IMPORTING
        OUTPUT = VALUE.

    SET PARAMETER ID 'AUN' FIELD VALUE.
    CALL TRANSACTION 'VA02' AND SKIP FIRST SCREEN.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Aug 2006 12:03:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interaction-with-transaction-codes-with-interactive-reports/m-p/1547722#M248876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-10T12:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: interaction with transaction codes with interactive reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interaction-with-transaction-codes-with-interactive-reports/m-p/1547723#M248877</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;  Set Pf-status to your report.&lt;/P&gt;&lt;P&gt;  Set Function code PICK for F2.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  In at line-selection section, &lt;/P&gt;&lt;P&gt;   call transaction 'ZXYZ'.&lt;/P&gt;&lt;P&gt;  ZXYZ is the transaction which you have prepared.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Aug 2006 12:05:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interaction-with-transaction-codes-with-interactive-reports/m-p/1547723#M248877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-10T12:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: interaction with transaction codes with interactive reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interaction-with-transaction-codes-with-interactive-reports/m-p/1547724#M248878</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;addition to Babu:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;...
LOOP AT ITAB.
 
    WRITE: /(10) ITAB-VBELN,
             (6) ITAB-POSNR.

   &amp;lt;b&amp;gt;hide : itab-vbeln.&amp;lt;/b&amp;gt; 
  ENDLOOP.
...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Aug 2006 13:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interaction-with-transaction-codes-with-interactive-reports/m-p/1547724#M248878</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-08-10T13:01:10Z</dc:date>
    </item>
  </channel>
</rss>

