Multiple choice technology programming languages

How would you clear the body of an internal table (with a header line). a) Clear ITAB[] b) Refresh ITAB [] c) Clear ITAB d) Refresh ITAB

  1. c&d

  2. a&d

  3. a&b

  4. c&b

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

For an internal table with a header line, 'CLEAR ITAB[]' clears only the body (the table content itself), while 'REFRESH ITAB' is the obsolete syntax equivalent to CLEAR ITAB[]. To clear only the body, use either 'CLEAR ITAB[]' or 'REFRESH ITAB[]' - options a and d.