<?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: Forward Navigation in Eclipse in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/forward-navigation-in-eclipse/m-p/10998701#M1896197</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemika,&lt;/P&gt;&lt;P&gt;you may also work through the ABAP in Eclipse Feature Explorer. You will be surprised what else is possible with eclipse.&lt;/P&gt;&lt;P&gt;Here is a link: &lt;A __default_attr="104009" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="Get more out of ABAP in Eclipse with the Feature Explorer" href="https://community.sap.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;~Florian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Apr 2015 16:21:00 GMT</pubDate>
    <dc:creator>Florian</dc:creator>
    <dc:date>2015-04-24T16:21:00Z</dc:date>
    <item>
      <title>Forward Navigation in Eclipse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/forward-navigation-in-eclipse/m-p/10998699#M1896195</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 am new to SAP and ABAP in Eclipse. So far we were using SAP GUI for ABAP , but now we are moving towards Eclipse for ABAP.&lt;/P&gt;&lt;P&gt;I want to know, is forward navigation possible in Eclipse?&lt;/P&gt;&lt;P&gt;I mean in SAP GUI when we want to create a subroutine using Form and call using Perform, &lt;/P&gt;&lt;P&gt;We first write Perform sub_routine_name parameters and double clicking on sub_routine_name it automatically generates Form code for us.&lt;/P&gt;&lt;P&gt;Is it Possible in Eclipse Editor?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here are screenshots for SAP GUI forward navigation. &lt;/P&gt;&lt;P&gt;Double Clicking on the 'get_mard' subroutine a pop up window opens which ask to create new object and then it creates a form for this perform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/692125" height="312" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following perform is generated automatically.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/692135" width="450" /&gt;&lt;/P&gt;&lt;P&gt;In Eclipse it says Form 'get_mard' does not exist. We need to create it manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 09:48:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/forward-navigation-in-eclipse/m-p/10998699#M1896195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-24T09:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Forward Navigation in Eclipse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/forward-navigation-in-eclipse/m-p/10998700#M1896196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemika,&lt;/P&gt;&lt;P&gt;these kind of object creations from within the code editor can be done via the so called Quick Assists in the eclipse editor. But unfortunately we do not support form routines by quick assists. We only support function modules and classes/methods currently.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you can do the following for test purposes in the editor:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA OBJ TYPE REF TO ZCL_JUST_A_TEST_CLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will then get an systex-error that the class &lt;SPAN style="font-size: 13.3333330154419px;"&gt;ZCL_JUST_A_TEST_CLASS&lt;/SPAN&gt; does not exist.&lt;/P&gt;&lt;P&gt;Now you can position the cursor on the class anem and press CTRL + 1 !.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you will see the options that are possible in that context. &lt;/P&gt;&lt;P&gt;You can do this also methods and function modules. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Thomas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 11:21:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/forward-navigation-in-eclipse/m-p/10998700#M1896196</guid>
      <dc:creator>ThFiedler</dc:creator>
      <dc:date>2015-04-24T11:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Forward Navigation in Eclipse</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/forward-navigation-in-eclipse/m-p/10998701#M1896197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemika,&lt;/P&gt;&lt;P&gt;you may also work through the ABAP in Eclipse Feature Explorer. You will be surprised what else is possible with eclipse.&lt;/P&gt;&lt;P&gt;Here is a link: &lt;A __default_attr="104009" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="Get more out of ABAP in Eclipse with the Feature Explorer" href="https://community.sap.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;~Florian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 16:21:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/forward-navigation-in-eclipse/m-p/10998701#M1896197</guid>
      <dc:creator>Florian</dc:creator>
      <dc:date>2015-04-24T16:21:00Z</dc:date>
    </item>
  </channel>
</rss>

