
100% Updated SAP C-P2W-ABN Enterprise PDF Dumps
Use Valid Exam C-P2W-ABN by ExamTorrent Books For Free Website
NEW QUESTION # 39
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 foreign key table.
- D. Create a foreign key for field F of table T1 and make table T2 the check table.
Answer: D
NEW QUESTION # 40
What is the purpose of the enqueue work process?
- A. It processes logical locks requests.
- B. It processes requests triggered by an active user.
- C. It processes requests for a print output.
- D. It processes update requests.
Answer: D
NEW QUESTION # 41
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 CL_GUI_CUSTOM_CONTAINER.
- C. DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
- D. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER.
Answer: A,B
NEW QUESTION # 42
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. When value '123' is assigned to the data object
- C. When the assignment to gv_var2 is executed
- D. As soon as the program is loaded into the internal session
Answer: D
NEW QUESTION # 43
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
- B. SPAD
- C. SPDD
- D. SPAU_ENH
Answer: A,C
NEW QUESTION # 44
What are the reasons to use modularization?
Note: There are 3 correct answers to this question.
- A. Easier maintenance
- B. Improved performance
- C. Improved transparency
- D. Portability across DBMS
- E. Promotes reusability
Answer: A,C,E
NEW QUESTION # 45
What are some of the advantages of using Open SQL?
Note: There are 2 correct answers to this question.
- A. It can be used with any supported DBMS.
- B. All standard SQL commands can be used.
- C. Syntax is checked at design time.
- D. The application server buffer is NOT used.
Answer: A,C
NEW QUESTION # 46
What pre-defined ABAP data type is deep?
- A. X
- B. STRING
- C. DECFLOAT34
- D. N
Answer: B
NEW QUESTION # 47
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 handler method for the double_click event
- D. A method call to raise the double_click event
- E. A handler class
Answer: A,C,E
NEW QUESTION # 48
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 free table key.
- B. Specify a regular expression.
- C. Specify a WHERE condition.
- D. Specify a secondary table key.
- E. Specify the line index.
Answer: C,D,E
NEW QUESTION # 49
What do you need to consider when creating a secondary index on a table?
Note: There are 2 correct answers to this question.
- A. The index must always be unique.
- B. The most frequently selected fields should be at the first positions in the index.
- C. The table will be updated more quickly if you create more indexes.
- D. The index can be created for specific database systems only.
Answer: B,C
NEW QUESTION # 50
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. The tables joined in B must have foreign key relationships.
- B. Only A can be used in the FROM clause of a SELECT statement.
- C. The join type of both A and B is an inner join.
- D. The tables joined in A must have foreign key relationships.
Answer: A,D
NEW QUESTION # 51
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.
- A. Sort and filter the data by any column
- B. Change column width and sequence
- C. Convert currency amount columns
- D. Display details by double-clicking on a row
Answer: A,B
NEW QUESTION # 52
What type of method is generated automatically by the Web Dynpro Explorer when you assign an action to a button UI element?
- A. Event handler method
- B. Supply function
- C. Ordinary method
- D. Standard hook method
Answer: A
NEW QUESTION # 53
Which of the following are incomplete ABAP pre-defined data types?
Note: There are 3 correct answers to this question.
- A. X
- B. T
- C. N
- D. P
- E. D
Answer: A,C,E
NEW QUESTION # 54
Which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value? Note: There are 2 correct answers to this question.
- A. MODIF ID
- B. VALUE-CHECK
- C. MEMORY ID
- D. DEFAULT
Answer: C,D
NEW QUESTION # 55
What is data binding?
- A. Connecting an outbound plug of one view to the inbound plug of another view
- B. Connecting one Web Dynpro component to another Web Dynpro component
- C. Connecting the values of user interface elements to the context attributes of the corresponding controller
- D. Connecting a context node in one controller to a context node in another controller
Answer: C
NEW QUESTION # 56
To which of the following can you assign a search help?
Note: There are 3 correct answers to this question.
- A. Data element
- B. Check table
- C. Table type
- D. Structure component
- E. Domain
Answer: A,B,D
NEW QUESTION # 57
Where can you define data types that can be used throughout the system?
Note: There are 2 correct answers to this question.
- A. In a method
- B. In a function module
- C. In the ABAP Dictionary
- D. In a global interface
Answer: C,D
NEW QUESTION # 58
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
Answer: B
NEW QUESTION # 59
Which are the functions of the ABAP dispatcher? Note: There are 3 correct answers to this question.
- A. It performs a roll-in and roll-out of user context.
- B. It integrates the presentation layer.
- C. It requests the data from the database or the buffers.
- D. It saves the processing requests in request queues.
- E. It distributes the requests among the work processes.
Answer: A,D,E
NEW QUESTION # 60
What must you do to create a singleton class?
Note: There are 2 correct answers to this question.
- A. Define the class as abstract.
- B. Set the class instantiation to private.
- C. Store the reference to the singleton object in an instance attribute of the object itself.
- D. Create the object in a static method of the class itself.
Answer: B,D
NEW QUESTION # 61
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... ASSIGNING <field_symbol>...ENDLOOP.
- C. LOOP... REFERENCE INTO <field_symbol>... ENDLOOP.
- D. LOOP... INTO <field_symbol> TRANSPORTING... ENDLOOP.
Answer: B
NEW QUESTION # 62
......
SAP C-P2W-ABN Official Cert Guide PDF: https://www.examtorrent.com/C-P2W-ABN-valid-vce-dumps.html
Free SAP Certified Development Associate C-P2W-ABN Official Cert Guide PDF Download: https://drive.google.com/open?id=1iDob1PefLsTR8O-ltT8U68tYzsv0zzJm
