SAP ABAP Question:
Download Questions PDF

What will you code in START-OF-SELECTION & END-OF-SELECTON & why?

Answers:

Answer #1
START-OF-SELECTION

SELECT * FROM DEPTT INTO CORRESPONDING FIELDS OF ITAB

WHERE DEPTNO IN DEPTNO.

APPEND ITAB.

ENDSELECT.

LOOP AT ITAB.

WRITE : / 10 ITAB-DEPTNO.

HIDE : ITAB-DEPTNO.

ENDLOOP.



END-OF-SELECTION

Answer #2
I will code all the required select queries and related logics to get the desired output . between start of selection and end-of-d\\\\selection

Download SAP ABAP Interview Questions And Answers PDF

Previous QuestionNext Question
Explain What is an RDBMS?What are joins and different types joins?