cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hello All,

I wrote a select statement over internal table, and when performed the ATC check, I got the error as 'The SELECT command is executed on the database.'(SELECT 694). Any inputs on why this error is coming up?

No pragma to suppress the error.

Following is the code that was written:

select a, count ( a )

as lv_count

from @lt_internaltable as lt

group by a

into table @data(lt_Tab2).

Thanks and Regards,

Naga

0 Likes
View Entire Topic
BiberM
Contributor
0 Likes

Hi.

Isn't that the desired behavior? You run a Select on an internal table. This is pushes to the database and executed with database Operations.

The question is: why is that an ATC error? Doesn't want your Company those means to be used?

0 Likes

I'm using SAP standard ATC checks, without any variants!!

Does those mean, SAP doesn't want this operation to be performed in such a way.