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

SELECT command

former_member207153
Participant
0 Likes
968

Hi All,

currently i had problem with SELECT command :

SELECT name FROM sysobjects WHERE name = 'ABC' AND type = 'P'

sysobjects is not Table or internal data declaration,

how do i know what is this sysobjects about?

Please help

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
943

Hi Rudy,

Place on sysobjects and press F1, and c what help do u get from the system. According to my knowledge, its not an table and hence u cant use SELECT command on the same

Cheers,

PRash

9 REPLIES 9
Read only

Former Member
0 Likes
943

when it immediately comes after FROM in a select statement it should be a table or view......

use TADIR table to find objects

Read only

former_member194669
Active Contributor
0 Likes
943

double click on sysobjects, system will take you to declaration part.

aRs

Read only

Former Member
0 Likes
943

Hi

Goto SE11 and Check Whether this "sysobjects" In a View or its a Table. If this object is not in the view or table list you cant use your Select command. Also make sure that this sysobjects contains a field like "name".

Reward All Helpfull Answers.........

Read only

Former Member
0 Likes
943

Hi Rudy,

Just Double click the SYSOBJECTS.

Thanks.

Read only

Former Member
0 Likes
943

Hi Rudy,

When Execute your program it shows any error or not?

Thanks.

Message was edited by:

Viji

Read only

Former Member
0 Likes
943

Hi,

Upto my Knowledge there is no Table or View with Name SYSOBJECTS.So u can't use it in a Select command.

U Pls Check it out whether it is correct or not.

Regards,

Padmam.

Read only

Former Member
0 Likes
944

Hi Rudy,

Place on sysobjects and press F1, and c what help do u get from the system. According to my knowledge, its not an table and hence u cant use SELECT command on the same

Cheers,

PRash

Read only

Former Member
0 Likes
943

i do agree wid Padmam eve i dint find any SYSOBJECTS tables.. but if you any table/view like thata check whether it is ACTIVE or not if not plz activate that.

Read only

former_member207153
Participant
0 Likes
943

case close