Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
arminfarmani
Product and Topic Expert
Product and Topic Expert
Hi everyone,

As most of you probably already know, there is the famous Ctrl+Shift+A search in ABAP Development Tools (ADT) to search for development objects in an ABAP system. So, you might wonder, why am I writing about the topic of searching for development objects if there’s a perfectly functioning solution already available? I’m glad you asked! Let me introduce you to the new ABAP object search in ADT and let me explain why its features make it a powerful tool for your everyday search. I will also show you why and when exactly you are going to need it by providing an example.

Why use the new ABAP Object Search?


While the Ctrl+Shift+A search is very handy for quickly searching and opening development objects, the new ABAP object search does come with lots of more nuanced features and benefits. I will briefly mention some major advantages of the ABAP object search before showing a real-world example to you:

  • You can execute different actions on multiple development objects from your search result by selecting them and then using the context menu. Some prominent actions are running ATC checks or unit tests for one or more objects.

  • It’s also possible to delete development objects by using the context menu on the entries of your search result list.

  • You can group and manually configure the columns of your results to order the result list in whatever way benefits you the most.

  • The ABAP object search allows you to use the element info on your search results so that you can simply press F2 to get quick information on any given object.

  • The search results are kept for the current ADT session whereas it vanishes in case of the Ctrl+Shift+A search once you decided to open a development object.


How to Open the ABAP Object Search in ADT:


To open the ABAP object search in ADT, you can choose Search->Search… or alternatively use the shortcut Ctrl+H. Then the following Search dialog is opened:


ABAP Object Search


In case you initially don’t see the tab ABAP Object Search, choose the Customize… button and select the checkbox for ABAP Object Search, as can be seen in the following screenshot:


Customize Your Search



Example: Finding Released APIs in an ABAP System


Now, we will go through an example use case to better understand how to use the ABAP object search. Let’s say that we are interested in finding all those released APIs that start with the string “/DMO” in an ABAP system. How do we find them?

As you can see in the dialog, there are two fields right after our chosen Project. Those fields are the Object Name Pattern and the Property Filter. By using the right combination, we’re able to find all the objects that we are interested in.

To find all the released APIs, we just have to do the following:

  1. Use content assist with Ctrl+Space in the Property Filter field (see also the following screenshot).

  2. Choose api.

  3. After choosing the property api, the content assist offers us in the next step multiple values. We choose RELEASED.



Use the Content Assist


If we would now select Search, we would find all the released APIs for the project DEMO. But to show how the object name pattern works, we additionally write /DMO in the field Object Name Pattern and after that we finally select Search. You will now see all those released APIs that start with “/DMO” in their name. In the system that I am using, 28 objects were found that match the object name pattern and property filter, and it looks like this:



Conclusion and Further Remarks


You’ve made it all the way to the end, congratulations! For those of you who still haven’t had enough, I would like to show you one more feature of the ABAP object search that is pretty cool. If you look at my result list from the last screenshot, you might think, the objects are not ordered in a way that is appealing. Therefore, we open the dropdown menu of the Group Objects by icon in the toolbar and then choose Object Type. Now, as you can see in my next screenshot, the development objects are nicely ordered by their type.


 

I hope you will find the ABAP object search as useful as I do, and I would be happy to get your feedback. Please feel free to share your thoughts in a comment. You can also follow my profile to keep getting updated about future developments.

Learning Materials


Here are some extra links and resources that you may find helpful:
2 Comments