C-ABAPD-2507 試験問題を無料オンラインアクセス
試験コード: | C-ABAPD-2507 |
試験名称: | SAP Certified Associate - Back-End Developer - ABAP Cloud |
認定資格: | SAP |
無料問題数: | 80 |
更新日: | 2025-09-05 |
Given the following ABAP code, which exception will be raised on execution?
CONSTANTS c_char TYPE c LENGTH 1 VALUE ' '.
TRY.
result = 2 / c_char.
out->write( |Result: { result }| ).
CATCH cx_sy_zerodivide.
out->write( |Error: Division by zero is not defined| ).
CATCH cx_sy_conversion_no_number.
out->write( |Error: { c_char } is not a number!| ).
CATCH cx_sy_itab_line_not_found.
out->write( |Error: Itab contains less than { 2 / c_char } rows| ).
ENDTRY.
In a booking record, how can you calculate the difference in days between the order date (type D) and the flight date (type D) of a flight?