‎2007 Jun 13 4:50 AM
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
‎2007 Jun 13 5:53 AM
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
‎2007 Jun 13 4:52 AM
when it immediately comes after FROM in a select statement it should be a table or view......
use TADIR table to find objects
‎2007 Jun 13 4:53 AM
double click on sysobjects, system will take you to declaration part.
aRs
‎2007 Jun 13 4:53 AM
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.........
‎2007 Jun 13 4:54 AM
‎2007 Jun 13 4:59 AM
Hi Rudy,
When Execute your program it shows any error or not?
Thanks.
Message was edited by:
Viji
‎2007 Jun 13 5:04 AM
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.
‎2007 Jun 13 5:53 AM
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
‎2007 Jun 13 6:03 AM
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.
‎2008 Nov 05 12:05 AM