SAP ABAP Dictionary Interview Questions With Answers-3
11) What Is A Database View? The database view is combining several fields of two or more tables into single table . At least one relationship is required is required to combine tables to build a database view. Plus one can only read data from database view and cannot modify the data in the view directly (if view involves more than one table). Database views implement an Inner Join on the tables. The database view is the only type of view in SAP that is physically created at the database level. For example, consider two tables T1, T2. Fields of table T1 are F1, F2 and F3. Fields of table T2 are F1, F5. By using a Database view one can combine the fields of both tables T1 and T2, provided primary and foreign key relation is maintained between the two tables and thus final view can have fields like F1, F2, F3, F5. For more information: http://www.saptechnical.com/Tutorials/ABAP/View/Database.htm 12) What Is A Projection View? In standard SAP tables one can find there ar