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

Code inspector warning message

Former Member
0 Likes
316

Hi Experts,

  

  Code inspector throws warning message "Table names in select statement".  How to rectify this warning message. My coding is

    Select  single * from bnka into wa_bnka

        where banks eq p_banks

            and bankl eq p_bankl

Thanks

1 REPLY 1
Read only

kumud
Active Contributor
0 Likes
278

Hi Kelvin,

I tried executing the same code in SAP ECC 6.0 and found no warning messages in code inspector for this piece of coding.

I tried the below code:

 

DATA: wa_bnka TYPE bnka.

PARAMETERS: p_banks TYPE banks,

                         p_bankl TYPE bankk.

SELECT SINGLE * FROM bnka INTO wa_bnka

WHERE banks EQ p_banks

AND bankl EQ p_bankl.

What is the version of system you are working on?

Regards,

Kumud