
C-P2W-ABN認証試験の問題集解答を提供しています [2025年04月]
更新されたC-P2W-ABN試験練習テスト問題
質問 # 26
What ABAP statements can you use to create an instance of class CL_GUI_CUSTOM_CONTAINER in an ABAP program?
- A. DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
- B. DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
- C. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER.
- D. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER.
正解:A、D
質問 # 27
You run an executable program that contains the following code:
DATA:
gv_var1 TYPE n LENGTH 3,
gv_var2 TYPE n LENGTH 3 VALUE '456'.
START-OF-SELECTION.
CLEAR gv_var2.
gv_var2 = gv_var1. gv_var1 = '123'.
At what point does the system reserve memory for data object gv_var1?
- A. When value '123' is assigned to the data object
- B. When the assignment to gv_var2 is executed
- C. At the beginning of the START-OF-SELECTION event block
- D. As soon as the program is loaded into the internal session
正解:D
質問 # 28
You create a domain in the ABAP Dictionary.
How can you use this domain?
Note: There are 2 correct answers to this question.
- A. To describe the value range of a table field or structure component
- B. To define the data type of a table field or structure component
- C. To define data objects in ABAP programs
- D. To define technical properties of data elements
正解:A、B
質問 # 29
A user runs an ABAP program, enters an incorrect value on the selection screen, and chooses Execute.
Which event block must send the error message in order to display the selection screen again?
- A. AT SELECTION-SCREEN ON HELP-REQUEST
- B. AT SELECTION-SCREEN OUTPUT
- C. AT SELECTION-SCREEN
- D. AT SELECTION-SCREEN ON VALUE-REQUEST
正解:C
質問 # 30
You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORTING parameter named PAR1.
What type of parameter is PAR1 in the post-method?
- A. CHANGING
- B. RETURNING
- C. IMPORTING
- D. EXPORTING
正解:A
質問 # 31
You build a dialog screen with an input field in an ABAP program.
How do you ensure that the contents of the screen field can be accessed in the program?
- A. Use the GET statement in the program to transport the data from the screen field.
- B. Define a data object in the program with the same name as the screen field.
- C. Enter the name of a data object in the Parameter ID attribute of the screen field.
- D. Use a MOVE statement in a PAI module to copy the data to a data object.
正解:B
質問 # 32
You call a lock module.
Which exceptions could the lock module raise when a logical lock CANNOT be set?
Note: There are 2 correct answers to this question.
- A. SYSTEM_FAILURE
- B. FOREIGN_LOCK
- C. CX_SY_OPEN_SQL_ERROR
- D. CX_SY_DATA_ACCESS_ERROR
正解:A、B
質問 # 33
What do enhancement spots manage?
Note: There are 3 correct answers to this question.
- A. Implicit enhancement points
- B. Classic BAdls
- C. Explicit enhancement sections
- D. New BAdls
- E. Explicit enhancement points
正解:A、C、E
質問 # 34
What parameters can you set when you run the Code Inspector?
Note: There are 3 correct answers to this question.
- A. Object set name
- B. Check variant name
- C. Inspection name
- D. Work process name
- E. Background job name
正解:A、B、C
質問 # 35
You want to read a single line of an internal table using table expression itab[...].
How can you identify the line?
Note: There are 3 correct answers to this question.
- A. Specify the line index.
- B. Specify a regular expression.
- C. Specify a secondary table key.
- D. Specify a free table key.
- E. Specify a WHERE condition.
正解:A、C、E
質問 # 36
You have created the following:
* A class with an event definition
* A handler class with a method ON_EVT that handles this event
* A report that instantiates the handler class
* A message statement that raises an exception
However, the report does not react to the event.
How do you analyze this issue?
Note: There are 3 correct answers to this question.
- A. Check if the event is triggered by setting a breakpoint at the MESSAGE... RAISING... statement.
- B. Check if the handler method ON_EVT is defined in a subroutine of the report.
- C. Check if the implementation of the handler method ON_EVT contains the desired logic.
- D. Check if the event is triggered by setting a breakpoint at the RAISE EVENT statement.
- E. Check if the handler method is registered to the correct event.
正解:A、C、D
質問 # 37
Your program uses class CL_GUI_ALV_GRID to generate a classic ALV Grid Control.
What do you need in your program to react to a user double-clicking a row in the ALV Grid? Note: There are 3 correct answers to this question.
- A. A SET HANDLER statement to register the handler to the event
- B. A method call to refresh the display
- C. A method call to raise the double_click event
- D. A handler class
- E. A handler method for the double_click event
正解:A、D、E
質問 # 38
Which database objects can you create in the ABAP Dictionary?
Note: There are 2 correct answers to this question.
- A. Logical databases
- B. Views
- C. Foreign key relationships
- D. Indexes
正解:B、D
質問 # 39
You need to create a piece of code that can be used by multiple programs.
Which of the following techniques does SAP recommend?
Note: There are 2 correct answers to this question.
- A. Use a function module in a function group.
- B. Use a method in a global class.
- C. Use an include program.
- D. Use a method in a local class.
正解:A、B
質問 # 40
What can be part of the signature of an instance constructor?
Note: There are 2 correct answers to this question.
- A. Changing parameters
- B. Importing parameters
- C. Exporting parameters
- D. Exceptions
正解:A、B
質問 # 41
A screen has the following PAI flow logic:
PROCESS AFTER INPUT.
FIELD A MODULE check_A.
FIELD B MODULE check_B. CHAIN.
FIELD: C,D.
MODULE check_CD.
ENDCHAIN.
CHAIN.
FIELD: C,B.
MODULE check_CB. ENDCHAIN.
What happens if the application sends a type E message during the check_CB module processing?
- A. The screen is displayed again without processing the PBO flow logic. All fields are ready for input.
- B. The screen is NOT displayed again. Processing terminates and the user must restart the ABAP program.
- C. The screen is displayed again and the PBO flow logic is processed. Only fields B and C are ready for input.
- D. The screen is displayed again without processing the PBO flow logic. Only fields B and C are ready for input.
正解:D
質問 # 42
What is the purpose of the enqueue work process?
- A. It processes update requests.
- B. It processes logical locks requests.
- C. It processes requests triggered by an active user.
- D. It processes requests for a print output.
正解:A
質問 # 43
......
検証済みのC-P2W-ABN問題集と解答を使って100%一発合格保証で更新された問題集:https://drive.google.com/open?id=1Hyg4dWabskftCa0eLyfUEvKUNhUV2Bjx
合格させるSAP Certified Development Associate C-P2W-ABN試験には80問があります:https://www.passtest.jp/SAP/C-P2W-ABN-shiken.html