Application Development and Automation 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: 
Read only

TABLES..

sharadendu_agrawal
Active Participant
0 Likes
689

Hi All,

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

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

Regards,

Sharadendu

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
667

hi,

there is no other option.

5 REPLIES 5
Read only

Former Member
0 Likes
667

Hi Sharadendu,

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

Regards,

Atish

Read only

Former Member
0 Likes
667

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.

Read only

Former Member
0 Likes
667

hi

good

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

thanks

mrutyun^

Read only

Former Member
0 Likes
668

hi,

there is no other option.

Read only

Former Member
0 Likes
667

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