Application Development and Automation 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: 
Read only

Error in Table Creation when using se11

Former Member
0 Likes
521

Hi all,

I created a table in SAP from tcode se11. When i activate it, it gives me a warning as " Enhancement Category for Table missing " and " Enhancement category for include or subtype missing ".

Can anyone please help me over come this warning.

1 ACCEPTED SOLUTION
Read only

uwe_schieferstein
Active Contributor
0 Likes
400

Hello Developer

Since release 6.40 SAP urges us to define the enhancement category for tables. You will find this function in SE11 -> menu "Extras" -> "Enhancement category".

You have to select one of the categories. These categories are related to the specific "view" of the runtime system on structures in a unicode system. Unicode has a fragmented view onto structure. It tries to group fields of similar types together. Now if you change your structure, for example by inserting a RAW field amidst CHAR fields, the unicode view onto the structure is likely to change. This may cause errors under unicode.

By selecting the category you restrict how your structure/table could be appended.

Please read the SAP online documentation about "Unicode" for further details.

Regards

Uwe

1 REPLY 1
Read only

uwe_schieferstein
Active Contributor
0 Likes
401

Hello Developer

Since release 6.40 SAP urges us to define the enhancement category for tables. You will find this function in SE11 -> menu "Extras" -> "Enhancement category".

You have to select one of the categories. These categories are related to the specific "view" of the runtime system on structures in a unicode system. Unicode has a fragmented view onto structure. It tries to group fields of similar types together. Now if you change your structure, for example by inserting a RAW field amidst CHAR fields, the unicode view onto the structure is likely to change. This may cause errors under unicode.

By selecting the category you restrict how your structure/table could be appended.

Please read the SAP online documentation about "Unicode" for further details.

Regards

Uwe