Application Development 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: 

TABLES..

sharadendu_agrawal
Active Participant
0 Kudos
101

Hi All,

Is there any other way to declare tables in a SAP report other than writing TABLES : ..............,

................ .

Regards,

Sharadendu

1 ACCEPTED SOLUTION

Former Member
0 Kudos
79

hi,

there is no other option.

5 REPLIES 5

Former Member
0 Kudos
79

Hi Sharadendu,

I don't think so. You have to use tables only.

Regards,

Atish

Former Member
0 Kudos
79

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.

Former Member
0 Kudos
79

hi

good

i dont think there is any othere way to declare the table other than using the TABLES statement.

thanks

mrutyun^

Former Member
0 Kudos
80

hi,

there is no other option.

Former Member
0 Kudos
79

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