<?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 Get cursor not working in classical interactive report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673425#M1448343</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; i created one classical interactive report.in basic list whenever double click on any cell, it has to go to corresponding SAP transaction. For example double click on cell of salesorder number, it has to go to VA03 like that. for this purpose i used GET CURSOR FIELD v_filed VALUE v_value. But i unable to get filed name in variable v_field when double click on particular cell,i can get value in that cell. Please help me regarding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_filed and v_value are of char of length 20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt; Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Mar 2010 08:51:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-01T08:51:24Z</dc:date>
    <item>
      <title>Get cursor not working in classical interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673425#M1448343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; i created one classical interactive report.in basic list whenever double click on any cell, it has to go to corresponding SAP transaction. For example double click on cell of salesorder number, it has to go to VA03 like that. for this purpose i used GET CURSOR FIELD v_filed VALUE v_value. But i unable to get filed name in variable v_field when double click on particular cell,i can get value in that cell. Please help me regarding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_filed and v_value are of char of length 20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt; Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Mar 2010 08:51:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673425#M1448343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-01T08:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Get cursor not working in classical interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673426#M1448344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;Please Check the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hide:wa-vbeln.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;gv_fie(100),gv_val(100).
AT LINE-SELECTION.
  GET CURSOR FIELD gv_fie VALUE gv_val.
case gv_fie
 WHEN 'WA-VBELN'.
  SET PARAMETER ID 'AUN' FIELD wa-vbeln.
  CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
end case.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Debug the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Mar 2010 08:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673426#M1448344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-01T08:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Get cursor not working in classical interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673427#M1448345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Thanks alot for your reply. But by using Hide technique we can go to one transaction only. I need to go to different transactions depending upon cell user clicks.&lt;/P&gt;&lt;P&gt; here is my sample code.&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD rv_field VALUE rv_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Detail report for the Billing document.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF rv_field = c_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        input  = rv_value&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        output = rv_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SET PARAMETER ID c_vf FIELD rv_value.&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION c_vf03 AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Detail report for the sales document.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ELSEIF rv_field = c_vbeln1.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        input  = rv_value&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        output = rv_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SET PARAMETER ID c_aun FIELD rv_value.&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION c_va03 AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Detail report for the Accounting document.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ELSEIF rv_field = c_belnr.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        input  = rv_value&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        output = rv_value.&lt;/P&gt;&lt;P&gt;    SET PARAMETER ID c_bln FIELD rv_value.&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION c_fb03 AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Detail report for the Material Number.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ELSEIF rv_field = c_matnr.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        input  = rv_value&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        output = rv_value.&lt;/P&gt;&lt;P&gt;    SET PARAMETER ID c_mat FIELD rv_value.&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION c_mm03 AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Detail report for the Customer Number.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ELSEIF rv_field = c_kunnr.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        input  = rv_value&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        output = rv_value.&lt;/P&gt;&lt;P&gt;    SET PARAMETER ID c_kun FIELD rv_value.&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION c_xd03 AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  CLEAR: rv_field, rv_value.&lt;/P&gt;&lt;P&gt;here i am not able to get field name in variable rv_filed&lt;/P&gt;&lt;P&gt;but i can get value in rv_value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plese do solution for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt; Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Mar 2010 09:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673427#M1448345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-01T09:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Get cursor not working in classical interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673428#M1448346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;In top of the program clear the variable.&lt;/P&gt;&lt;P&gt;data:rv_field(100).&lt;/P&gt;&lt;P&gt;clear :rv_field.&lt;/P&gt;&lt;P&gt;Change the length and  try it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[sample code|http://wiki.sdn.sap.com/wiki/display/Snippets/ABAP-SET+PARAMETER]&lt;/P&gt;&lt;P&gt;[sample code1|http://wiki.sdn.sap.com/wiki/display/Snippets/Interactive&lt;EM&gt;report&lt;/EM&gt;using&lt;EM&gt;get&lt;/EM&gt;cursor]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Mar 2010 09:27:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673428#M1448346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-01T09:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Get cursor not working in classical interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673429#M1448347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  i solved my problem. Actully i used performs to diplay data in basic list. At that time i passed internal table with out header line and i taken local work are to get data from internal table. &lt;/P&gt;&lt;P&gt;Just like &lt;/P&gt;&lt;P&gt;Loop at itab into wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: wa-vbeln.&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;clear wa.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in another perform i used GET CURSOR statement that's why it didn't recognise field name but it recognises field value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, i passed Work area while printing data. Then it works. Any how Dharma thanks alot for your suggesion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt; madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Mar 2010 10:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-cursor-not-working-in-classical-interactive-report/m-p/6673429#M1448347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-01T10:40:06Z</dc:date>
    </item>
  </channel>
</rss>

