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: 
matt
Active Contributor
I've created a plugin to ADT, that runs a few proprietry function modules on a back end system. These function modules perform security specific code scans. Obviously, you can't actually run this back end without that software being installed, however, I think it could be useful to see how I've achieved certain functionality.

The plugin is launched from the run context menu of an ABAP editor view, or the context view of that ABAP object. Having determined the ABAP object name and type (Class, program etc.) is, a function module is run on the backend that performs the scan, and returns the results to the plugin.

The results are displayed in an e4 view, the basic view, in a tableview form. There is a context menu to display the same information in a tree view - the call stack.

Double clicking on the name of an object opens that object in another editor view, position at the place referred to by the scanner.

There are preference to control the depth of the scan, columns to display, views to show by default, what to scan, and what checks to perform during the scan. These are available in the standard window->preferences menu path in Eclipse.

The code repository is here:

https://github.com/matthewdjb/a4e/tree/master

In summary, the code shows you

  1. How to determine what the editor is showing

  2. How to navigate given the name and type of an ABAP object (Class, program etc.) - this needs a function module in the backend which determines the URI you can then use in ADT to open that object. The key code for this was provided for my by thomasalexander.ritter, so thanks go to him 😀. I've included the code that I use (well, the important bits) in the repository.

  3. How to add a context menu to a view

  4. A way of managing multiple views

  5. How to use your own preference repository

  6. How to create a download site for use with Install New Software.


I hope that this will be of use to current and future ADT plugin developers.

Many thanks to all those who helped me with this over the last two years.