<?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: Interactive / Drill down ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-drill-down-alv/m-p/2092064#M435071</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here u can get the line item number of ur internal table from FIELDS-TABINDEX .so read that line item values of ur internal table.now as u r passing for credit control area like that only pass the value of customer .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE R_UCOMM.&lt;/P&gt;&lt;P&gt;WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;IF FIELDS-FIELDNAME = 'KKBER'.&lt;/P&gt;&lt;P&gt;READ TABLE TB_FINAL INDEX FIELDS-TABINDEX.&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD CURSOR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'KKB' FIELD TB_FINAL-KKBER.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SET PARAMETER ID 'KUN' FIELD value of the customer .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'FD03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Apr 2007 10:57:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-05T10:57:26Z</dc:date>
    <item>
      <title>Interactive / Drill down ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-drill-down-alv/m-p/2092062#M435069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have developed an alv to display credit management data.&lt;/P&gt;&lt;P&gt;on clicking the CREDIT CONTROL AREA field in the alv , it should go to FD32 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the code i am using: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM USERCOMMAND USING R_UCOMM LIKE SY-UCOMM&lt;/P&gt;&lt;P&gt;                       FIELDS TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;DATA : CURSOR1(25) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE R_UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;      IF FIELDS-FIELDNAME = 'KKBER'.&lt;/P&gt;&lt;P&gt;        READ TABLE TB_FINAL INDEX FIELDS-TABINDEX.&lt;/P&gt;&lt;P&gt;         GET CURSOR FIELD CURSOR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         SET PARAMETER ID 'KKB' FIELD TB_FINAL-KKBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         CALL TRANSACTION 'FD03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                 "USERCOMMAND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is in FD32 Customer Number (kunnr ) is also a mandatory field.&lt;/P&gt;&lt;P&gt;i am getting the KKBER ( credit control area ) alone.&lt;/P&gt;&lt;P&gt;how to pass kunnr value of the selected line to the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help me in this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;waiting for your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;suki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 10:13:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-drill-down-alv/m-p/2092062#M435069</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T10:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive / Drill down ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-drill-down-alv/m-p/2092063#M435070</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 find the line number where the user made a double click:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS myevent_receiv_002 DEFINITION DEFERRED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: &lt;/P&gt;&lt;P&gt;   user_event_receiver_002 TYPE REF TO &lt;/P&gt;&lt;P&gt;                                        myevent_receiv_002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS myevent_receiv_002 DEFINITION.&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    METHODS handle_double_click&lt;/P&gt;&lt;P&gt;        FOR EVENT double_click OF cl_gui_alv_grid&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;           e_row&lt;/P&gt;&lt;P&gt;           e_column.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS myevent_receiv_002 IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;  METHOD handle_double_click.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA mymessage(50) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONCATENATE 'Click on line: ' e_row-index &lt;/P&gt;&lt;P&gt;                ' and column: ' e_column&lt;/P&gt;&lt;P&gt;                INTO mymessage.&lt;/P&gt;&lt;P&gt;    MESSAGE i100(mj) WITH mymessage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE mytable INDEX e_row-index &lt;/P&gt;&lt;P&gt;         INTO aux_table.&lt;/P&gt;&lt;P&gt;    CALL METHOD mygrid-&amp;gt;refresh_table_display.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now that you know what line (e_row-index), you can read your internal table with READ for that information. It´s now only a matter of passing that information:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'xxxx' FIELD int_table-field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 10:36:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-drill-down-alv/m-p/2092063#M435070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T10:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive / Drill down ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-drill-down-alv/m-p/2092064#M435071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here u can get the line item number of ur internal table from FIELDS-TABINDEX .so read that line item values of ur internal table.now as u r passing for credit control area like that only pass the value of customer .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE R_UCOMM.&lt;/P&gt;&lt;P&gt;WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;IF FIELDS-FIELDNAME = 'KKBER'.&lt;/P&gt;&lt;P&gt;READ TABLE TB_FINAL INDEX FIELDS-TABINDEX.&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD CURSOR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'KKB' FIELD TB_FINAL-KKBER.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SET PARAMETER ID 'KUN' FIELD value of the customer .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'FD03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 10:57:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-drill-down-alv/m-p/2092064#M435071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T10:57:26Z</dc:date>
    </item>
  </channel>
</rss>

