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

View

Former Member
0 Likes
879

Hi,

I need to fetch the data from 2 fields in a view v_t009.Can we use a view in the select statement like a table?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
851

Hi,

u can use

Hi,

I need to fetch the data from 2 fields in a view v_t009.Can we use a view in the select statement like a table?

4 REPLIES 4
Read only

Former Member
0 Likes
852

Hi,

u can use

Read only

Former Member
0 Likes
851

hiiii

yes you can use SELECT query on views.

reward if useful

thx

twinkal

Read only

Former Member
0 Likes
851

Yes hema you can fetch data from a view.

Regards

Read only

Former Member
0 Likes
851

hi check this..the view must be database view

data: itab type table of MARA1 with header line .

tables:MARA1 .

select * from MARA1 into table itab up to 3 rows.

loop at itab.

write:/ itab-matnr.

endloop.