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
676

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
648

Hi,

u can use

4 REPLIES 4
Read only

Former Member
0 Likes
649

Hi,

u can use

Read only

Former Member
0 Likes
648

hiiii

yes you can use SELECT query on views.

reward if useful

thx

twinkal

Read only

Former Member
0 Likes
648

Yes hema you can fetch data from a view.

Regards

Read only

Former Member
0 Likes
648

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.