<?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: How to debug context menu in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302483#M1534348</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't drag a breakpoint shortcut onto a context menu.  You have to either set the breakpoint in the PAI and follow through the process or set the breakpoint in the DISPATCH method of class CL_GUI_CFW - the functionality is going to be triggered via an event and received by an event handler.  Most likely, you've got a local class in that transaction for the context menu that adds the functions (ok codes) and handles the events - you just need to search for it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Sep 2010 13:59:53 GMT</pubDate>
    <dc:creator>brad_bohn</dc:creator>
    <dc:date>2010-09-23T13:59:53Z</dc:date>
    <item>
      <title>How to debug context menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302480#M1534345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a context menu in PR05 tocode, it contains field &lt;STRONG&gt;'Attachment List'&lt;/STRONG&gt; in the the context menu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I select the 'Attachment List' in the context menu I want to debug what the 'Attachment List' is doing. &lt;/P&gt;&lt;P&gt;I It's not possible to have dynamic debug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 11:13:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302480#M1534345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-23T11:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to debug context menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302481#M1534346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmmm what about typing /h in the OK_CODE box, pressing enter ONE time, and after that using your context menu?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Florian Kemmer on Sep 23, 2010 1:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 11:16:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302481#M1534346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-23T11:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to debug context menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302482#M1534347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create a SAP GUI short cut for system cammand /h.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then drag and drop that to the functionality and then debug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or Put a break-point in the code and run the fuctionality.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 11:25:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302482#M1534347</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2010-09-23T11:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to debug context menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302483#M1534348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't drag a breakpoint shortcut onto a context menu.  You have to either set the breakpoint in the PAI and follow through the process or set the breakpoint in the DISPATCH method of class CL_GUI_CFW - the functionality is going to be triggered via an event and received by an event handler.  Most likely, you've got a local class in that transaction for the context menu that adds the functions (ok codes) and handles the events - you just need to search for it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 13:59:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302483#M1534348</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-09-23T13:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to debug context menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302484#M1534349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create one .TXT file as follow in your desktop   then after when u  select the 'Attachment List' before &lt;/P&gt;&lt;P&gt;that  drag and drop this file in 'Attachment List' then select list &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short save it in your desktop.&lt;/P&gt;&lt;P&gt;You can simply drag and drop this notepad on the sap screen to activate debugging on screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
[FUNCTION] 
Command=/H 
Title=Debugger 
Type=SystemCommand 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kk.adhvaryu on Oct 1, 2010 12:31 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 10:30:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302484#M1534349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T10:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to debug context menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302485#M1534350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can simply drag and drop this notepad on the sap screen to activate debugging on screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;NO, you can't - did you read the question or my post???  You can't use that technique for a CONTEXT MENU.  Did you try it before posting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 14:42:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302485#M1534350</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-10-01T14:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to debug context menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302486#M1534351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Copy-paste from a site that has been banned here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;Moderator Message: I have already warned you against copy-pasting other people's work. Please acknowledge that you have received the warning.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kishan P on Oct 6, 2010 10:48 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Oct 2010 05:45:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302486#M1534351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-02T05:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to debug context menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302487#M1534352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved by using calss TO cl_gos_attachments&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 05:16:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-debug-context-menu/m-p/7302487#M1534352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-15T05:16:03Z</dc:date>
    </item>
  </channel>
</rss>

