cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Magic and a full class table

pedrocavaco
Participant
1,894

Hi,

Today I crossed paths with a humble table.

Looks like SE11 enabled redirects to the class builder if the class/table name is less than 16.

BUG reported and shared.

View Entire Topic
retired_member
Product and Topic Expert
Product and Topic Expert

There's a reason behind.

Dictionary types and classes/interfaces are both global types in ABAP and can be used behind TYPE REF TO ...

You cannot have dictionary types and classes/interfaces of the same name.

If you enter the name of a dictionary type in the class builder and try to create it as a class or interface you get an according message.

Another way around, you get that message too.

When you want to display the global type in SE11, the tool is friendly (maybe a bit eager) and navigates to the type's definition, i.e. the class builder for global classes or interfaces.

Not a bug!

PS: And that's why the names of global classes and interfaces as a rule should start with CL_, CX_, IF_, ...

pedrocavaco
Participant

Hi Horst,

Thank you for your clear explanation, I got the point now and why I miss interpreted the situation.

.