‎2006 Sep 18 3:01 PM
In my FM , I need to use the Ztable 'zlog' . So , i declare the table using Tables statement . when i Syntx Check , it is fine . But when i try and activate the FM it says , the table " zlog" has been already declared..If i comment the declaration , it gives an syntax error that " table zlog not declared " .
tables: zlog,
vbuk,
lips.
select single * from zlog into zlog
where vbeln = vbeln_l.
What can be the possible cause of such error ??
Message was edited by: SAP BEE
‎2006 Sep 18 3:06 PM
HI sap bee,
See if you get the same message if you declare your variables in the top section of the function module.
in se37, goto->global data.
In the global data include declare your tables.
or check if you have the same tables parameter defined in the tables parameter of the function module.
Regards,
ravi
‎2006 Sep 18 3:06 PM
HI sap bee,
See if you get the same message if you declare your variables in the top section of the function module.
in se37, goto->global data.
In the global data include declare your tables.
or check if you have the same tables parameter defined in the tables parameter of the function module.
Regards,
ravi
‎2006 Sep 18 3:07 PM
‎2006 Sep 18 3:07 PM
‎2006 Sep 18 3:09 PM
Hello,
Don't activate the FM separately. Right click on the function group and say activate.
Regs,
Venkat Ramanan N
‎2006 Sep 18 3:09 PM
hi,
i guess one of your include program is not activated. check for the same ..
Regards,
Santosh
‎2006 Sep 18 3:26 PM
thanks evryone . there was this FM in the group , that was declaring in the source code. solved