<?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: typical interactive ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915547#M1147474</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;if ws_selfield-fieldname = 'Vendor_no'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can write the above statement but the field name should be in caps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dev.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Dec 2008 12:12:27 GMT</pubDate>
    <dc:creator>dev_parbutteea</dc:creator>
    <dc:date>2008-12-26T12:12:27Z</dc:date>
    <item>
      <title>typical interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915541#M1147468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii all,&lt;/P&gt;&lt;P&gt;i m illustrating my problem through following example:&lt;/P&gt;&lt;P&gt;Suppose i m on the first page of an interactive report..that contains 4 rows and 3 columns..&lt;/P&gt;&lt;P&gt;and i have selected first row...&lt;/P&gt;&lt;P&gt;Now the problem is : when i click on 1 st column of selected row it should display some interactive report&lt;/P&gt;&lt;P&gt;                               but when i click on another column of the same selected row it should display SOME                 &lt;/P&gt;&lt;P&gt;                               OTHER ALV....what code should i write?????//&lt;/P&gt;&lt;P&gt;                             &lt;/P&gt;&lt;P&gt;Can any1 help me ,plzzzz???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Apoorv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 11:14:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915541#M1147468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T11:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: typical interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915542#M1147469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are calling different screens, Based on the Alv row.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: LINE_EVENT TYPE SLIS_ALV_EVENT.

  CLEAR LINE_EVENT.

  CLEAR LINE_EVENT.
  LINE_EVENT-NAME = 'USER_COMMAND'.
  LINE_EVENT-FORM = 'USER_COMMAND'.
  APPEND LINE_EVENT TO I_EVENTS.


  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
                &amp;lt; all others paramets are as required
                 IT_EVENTS                = I_EVENTS
       TABLES
            T_OUTTAB                 = I_FINAL.


FORM USER_COMMAND USING WS_UCOMM LIKE SY-UCOMM
                          WS_SELFIELD TYPE SLIS_SELFIELD.
  CASE WS_UCOMM.

    WHEN '&amp;amp;IC1'.
       if WS_SELFIELD-TABINDEX =1  (1st row)
       elseif WS_SELFIELD-TABINDEX =2  (2nd row)
       elseif WS_SELFIELD-TABINDEX =3  (3rd row)
        and so on
       endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 11:43:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915542#M1147469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T11:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: typical interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915543#M1147470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Actually i too faced the same issue try to do like this ur problem get resolved,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM USER_COMMAND USING U_UCOMM  TYPE SY-UCOMM&lt;/P&gt;&lt;P&gt;                  US_SELF_FIELD  TYPE SLIS_SELFIELD.        "#EC CALLED&lt;/P&gt;&lt;P&gt;  CASE U_UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;      READ TABLE IT_OUTPUT  INTO WA_OUTPUT INDEX US_SELF_FIELD-TABINDEX.&lt;/P&gt;&lt;P&gt;      CASE US_SELF_FIELD-FIELDNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        WHEN 'CWEEK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          IF US_SELF_FIELD-VALUE = 0.&lt;/P&gt;&lt;P&gt;            MESSAGE E001(ZHR_KPI).&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;          IF US_SELF_FIELD-TABINDEX = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Thirukumaran. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 11:46:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915543#M1147470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T11:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: typical interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915544#M1147471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii sasi,&lt;/P&gt;&lt;P&gt;thanx for replying ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u help me once more?????/&lt;/P&gt;&lt;P&gt;can i write like this:&lt;/P&gt;&lt;P&gt;if ws_selfield-fieldname = 'Vendor_no'.&lt;/P&gt;&lt;P&gt;*some code that lead me to 2 nd ALV that contains VENDOR DETAILS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;elseif ws_selfield-fieldname = 'Mat_no'.&lt;/P&gt;&lt;P&gt;*some code that leads me to 3rd ALV that contains MATERIAL DETAILS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz reply....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Apoorv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 12:02:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915544#M1147471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T12:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: typical interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915545#M1147472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii thirukumaran,&lt;/P&gt;&lt;P&gt;thanx for replying ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u help me once more?????/&lt;/P&gt;&lt;P&gt;can i write like this:&lt;/P&gt;&lt;P&gt;if ws_selfield-fieldname = 'Vendor_no'.&lt;/P&gt;&lt;P&gt;*some code that lead me to 2 nd ALV that contains VENDOR DETAILS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;elseif ws_selfield-fieldname = 'Mat_no'.&lt;/P&gt;&lt;P&gt;*some code that leads me to 3rd ALV that contains MATERIAL DETAILS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz reply....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Apoorv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 12:05:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915545#M1147472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T12:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: typical interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915546#M1147473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can do that ws_selfield-fieldname contains the selected field name value, so based on that you can navigate to some other transactions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 12:11:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915546#M1147473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T12:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: typical interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915547#M1147474</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;if ws_selfield-fieldname = 'Vendor_no'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can write the above statement but the field name should be in caps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dev.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 12:12:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915547#M1147474</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2008-12-26T12:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: typical interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915548#M1147475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u so much..........god bless...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 12:17:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915548#M1147475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T12:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: typical interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915549#M1147476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx dev....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 12:18:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/typical-interactive-alv/m-p/4915549#M1147476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T12:18:07Z</dc:date>
    </item>
  </channel>
</rss>

