Free SAP C_P2W_ABN Practice Test & Real Exam Questions
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?
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?
Correct Answer: C
Vote an answer
You have written a method implementation containing the following access to an internal table defined as a changing parameter of the method.
READ TABLE ct_itab INTO cs_struc INDEX 1.
What are the possible type definitions for parameter ct_itab?
Note: There are 3 correct answers to this question.
READ TABLE ct_itab INTO cs_struc INDEX 1.
What are the possible type definitions for parameter ct_itab?
Note: There are 3 correct answers to this question.
Correct Answer: A,B,C
Vote an answer
In which event block can you overwrite the default value of a PARAMETERS field on the selection screen?
Correct Answer: D
Vote an answer
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.
Correct Answer: B,D
Vote an answer
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.
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.
Correct Answer: A,B
Vote an answer
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.
Which of the following techniques does SAP recommend?
Note: There are 2 correct answers to this question.
Correct Answer: B,D
Vote an answer
You are asked to enhance the GUI status of an SAP standard application.
How do you identify which menu exit function code you can use?
How do you identify which menu exit function code you can use?
Correct Answer: A
Vote an answer
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?
How do you ensure that the content of field F in table T1 is checked against table T2?
Correct Answer: B
Vote an answer
