Question 26
You want to use the UNION between 2 SELECT statements in a CDS view. What must both statements have in common? Note: There are 2 correct Answers to this question.
Question 27
Which of the following information do you get using the ABAP Call Monitor? Note: There are 3 correct Answers to this question.
Question 28
In your ABAP program, you have a loop over internal table T1. Inside the loop, you use the contents of T1 to fill another internal table T2: LOOP AT t1 INTO wa1. MOVE-CORRESPONDING wa1 TO wa2. APPEND wa2 TO T2. ENDLOOP. Which expressions could you use to replace the loop?