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: 

what this error mean

Former Member
0 Kudos

hi,

I am doing a code inspector i have got a warning,

" Generically buffered key area not completely specified for table CSKS."

What does error mean how to rectify it.

4 REPLIES 4

Former Member
0 Kudos

Are you using select statement to retrieve data??

If you are using so, include your key fields in your selection criteria.

Former Member
0 Kudos

Hi Anitha,

Your select statement is bypassing the sap table buffers.

Visit his link...

http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/evaluati... the quality of your abap programs and other repository objects with the code inspector

For more specific answer see the page 27.

Hope it helps.

Regards,

Maheswaran.B

Former Member
0 Kudos

HI

THIS ERROR ARISES BECAUSE YOU SELECTED GENERIC BUFFERING IN THE TECHNICAL SETTING OF THE TABLE AND YOU TRIED THE SELECT STATEMENT WITHOUT MENTIONING THAT KEY FIELD USED.

RECTIFICATION

WHEN YOU ACCESS THE DATA FROM THAT TABLE THE GENERIC KEY SHOULD BE REFERRED SO THAT THE WHOLE GENERIC AREA IS LOADED INTO THE TABLE BUFFER.

FOR MORE DETAILS CHECK THE LINK

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/aa/4734a00f1c11d295380000e8353423/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/aa/4734a00f1c11d295380000e8353423/content.htm</a>

OR

<a href="http://cma.zdnet.com/book/abap/ch05/ch05.htm">http://cma.zdnet.com/book/abap/ch05/ch05.htm</a>

if this finds useful please reward points.

REGARDS

ANOOP

hymavathi_oruganti
Active Contributor
0 Kudos

yes, what mr anoop said is exactly right.

i also checked, in se11, for this CSKS table, in technical settings, <b>buffering type</b> is "generic area buffered" selected.

u cant change that. u need access key to change :(.

one thing u can do is,

no. of key fields specified are two here.

so use first two key fields as indexing and try, this error will not come.

Message was edited by: Hymavathi Oruganti