InterviewSolution
| 1. |
What Is The Difference Between Internal Table With Header Line And Without Header Line? |
|
Answer» Internal table with header LINE is nothing but work area NAME as WELL as internal table name is same, whereas internal table without header line is nothing but work area name as well as internal table name is different. FOR INTERNAL TABLE WITH HEADER we need not CREATE work area. But not advisable because the user may get confused what is work area and what is internal table SINCE they both will be having same names. Internal table with header line is nothing but work area name as well as internal table name is same, whereas internal table without header line is nothing but work area name as well as internal table name is different. FOR INTERNAL TABLE WITH HEADER we need not create work area. But not advisable because the user may get confused what is work area and what is internal table since they both will be having same names. |
|