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: 

views

Former Member
0 Kudos

hi if we want to retrive data from s standard view like V_T880 whether we have to define the table in table declaration how to do pls help me

1 ACCEPTED SOLUTION

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

I hope the selecting from view in this case and selecting from table is same.Because in this view, the data is only selected from t880 table.

5 REPLIES 5

Former Member
0 Kudos

Hi Sen,

For retrieving the data's from view there is no need for Tables declaration.

If you using select-options means only you have to Define the Tables declaration.

Thanks,

Reward If Helpful.

former_member404244
Active Contributor
0 Kudos

Hi,

U can directly write a select query on V_T880 ..

select rcomp name1 cntry from v_t880 into table itab.

Reward if helpful.

Regards,

Nagaraj

0 Kudos

But v_t880 is maintenance view so i am getting error message like v_t880 is not defined in ABAP dictionary

Former Member
0 Kudos

I think here you cant not fetch the data from V_T880 view since it is an maintenance view.

You can only fetch the data from table,<b>database view</b> and <b>projection view</b>.

try to fetch the data from T880 table itself.

regards

shiba dutta

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

I hope the selecting from view in this case and selecting from table is same.Because in this view, the data is only selected from t880 table.