
最新SAP C_P2W_ABN一発合格!試験リアル問題集最新の[2025年03月]
良質なC_P2W_ABN問題集はここPassTest問題はあなたの合格させて見せます。明るい未来はクリックから始まる!
質問 # 20
You have been asked by a customer to develop Open SQL code to convert the value of argument "arg" into the ABAP Dictionary type specified.
Which SQL syntax do you use to meet this requirement?
- A. CAST(arg FOR type)
- B. CASTING(arg AS type)
- C. CAST(arg AS type)
- D. CASTING(arg FOR type)
正解:C
質問 # 21
In which order do you implement a new BADI?
- A. Create BAdl Implementation
- B. Create Enhancement Project
- C. Create BAdl Implementation
- D. Create Enhancement Spot Implementation
正解:D
質問 # 22
You want to loop over an internal table without copying each table row to a work area.
How can you achieve this using a field symbol?
- A. LOOP...INTO <field_symbol>...ENDLOOP.
- B. LOOP... INTO <field_symbol> TRANSPORTING... ENDLOOP.
- C. LOOP... ASSIGNING <field_symbol>...ENDLOOP.
- D. LOOP... REFERENCE INTO <field_symbol>... ENDLOOP.
正解:C
質問 # 23
Which of the following program types can contain screens?
Note: There are 3 correct answers to this question.
- A. Executable programs
- B. Class pools
- C. Function groups
- D. Module pools
- E. Interface pools
正解:A、C、D
質問 # 24
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 a regular expression.
- B. Specify the line index.
- C. Specify a free table key.
- D. Specify a secondary table key.
- E. Specify a WHERE condition.
正解:B、D、E
質問 # 25
Which of the following rules must you follow when you create a static constructor?
Note: There are 2 correct answers to this question.
- A. You CANNOT define parameters.
- B. You must name the method CONSTRUCTOR.
- C. You must define the method as public.
- D. You can define class-based or classic exceptions.
正解:A、D
質問 # 26
What can be part of the signature of an instance constructor?
Note: There are 2 correct answers to this question.
- A. Importing parameters
- B. Exporting parameters
- C. Changing parameters
- D. Exceptions
正解:A、C
質問 # 27
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. EXPORTING
- B. IMPORTING
- C. RETURNING
- D. CHANGING
正解:D
質問 # 28
You created a class by inheriting from a superclass. The superclass contains a public instance method do_something.
You want to redefine method do something.
What must you do?
- A. Declare the method FINAL.
- B. Leave the signature of the method unchanged.
- C. Call the implementation in the superclass.
- D. Change the visibility of the method to PROTECTED.
正解:C
質問 # 29
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 define data objects in ABAP programs
- B. To define the data type of a table field or structure component
- C. To define technical properties of data elements
- D. To describe the value range of a table field or structure component
正解:B、D
質問 # 30
Which of the following are incomplete ABAP pre-defined data types?
Note: There are 3 correct answers to this question.
- A. P
- B. X
- C. T
- D. N
- E. D
正解:B、D、E
質問 # 31
An ABAP program processes the following expression: r = a/b+c.
Which of the following data declarations would cause the runtime environment to use fixed-point arithmetic for the above expression to calculate the value of "r"?
Note: There are 2 correct answers to this question.
- A. DATA: r TYPE f,
- B. DATA: r TYPE p DECIMALS 2,
- C. DATA: r TYPE p DECIMALS 2,
- D. DATA: r type p.
正解:B、C
質問 # 32
How do you create lock objects and lock modules for use in ABAP programs that access the database?
- A. Use the ABAP Dictionary to create the lock objects. The lock modules are created automatically.
- B. Use the ABAP Dictionary to create the lock objects.
- C. Use the Function Builder to create the lock modules.
- D. Use the Function Builder to create the lock modules. The lock objects are created automatically.
- E. Use the Function Builder to create the lock modules and the lock objects.
正解:A、B
質問 # 33
To which of the following can you assign a search help?
Note: There are 3 correct answers to this question.
- A. Check table
- B. Structure component
- C. Table type
- D. Data element
- E. Domain
正解:A、B、D
質問 # 34
What transactions can be used to carry out modification adjustments after a system upgrade? Note: There are 2 correct answers to this question.
- A. SPAU_ENH
- B. SPAU
- C. SPDD
- D. SPAD
正解:B、C
質問 # 35
You define database view A and maintenance view B in the ABAP Dictionary.
What restrictions apply to these views?
Note: There are 2 correct answers to this question.
- A. Only A can be used in the FROM clause of a SELECT statement.
- B. The tables joined in A must have foreign key relationships.
- C. The tables joined in B must have foreign key relationships.
- D. The join type of both A and B is an inner join.
正解:B、C
質問 # 36
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 a MOVE statement in a PAI module to copy the data to a data object.
- 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 the GET statement in the program to transport the data from the screen field.
正解:B
質問 # 37
You have created a screen on which the user enters data that is to be inserted into table T1.
How do you ensure that the content of field F in table T1 is checked against table T2?
- A. Create a foreign key for the assigned field of field F of table T1 in table T2 and make table T2 the check table.
- B. Create a foreign key for the assigned field of field F of table T1 in table T2 and make table T1 the check table.
- C. Create a foreign key for field F of table T1 and make table T2 the check table.
- D. Create a foreign key for field F of table T1 and make table T2 the foreign key table.
正解:C
質問 # 38
What are the reasons to use modularization?
Note: There are 3 correct answers to this question.
- A. Promotes reusability
- B. Improved transparency
- C. Improved performance
- D. Easier maintenance
- E. Portability across DBMS
正解:A、B、D
質問 # 39
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?
- A. Into fields with the same type
- B. Into fields with the same name and same type
- C. From left to right
- D. Into fields with the same name
正解:B
質問 # 40
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. At the beginning of the START-OF-SELECTION event block
- B. As soon as the program is loaded into the internal session
- C. When the assignment to gv_var2 is executed
- D. When value '123' is assigned to the data object
正解:B
質問 # 41
......
SAP練習テストエンジンC_P2W_ABN問題:https://drive.google.com/open?id=1dI8TPUaUnjRQi3WwJwqUscMBMgfgg58Y
試験合格保証有効なSAP C_P2W_ABN問題集:https://www.passtest.jp/SAP/C_P2W_ABN-shiken.html