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: 

View

Former Member
0 Kudos
120

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

Former Member
0 Kudos
92

Hi,

u can use

4 REPLIES 4

Former Member
0 Kudos
93

Hi,

u can use

Former Member
0 Kudos
92

hiiii

yes you can use SELECT query on views.

reward if useful

thx

twinkal

Former Member
0 Kudos
92

Yes hema you can fetch data from a view.

Regards

Former Member
0 Kudos
92

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.