‎2008 Oct 27 6:49 AM
Hello ,
I ve a select statement. its like SELECT SINGLE FILEDS FROM DBTABLE INTO SCREEN_FIELDS WHERE CONDITIONS.
SCREEN_FIELDS ARE THE DRAG FIELDS FROM THE TABLE IN SCREEN.
It showing me an error message when i m checking for the syntax that " the fields are not in the list. but i ve the checked all the fields are in proper order.
‎2008 Oct 27 6:53 AM
Hi
If you have used table fields on screen than yo u have to select data in that table only.
Suppose you have screen field from work area of table itab
then write like this:
select single fields from DB tab
into wa_itab
where....
‎2008 Oct 27 7:01 AM
Hi Goldenn,
There may be problem in Type mismatch between the screen fields and database table fields.
Regards
Kumar M.
‎2008 Oct 27 7:34 AM
Hi,
Whatever fileds you have decalred in the screen, you need to declare the same in the TOP INCLUDE of your program.
For example, you have a field in the screen with name w_name
then you must declare the same variable in the program also.