<?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: SAP Controls tutorial code problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108440#M105498</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think that should be there.  Try removing it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: EVENT_TYPE(20) TYPE C.
CLASS lcl_event_handler DEFINITION.

PUBLIC SECTION.
   CLASS-METHODS: CATCH_DBLCLICK 
             FOR EVENT DBLCLICK OF CL_GUI_TEXTEDIT.

ENDCLASS.



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Dec 2005 21:27:00 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2005-12-19T21:27:00Z</dc:date>
    <item>
      <title>SAP Controls tutorial code problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108439#M105497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm working on a SAP tutorial and I can't get this piece of their code to work.  We're on version 4.7, basis version 6.2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a link to the tutorial and here is a segment of code that does not pass the syntax check.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_webas630/helpdata/en/ea/6013361d5af835e10000009b38f839/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_webas630/helpdata/en/ea/6013361d5af835e10000009b38f839/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: EVENT_TYPE(20) TYPE C.&lt;/P&gt;&lt;P&gt;CLASS lcl_event_handler DEFINITION.&lt;/P&gt;&lt;P&gt; PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;   CLASS-METHODS: CATCH_DBLCLICK FOR EVENT DBLCLICK OF CL_GUI_TEXTEDIT.&lt;/P&gt;&lt;P&gt;                                IMPORTING SENDER.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lesson one worked just the way the tutorial described.  But the first exercise of lesson two is giving me a syntax error regarding IMPORTING SENDER.  Has anyone successfully completed exercise one of lesson two?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bruce&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2005 21:23:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108439#M105497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-19T21:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Controls tutorial code problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108440#M105498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think that should be there.  Try removing it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: EVENT_TYPE(20) TYPE C.
CLASS lcl_event_handler DEFINITION.

PUBLIC SECTION.
   CLASS-METHODS: CATCH_DBLCLICK 
             FOR EVENT DBLCLICK OF CL_GUI_TEXTEDIT.

ENDCLASS.



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2005 21:27:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108440#M105498</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-19T21:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Controls tutorial code problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108441#M105499</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 remove the fullstop (dot) after the CLASS-METHODS: CATCH_DBLCLICK FOR EVENT DBLCLICK OF CL_GUI_TEXTEDIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: EVENT_TYPE(20) TYPE C.&lt;/P&gt;&lt;P&gt;CLASS lcl_event_handler DEFINITION.&lt;/P&gt;&lt;P&gt;PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;CLASS-METHODS: CATCH_DBLCLICK FOR EVENT DBLCLICK OF CL_GUI_TEXTEDIT IMPORTING SENDER.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2005 21:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108441#M105499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-19T21:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Controls tutorial code problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108442#M105500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vara,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for spotting that mis-placed '.'.  Removing that corrected the syntax problem.  That was a very fast and useful response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bruce&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for thinking about and responding to my question.  I'm not sure what you are suggesting be removed.  If it was the period, then your answer was the same as Vara's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bruce&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2005 21:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108442#M105500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-19T21:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Controls tutorial code problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108443#M105501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually I was saying to remove the IMPORTING SENDER, but then on my way home from work, I was thinking that the period was placed in the statement accidently.  I ran in the door, booted up the laptop, came here to tell you to remove the period, and Vara beat me to it.  Oh well,  good catch Vara.  Glad your problem is solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2005 22:36:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-controls-tutorial-code-problem/m-p/1108443#M105501</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-19T22:36:45Z</dc:date>
    </item>
  </channel>
</rss>

