Hi Vishnu,
The data that can be selected with a view depends primarily on whether the view implements an inner join or an outer join. With an inner join, you only get the records of the cross-product for which there is an entry in all tables used in the view.In your case, you're joining two tables LFA1 and EKKO
with key fields LIFNR. The database therefore only provides those records for which there is an entry in the tables used in the view i.e LFA1 and EKKO.
Thanks
KH