최신SAP Certified Development Associate - P2W for ABN - C_P2W_ABN무료샘플문제
문제1
What ABAP statements can you use to create an instance of class CL_GUI_CUSTOM_CONTAINER in an ABAP program?
What ABAP statements can you use to create an instance of class CL_GUI_CUSTOM_CONTAINER in an ABAP program?
정답: A,B
문제2
What are the reasons to use modularization?
Note: There are 3 correct answers to this question.
What are the reasons to use modularization?
Note: There are 3 correct answers to this question.
정답: A,B,C
문제3
What type of ABAP Dictionary view is implemented as an INNER JOIN?
What type of ABAP Dictionary view is implemented as an INNER JOIN?
정답: C
문제4
What do enhancement spots manage?
Note: There are 3 correct answers to this question.
What do enhancement spots manage?
Note: There are 3 correct answers to this question.
정답: B,C,D
문제5
You write the following ABAP statement:
SELECT SINGLE carrid, connid, cityfrom, cityto
FROM spfli
INTO @gs_spfli
WHERE carrid = @pa_car
AND connid = @pa_con.
How are the selected fields placed into target structure gs_spfli?
You write the following ABAP statement:
SELECT SINGLE carrid, connid, cityfrom, cityto
FROM spfli
INTO @gs_spfli
WHERE carrid = @pa_car
AND connid = @pa_con.
How are the selected fields placed into target structure gs_spfli?
정답: B
문제6
You write a report that displays mass data in a table using the ALV Grid Control.
Which of the following functions can you offer to the user without doing any specific programming? Note: There are 2 correct answers to this question.
You write a report that displays mass data in a table using the ALV Grid Control.
Which of the following functions can you offer to the user without doing any specific programming? Note: There are 2 correct answers to this question.
정답: B,C
문제7
Which of the following actions can you perform in both the ABAP Editor and in the ABAP Debugger?
Which of the following actions can you perform in both the ABAP Editor and in the ABAP Debugger?
정답: A,B
문제8
You have the following class definition: CLASS Icl_airplane DEFINITION.
PUBLIC SECTION. METHODS:
set_passengers.
PROTECTED SECTION.
CONSTANTS: c_pos type i value 100. METHODS: get_passengers.
PRIVATE SECTION.
DATA: mv_passengers TYPE i. METHODS: set_attributes.
ENDCLASS.
Which components can be addressed directly from a subclass of class Icl_airplane?
Note: There are 3 correct answers to this question.
You have the following class definition: CLASS Icl_airplane DEFINITION.
PUBLIC SECTION. METHODS:
set_passengers.
PROTECTED SECTION.
CONSTANTS: c_pos type i value 100. METHODS: get_passengers.
PRIVATE SECTION.
DATA: mv_passengers TYPE i. METHODS: set_attributes.
ENDCLASS.
Which components can be addressed directly from a subclass of class Icl_airplane?
Note: There are 3 correct answers to this question.
정답: A,C,E