<?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: ADT (Eclipse) not showing LOOP in breadcrumb (cursor position) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732025#M2020491</link>
    <description>&lt;P&gt;For information, I also reproduced the issue with old ADT 2022-09 (ABAP Development Tools Version: 1.146.0) and ABAP 7.57 SP 0&lt;/P&gt;&lt;P&gt;If you move the caret towards the right, one character at a time, from the beginning of the word AUTHORITY-CHECK, you can see that the breadcrumb stops working when the caret is positioned at the right of the K letter.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2174511-image.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2174510-image.png" /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 13 Jun 2023 06:39:31 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2023-06-13T06:39:31Z</dc:date>
    <item>
      <title>ADT (Eclipse) not showing LOOP in breadcrumb (cursor position)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732019#M2020485</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
  &lt;P&gt;anyone please know if there is a way to display LOOP in "code scope" in ADT?&lt;BR /&gt;&lt;BR /&gt;In SAP GUI it shows full scope:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2169414-sap-gui.png" /&gt;&lt;/P&gt;
  &lt;P&gt;In ADT it is missing LOOP at the same cursor position:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2169415-adt.png" /&gt;&lt;/P&gt;
  &lt;P&gt;I am using latest Eclipse + ADT with default configuration.&lt;/P&gt;
  &lt;P&gt;Found out issue happens when there is AUTHORITY-CHECK in that LOOP. Here is sample code with the issue:&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;CLASS lcl_adt_issue DEFINITION.
  PUBLIC SECTION.
    CLASS-METHODS: do_something.
    CLASS-DATA: gt_test TYPE TABLE OF string.
ENDCLASS.

CLASS lcl_adt_issue IMPLEMENTATION.
  METHOD do_something.

    LOOP AT gt_test ASSIGNING FIELD-SYMBOL(&amp;lt;ls_test&amp;gt;).

      AUTHORITY-CHECK OBJECT 'I_IWERK'
        ID 'TCD'   FIELD 'I'
        ID 'IWERK' FIELD ''.
      IF sy-subrc &amp;lt;&amp;gt; 0.
        DATA(lv_auth_issue) = abap_true.
        CONTINUE. "Next line
      ENDIF.

      EXIT. "&amp;lt;&amp;lt;&amp;lt; Here breadcrumb does not show LOOP

    ENDLOOP.

  ENDMETHOD.
ENDCLASS.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;EDIT: Closed, because it was identified it is bug. And it is forwarded to ADT developers now (see marked answer + comments). Thank you everyone!&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 06:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732019#M2020485</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2023-05-31T06:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: ADT (Eclipse) not showing LOOP in breadcrumb (cursor position)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732020#M2020486</link>
      <description>&lt;P&gt;Hello Tomas,&lt;/P&gt;&lt;P&gt;I tried to reproduce this using my ADT client (latest version) and it worked fine for me (see the screenshot below). I used the "Toggle breadcrumb in ABAP source code editors" option from the toolbar (with the shortcut Alt+Shift+B). I assume this is what you were referring to with "code scope".&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2170511-adt-breadcrumbs.png" /&gt;&lt;/P&gt;&lt;P&gt;Could you please provide a code example or could you check whether my example from above does work for you?&lt;/P&gt;&lt;P&gt;Kind regards,&lt;BR /&gt;Armin&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 10:14:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732020#M2020486</guid>
      <dc:creator>arminfarmani</dc:creator>
      <dc:date>2023-05-31T10:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: ADT (Eclipse) not showing LOOP in breadcrumb (cursor position)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732021#M2020487</link>
      <description>&lt;P&gt;Yes "breadcrumb", thank you! Oh it is showing LOOP, when I tried recreate this issue with very simple code.&lt;/P&gt;&lt;P&gt;But then I found out exact situation when it does not work. It is when there is AUTHORITY-CHECK command in the loop.&lt;/P&gt;&lt;P&gt;I will now update my original question and add there a sample minimal code which can be tested.&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 11:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732021#M2020487</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2023-05-31T11:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: ADT (Eclipse) not showing LOOP in breadcrumb (cursor position)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732022#M2020488</link>
      <description>&lt;P&gt;Hello &lt;SPAN class="mention-scrubbed"&gt;armin.farmani.anosheh&lt;/SPAN&gt;, any update on this please?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2023 14:03:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732022#M2020488</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2023-06-12T14:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: ADT (Eclipse) not showing LOOP in breadcrumb (cursor position)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732023#M2020489</link>
      <description>&lt;P&gt;I see the same:&lt;/P&gt;&lt;P&gt;Breadcrumb loop&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2176488-image.png" /&gt;&lt;/P&gt;&lt;P&gt;Move one line down...&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2176489-image.png" /&gt;&lt;/P&gt;&lt;P&gt;Without authority check works fine. How strange!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2023 15:08:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732023#M2020489</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2023-06-12T15:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: ADT (Eclipse) not showing LOOP in breadcrumb (cursor position)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732024#M2020490</link>
      <description>&lt;P&gt;And I'm running the very latest release of ADT and Eclipse.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2023 15:09:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732024#M2020490</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2023-06-12T15:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: ADT (Eclipse) not showing LOOP in breadcrumb (cursor position)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732025#M2020491</link>
      <description>&lt;P&gt;For information, I also reproduced the issue with old ADT 2022-09 (ABAP Development Tools Version: 1.146.0) and ABAP 7.57 SP 0&lt;/P&gt;&lt;P&gt;If you move the caret towards the right, one character at a time, from the beginning of the word AUTHORITY-CHECK, you can see that the breadcrumb stops working when the caret is positioned at the right of the K letter.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2174511-image.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2174510-image.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2023 06:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732025#M2020491</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-06-13T06:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: ADT (Eclipse) not showing LOOP in breadcrumb (cursor position)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732026#M2020492</link>
      <description>&lt;P&gt;Hello &lt;SPAN class="mention-scrubbed"&gt;tomas.buryanek&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;I have forwarded your question to the corresponding development team to resolve this issue.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 17:05:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adt-eclipse-not-showing-loop-in-breadcrumb-cursor-position/m-p/12732026#M2020492</guid>
      <dc:creator>arminfarmani</dc:creator>
      <dc:date>2023-06-26T17:05:50Z</dc:date>
    </item>
  </channel>
</rss>

