2008 Jun 19 11:19 AM
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?
2008 Jun 19 11:19 AM
2008 Jun 19 11:19 AM
2008 Jun 19 11:24 AM
hiiii
yes you can use SELECT query on views.
reward if useful
thx
twinkal
2008 Jun 19 11:24 AM
2008 Jun 19 11:37 AM
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.