<?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: ALV REPORT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646367#M1093525</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your useful reply, and want to know how to find the row that i was double clicked.,.,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Oct 2008 03:50:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-10T03:50:45Z</dc:date>
    <item>
      <title>ALV REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646363#M1093521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;           I have some doubt in alv report,&lt;/P&gt;&lt;P&gt;Actually my report looks like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;slno.           KPI                   currentweek&lt;/P&gt;&lt;P&gt; 1          headcount                   20&lt;/P&gt;&lt;P&gt; 2          Contractoffered             30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here  if i double click on 20 it must call the standard transaction 'S_L9C_94000095',&lt;/P&gt;&lt;P&gt;        Then if i couble click on 30 it must call transaction 'S_AHR_61015512'.&lt;/P&gt;&lt;P&gt;my codings::&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_pa00001  INTO WA_Pa00001 INDEX US_SELF_FIELD-tabindex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CASE us_self_field-FIELDNAME.&lt;/P&gt;&lt;P&gt;        WHEN 'CWEEK' .&lt;/P&gt;&lt;P&gt;here when i double click on cweek it triggers only the first transaction..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Thiru.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 03:14:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646363#M1093521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T03:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646364#M1093522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The test you are performing will always result in CWEEK being the answer as that is the field that you clicked on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to check which row of the ALV grid was double clicked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 03:21:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646364#M1093522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T03:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646365#M1093523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in that case you can code like this..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CASE u_ucomm.
WHEN '&amp;amp;IC1'.
READ TABLE it_pa00001 INTO WA_Pa00001 INDEX US_SELF_FIELD-tabindex.

CASE us_self_field-FIELDNAME.
WHEN 'CWEEK' .
  case self_field-value.
    when '20'.
        "check you have to set any parameters
        call the standard transaction 'S_L9C_94000095'.
    when '30'.
         "check you have to set any parameters
         call transaction 'S_AHR_61015512'.
    endcase.
endcase.
endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 03:21:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646365#M1093523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T03:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646366#M1093524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your useful reply, and how to set parameters to that report,  Initially i have to clear all the values in that report and i have to pass the values ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 03:49:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646366#M1093524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T03:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646367#M1093525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your useful reply, and want to know how to find the row that i was double clicked.,.,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 03:50:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646367#M1093525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T03:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646368#M1093526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thirukumaran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the below code. create one parameter ID or memory Id for saving the triggered line and set that triggered line in to variable. after that get that variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form validate_command using pv_ucomm type sy-ucomm ws_selfield type slis_selfield.&lt;/P&gt;&lt;P&gt;  case pv_ucomm.&lt;/P&gt;&lt;P&gt;    when '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;      Read table it_ekko into wa_ekko index ws_selfield-tabindex.&lt;/P&gt;&lt;P&gt;      if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;        set parameter id 'BES' field wa_ekko-ebeln.&lt;/P&gt;&lt;P&gt;        GET PARAMETER ID 'BES' FIELD lv_ebeln .&lt;/P&gt;&lt;P&gt;READ TABLE ITAB_CURRENTWEEK INTO WA_ CURRENTWEEK WITH KEY CURRENTWEEK = LV_EBELN.&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0&lt;/P&gt;&lt;P&gt;Call Transaction wa_currentweek-tcode.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;endform.&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;ragu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ragu Prasad on Oct 10, 2008 5:58 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 03:56:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646368#M1093526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T03:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646369#M1093527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am not sure what are the values with you, but i can see that you have to pass PERNR and DATE. instead of CALL TRANSACTION, use SUBMIT PROGRAM and Return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;find the programs behind the transactions and use submit in the above code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 04:08:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/4646369#M1093527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T04:08:25Z</dc:date>
    </item>
  </channel>
</rss>

