Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Suggestion about the Structure View of ABAP in Eclipse

stefan_schnell
Active Contributor
0 Kudos

Hello community, hello Thomas,

I have a suggestion about the structure view of ABAP in Eclipse. In a normal case you see a structure e.g. like this:

@EndUserText.label : 'Proxy Structure (generated)'
@AbapCatalog.enhancementCategory : #EXTENSIBLE_ANY
define type zz_test {
  nummer_eins  : zz_str_partner;
  nummer_zwei  : zz_date;
}

But I would prefer that a structure, e.g. in my case zz_str_partner, could also be expand via nodes in front of the name like this:

@EndUserText.label : 'Proxy Structure (generated)'
@AbapCatalog.enhancementCategory : #EXTENSIBLE_ANY
define type zz_test {
  nummer_eins  : zz_str_partner;
    partner_eins  : zz_bpnr;
    partner_zwei  : zz_id;
  nummer_zwei  : zz_date;
}

In this case I would have the possibility to view the whole structure in one view and it is not necessary to open more views with a part of the structure. I think this would increase the clarification.

Cheers
Stefan

1 ACCEPTED SOLUTION

michael_gutfleisch
Active Participant

Hi Stefan,
well, that's difficult in a source based editor, because we would have to avoid that the included parts are edited by the user as well.

But when you press F2 on zz_str_partner then you will see the details of this structure without navigating to it.

Regards,
Michael

2 REPLIES 2

michael_gutfleisch
Active Participant

Hi Stefan,
well, that's difficult in a source based editor, because we would have to avoid that the included parts are edited by the user as well.

But when you press F2 on zz_str_partner then you will see the details of this structure without navigating to it.

Regards,
Michael

stefan_schnell
Active Contributor
0 Kudos

Hello Michael,

thank you very much for your reply, F2 is a very good tip.

Cheers
Stefan