InterviewSolution
| 1. |
What Is A Projection View? |
|
Answer» In standard SAP tables ONE can find there are a number of fields. Sometimes it happens or there is a requirement of viewing only a fewer no of fields of a table, in such cases a projection VIEW can be created. Projection views are created only on a single table. For example, if Table T1 has fields F1,F2,F3,F4,F5, F6, F7, F8, F9, F10, etc… Say there is a need to view data only for say Fields F1, F2, F4,F8 & F9, in such cases projection view can be created. In standard SAP tables one can find there are a number of fields. Sometimes it happens or there is a requirement of viewing only a fewer no of fields of a table, in such cases a projection view can be created. Projection views are created only on a single table. For example, if Table T1 has fields F1,F2,F3,F4,F5, F6, F7, F8, F9, F10, etc… Say there is a need to view data only for say Fields F1, F2, F4,F8 & F9, in such cases projection view can be created. |
|