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: 

HOW TO FIX WARNING "SELECT QUERY"

anilkumar_raina
Participant
0 Kudos

TABLES:FEBEP.

the query is

select kukey esnum kwbtr partn pablz from FEBEP into corresponding fields of FEBEP.

CODE INSPECTOR GIVES ME ERROR LARGE TABLE SPECIFY WHERE CLAUSE.BUT I CAN'T SPECIFY WHERE CLAUSE.

7 REPLIES 7

Former Member
0 Kudos

TABLES:FEBEP.

select kukey esnum kwbtr partn pablz from FEBEP into corresponding fields of FEBEP

WHERE key1 = c1

AND key2 = c2

...

0 Kudos

BUT MY PROBLEM IS THAT I CANNOT GIVE ANY KEY IN WHERE CLAUSE

0 Kudos

Hi

Your error message suggests that you are trying to select too much data, so a couple of questions first:

1. Why can you not specify a Where clause?

2. How many records are held in FEBEP on your system?

You are also selecting ALL of the fields from this table - I am sure you do not need ALL of them for your needs so I would suggest trying to create an itab based on a just those fields that you are actually going to use, for example:


TYPES:
  BEGIN OF ty_febep,
    kukey LIKE febep-kukey,
    esnum LIKE febep-esnum,
  END OF ty_febep.

DATA:
  i_febep TYPE STANDARD TABLE OF ty_febep.

SELECT kukey esnum
INTO TABLE i_febep
FROM febep.

This might help but I suspect it is more to do with not having a Where condition.

Let me know how you get on.

Kind regards

Andy

Former Member
0 Kudos

Hi Anil,

(You can hide the message using "#EC *).

Reward if this helps.

Manish

Former Member
0 Kudos

hi

good

it might be you r selecting and puttiong the dta in the same table.

thanks

mrutyun^

Former Member
0 Kudos

Hi,

Instead of using Single select query, use Select....Endselect.

Select ............. into work_area....

Append itab from work_area

endselect.

If it works, please reward.

Thanks

Prem

0 Kudos

Hello All,

Is anyone help me about "SAP AutoBank" tool ? have few questions on this sujbect

Thank you very much for your help and support

Thanks

Parandham