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

views

Former Member
0 Likes
1,015

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
Read only

jayanthi_jayaraman
Active Contributor
0 Likes
963

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
Read only

Former Member
0 Likes
963

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.

Read only

former_member404244
Active Contributor
0 Likes
963

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

Read only

0 Likes
963

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

Read only

Former Member
0 Likes
963

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

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
964

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.