2007 Jun 08 8:10 AM
Hi All,
Is there any other way to declare tables in a SAP report other than writing TABLES : ..............,
................ .
Regards,
Sharadendu
2007 Jun 08 8:14 AM
2007 Jun 08 8:12 AM
Hi Sharadendu,
I don't think so. You have to use tables only.
Regards,
Atish
2007 Jun 08 8:13 AM
hi,
If it is a standard table then there is no other way to declare.
But if it is an internal table u can use data or types.
2007 Jun 08 8:14 AM
hi
good
i dont think there is any othere way to declare the table other than using the TABLES statement.
thanks
mrutyun^
2007 Jun 08 8:14 AM
2007 Jun 08 8:18 AM
Hi Sharadendu,
What is the obejctive of you trying to declere TABELS , if it is for select-options then you have two ways of doing it.
1.
data : ty_matnr type mara-matnr.
select-options : so_matnr for ty_matnr.
this will automatically give search help for so_matnr.
2.
data : ty_matnr type matnr.
select-options : so_matnr for ty_matnr.
this will show the select option , but no search help will be displayed.
you will have write code to display the search help.
Regards
Arun