가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

SAP ABAP 면접 질문과 답변

Ques 11. Explain the purpose of the 'LOOP AT' statement in ABAP.

The 'LOOP AT' statement is used to iterate over the lines of an internal table in ABAP and perform operations on each line.

Example:

LOOP AT lt_data INTO wa_data.

도움이 되었나요? Add Comment View Comments
 

Ques 12. What is a function module in SAP ABAP?

A function module is a reusable unit of code that performs a specific task. It can be called from other programs or function modules.

Example:

CALL FUNCTION 'BAPI_MATERIAL_GETLIST'.

도움이 되었나요? Add Comment View Comments
 

Ques 13. Explain the purpose of the 'CALL TRANSACTION' statement in ABAP.

The 'CALL TRANSACTION' statement is used to call a transaction in SAP, allowing you to execute a series of related functions.

Example:

CALL TRANSACTION 'MM01' USING bdcdata MODE 'N'.

도움이 되었나요? Add Comment View Comments
 

Ques 14. What is the difference between 'SY-SUBRC' and 'SY-SUBRC <> 0' in ABAP?

'SY-SUBRC' is a system field that holds the return code of the last executed statement. 'SY-SUBRC <> 0' is a condition that checks if the last statement was successful.

Example:

IF sy-subrc = 0.

도움이 되었나요? Add Comment View Comments
 

Ques 15. Explain the concept of modularization in ABAP.

Modularization in ABAP involves dividing a program into smaller, manageable units like function modules, subroutines, or methods to improve readability and maintainability.

Example:

FORM calculate_total USING p_quantity TYPE i p_price TYPE p DECIMALS 2.

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.