<?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 interactive report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/3194643#M761229</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends i have done with  an interactive report an my probs is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my basic list iam displaying  salesorder no&lt;/P&gt;&lt;P&gt;                                              sales organiztion&lt;/P&gt;&lt;P&gt;                                              sales grp&lt;/P&gt;&lt;P&gt;                                              customer number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;an my probs is that when iam double clicking on any of the 4 fields in basic list its displaying secondary list...&lt;/P&gt;&lt;P&gt;rather when i double click on only sales order number i should go into secondary list but not on the remaining 3 fields.&lt;/P&gt;&lt;P&gt;an more over when i click on one sales order number( ie for example i have sales order no 4969 in my basic list an when i click on this no it should only shw the details of this no in the secondary list but not all the other sales orderno information)..........&lt;/P&gt;&lt;P&gt;hw can i do this...... plz help me out..... points will be regard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Dec 2007 07:22:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-12T07:22:32Z</dc:date>
    <item>
      <title>interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/3194643#M761229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends i have done with  an interactive report an my probs is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my basic list iam displaying  salesorder no&lt;/P&gt;&lt;P&gt;                                              sales organiztion&lt;/P&gt;&lt;P&gt;                                              sales grp&lt;/P&gt;&lt;P&gt;                                              customer number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;an my probs is that when iam double clicking on any of the 4 fields in basic list its displaying secondary list...&lt;/P&gt;&lt;P&gt;rather when i double click on only sales order number i should go into secondary list but not on the remaining 3 fields.&lt;/P&gt;&lt;P&gt;an more over when i click on one sales order number( ie for example i have sales order no 4969 in my basic list an when i click on this no it should only shw the details of this no in the secondary list but not all the other sales orderno information)..........&lt;/P&gt;&lt;P&gt;hw can i do this...... plz help me out..... points will be regard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 07:22:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/3194643#M761229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-12T07:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/3194644#M761230</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;are u using classical or ALV?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If classical than try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM cal_vf03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM cal_vf03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  GET CURSOR LINE lin  DISPLAY OFFSET off.&lt;/P&gt;&lt;P&gt;  GET CURSOR FIELD fld. " DISPLAY OFFSET off LINE lin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt; IF fld = 'ITAB-VBELN'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    SET PARAMETER ID 'VF' FIELD itab-vbeln.&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;    SET PARAMETER ID 'VF' FIELD space.&lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt; ELSEIF fld = 'ITAB-KUNAG'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION 'MIGO'.&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;ELSE.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION 'MM03'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the condition like i have checked in bold font..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Itab is my internal table name....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                                                    "cal_vf03&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and are u using HIDE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u have to do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT vbeln fkart fkdat netwr kunag FROM vbrk&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF TABLE itab&lt;/P&gt;&lt;P&gt;         WHERE vbeln LIKE '00000033%'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab.&lt;/P&gt;&lt;P&gt;    WRITE:/1 sy-vline,&lt;/P&gt;&lt;P&gt;           itab-vbeln UNDER 'Billing Doc.' HOTSPOT ON,&lt;/P&gt;&lt;P&gt;           18 sy-vline,&lt;/P&gt;&lt;P&gt;           itab-fkart UNDER 'Billing Type',&lt;/P&gt;&lt;P&gt;           33 sy-vline,&lt;/P&gt;&lt;P&gt;           itab-fkdat UNDER 'billing Date',&lt;/P&gt;&lt;P&gt;           48 sy-vline,&lt;/P&gt;&lt;P&gt;           itab-netwr UNDER 'Net Value' LEFT-JUSTIFIED,&lt;/P&gt;&lt;P&gt;           68 sy-vline,&lt;/P&gt;&lt;P&gt;           itab-kunag UNDER 'Customer' HOTSPOT ON,&lt;/P&gt;&lt;P&gt;           80 sy-vline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &amp;lt;b&amp;gt;HIDE : itab-vbeln.&lt;/P&gt;&lt;P&gt;    HIDE : itab-kunag.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  ULINE AT /1(80).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Dhwani shah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 09:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/3194644#M761230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-12T09:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/3194645#M761231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try like this..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA :
       field_value TYPE char20,
       field_name TYPE char20.

AT LINE-SELECTION.

  GET CURSOR FIELD field_name VALUE field_value.
  IF field_name EQ 'ITAB-SALESORDER'.      "sales order field name
    PERFORM display_second_list USING field_value . "display second list
    CLEAR : field_name, field_value .
  ELSE.
    EXIT.
  ENDIF.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 09:48:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/3194645#M761231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-12T09:48:07Z</dc:date>
    </item>
  </channel>
</rss>

