Skip to Content
0
Dec 22, 2016 at 11:26 AM

Suggestion about the Structure View of ABAP in Eclipse

231 Views

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