4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.
50 - Mini | ERPPrep
SAP Certified Development Associate - ABAP with SAP
NetWeaver 7.50 - Mini
You got 18 of 40 possible points.
Your score was: 45 %
Question Results
Question: Score 0 of 1
Which events can exist in all types of programs that actually contain
executable statements?
Please choose the correct answer.
Response:
LOAD-OF-PROGRAM
AT USER-COMMAND
INITIALIZATION
AT PF##
START-OF-SELECTION
AT LINE-SELECTION
Question: Score 0 of 1
Which of the following is an implicit enhancement?
There are 2 correct answers to this question.
Response:
Private method
https://www.erpprep.com/node/13105/myresults/1544422 1/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Overwrite method
Pre-method
Protected method
Question: Score 0 of 1
Which of the following are incomplete ASAP pre-defined data types?
There are 3 correct answers to this question.
Response:
Question: Score 1 of 1
You perform an update task using update function modules and detect an error in
the program that calls the update function modules. Which statement can be used
to discard all update requests for the current SAP LUW?
There are 2 correct answers to this question.
Response:
DELETE UPDATE.
MESSAGE axxx(nnn).
MESSAGE exxx(nnn).
ROLLBACK WORK.
https://www.erpprep.com/node/13105/myresults/1544422 2/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
EXIT.
Question: Score 1 of 1
Which of the following enhancements calls a customer function module.
There are 2 correct answers to this question.
Response:
Business Transaction event
User exit
Customer exit
Business Add-in (BADIs)
Question: Score 1 of 1
Which of the following elements can a string template contain?
There are 2 correct answers to this question.
Response:
Literals
String processing statements
Functional method calls
Function module calls
Question: Score 1 of 1
You have the following class definition:
CLASS lei_airplane DEFINITION.
PUBLIC SECTION. METHODS
set_passengers.
PROTECTED SECTION.
https://www.erpprep.com/node/13105/myresults/1544422 3/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
CONSTANTS:c_pos type ivalue 100. METHODS: get_passengers.
PRIVATE SECTION.
DATA: nw_passengers TYPEi. METHODS: set_attributes.
ENDCLASS.
Which components can be addressed directly from a subclass of classic_airplane?
There are 3 correct answers to this question.
Response:
SET_ATTRIBUTES
GET_PASSENGERS
C_POS
MV_ PASSENGERS
SET_PASSENGERS
Question: Score 0 of 1
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 PAR 1.
What type of parameter is PAR 1 in the post-method?
Please choose the correct answer
Response:
CHANGING
IMPORTING
EXPORTING
RETURNING
Question: Score 0 of 1
Which of the following standard types is numeric?
There are 3 correct answers to this question.
https://www.erpprep.com/node/13105/myresults/1544422 4/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Response:
Decfloat32
Question: Score 1 of 1
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?
There are 2 correct answers to this question.
Response:
Convert currency amount columns
Sort and filter the data by any column
Display details by double-clicking on a row
Change column width and sequence
Question: Score 0 of 1
You call a lock module. Which exceptions could the lock module raise when a logical
lock CANNOT be set?
There are 2 correct answers to this question
Response:
CX_SY_OPEN_SQL_ERROR
SYSTEM_FAILURE
CX_SY_DATA_ACCESS_ERROR
https://www.erpprep.com/node/13105/myresults/1544422 5/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
FOREIGN_LOCK
Question: Score 0 of 1
At most, how many buttons can the application toolbar have on the screen?
Please choose the correct answer.
Response:
20
10
30
None of the above
35
Question: Score 0 of 1
You are writing a function module that will be called from external system via
remote function call (RFC). How do you report an error back to the external caller?
Please choose the correct answer.
Response:
Write the error data into an EXPORTING parameters passed by reference.
Write the error data into TABLES parameters that is passed by reference.
Write the error data into a CHANGING parameters passed by value.
Write the error data into a RECEIVING parameter that is passed by value.
Question: Score 1 of 1
https://www.erpprep.com/node/13105/myresults/1544422 6/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Which options are valid Open SQL?
There are 3 correct answers to this question
Response:
INNER JOIN
FULL JOIN
LEFT OUTER JOIN
CROSS JOIN
RIGHT OUTER JOIN
Question: Score 0 of 1
What does a Web Dynpro component contain?
There are 3 correct answers to this question.
Response:
UI elements
Multiple views within a window
A context
Component controller
Exactly one interface controller
Question: Score 1 of 1
Where should the labels for fields be stored?
Please choose the correct answer.
Response:
Table
https://www.erpprep.com/node/13105/myresults/1544422 7/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Data element
Domain
Field
Structure
Question: Score 0 of 1
For a given date(variable lv_date), you want to find all the connections from
Frankfurt to Sydney with exactly one stopover. You want to fly from the stopover
city to Sydney on the same day you arrive in the stopover city.
Table ZFLIGHTS hold the following information about flights.
-flightid: primary key
-cityfrom:departure city
-datefrom: departure date
-timefrom:departure time
-cityto:destination city
-dateto:destination date
-timeto:destination time
Which of the following Open SQL Queries can you use to find all the possible
stopover cities?
Please choose the correct answer.
Response:
SELECT DISTINCT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE
cityfrom IN (SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND
timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date
) AND destination~cityto = ‘Sydney’
SELECT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE cityto IN
(SELECT DISTINCT cityfrom FROM zflights WHERE dateto = destination~datefrom AND
timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date
) AND destination~cityto = ‘Sydney’
SELECT cityto INTO TABLE lt_cities FROM zflights AS destination
WHERE cityfrom IN (SELECT DISTINCT cityto FROM zflights
WHERE dateto = destination~datefrom AND
timeto < destination~timefrom AND
cityfrom = ‘FRANKFURT’ AND
https://www.erpprep.com/node/13105/myresults/1544422 8/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
datefrom = lv_date )
AND destination~cityto = ‘Sydney’
SELECT DISTINCT cityto INTO TABLE lt_cities FROM zflights AS destination
WHERE cityfrom IN (SELECT cityto FROM zflights
WHERE dateto = destination~datefrom AND
timeto < destination~timefrom AND
cityfrom = ‘FRANKFURT’ AND
datefrom = lv_date )
AND destination~cityto = ‘Sydney’
Question: Score 0 of 1
When analyzing a program, which tasks can you perform using the code inspector?
There are 3 correct answers to this question.
Response:
Discover unused variables.
Inspect the memory consumption
Execute the extended program check
Determine used database tables.
Evaluate the time needed for program execution.
Question: Score 1 of 1
Which of the following can you use to enhance SAP standard tables and structures
with fields?
There are 2 correct answers to this question.
Response:
Customizing includes
Append structures
Append search helps
https://www.erpprep.com/node/13105/myresults/1544422 9/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Field exits
Question: Score 1 of 1
How can you improve the performance when accessing a large data volume
database table?
Please choose the correct answer.
Response:
Switch the database table to fully buffered.
Apply the appropriate data class and size category.
Define appropriate indexes for the database table.
Change the table type in the dictionary
Question: Score 0 of 1
Which elementary field types are considered a character type?
There are 5 correct answers to this question.
Response:
STRING
XSTRING
https://www.erpprep.com/node/13105/myresults/1544422 10/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Question: Score 1 of 1
Which statements are true?
There are 5 correct answers to this question.
Response:
The ALV Object Model can define a sort criteria for initial display.
The ALV Grid requires a table refresh after programmatically changing the ALV.
The ALV Object Model uses a reference to the data table for display.
The ALV Grid can define a sort criteria for initial display.
The ALV Grid uses a reference to the data table for display.
The ALV Object Model requires a table refresh after programmatically changing the
ALV.
Question: Score 0 of 1
You want to read a single line of an internal table using table expression itab[ ...].
How can you identify the line?
There are 3 correct answers to this question.
Response:
Specify the line index.
Specify a free table key.
Specify a WHERE condition.
Specify a regular expression.
https://www.erpprep.com/node/13105/myresults/1544422 11/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Specify a secondary table key.
Question: Score 0 of 1
Which of the following rules must you follow when creating subscreens?
There are 2 correct answers to this question.
Response:
Subscreens CANNOT have an AT EXIT-COMMAND module.
Subscreens can call other subscreens.
Subscreens CANNOT have a field of type OK.
Subscreens can have a dialog module containing SET PF-STATUS.
Question: Score 1 of 1
What transactions can be used to carry out modification adjustments after a system
upgrade?
There are 2 correct answers to this question.
Response:
SPAU
SPAU_ENH
SPAD
SPDD
Question: Score 0 of 1
Which additions to the PARAMETERS statement can you use to fill the input field on
the selection screen with a suggested value?
There are 2 correct answers to this question.
Response:
https://www.erpprep.com/node/13105/myresults/1544422 12/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
MODIF ID
VALUE-CHECK
MEMORY ID
DEFAULT
Question: Score 1 of 1
Which assignment will lead to a conversion error?
Please choose the correct answer.
Response:
A type C data object with the value '123' to a type C data object with length 2
DATA.gv_c3(3) TYPE c VALUE '123', gv_c2(2) TYPE c. gv_c2 = gv_c3.
A type P data object to a type F data object DATA.gv_p TYPE p VALUE '15000', gv_f
TYPE f. gv_f = gv_p.
A type C data object with the value '1.50E4' to a type I data object DATA.gv_c(6) TYPE
c VALUE '1.50E4', gv_i TYPE i. gv_i = gv_c.
An XSTRING type data object to a STRING type data object DATA.gv_xstring TYPE
xstring, gv_string TYPE string. gv_xstring = 'AF00'. gv_string = gv_xstring.
Question: Score 1 of 1
What are the declarative statements used to define the selection?
There are 3 correct answers to this question.
Response:
SELECT-OPTIONS
PARAMETERS
SELECTION-SCREEN
https://www.erpprep.com/node/13105/myresults/1544422 13/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
None of the above
Question: Score 0 of 1
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?
There are 3 correct answers to this question
Response:
Any Table
Sorted Table
Standard Table
Hashed Table
Index Table
Question: Score 1 of 1
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?
Please choose the correct answer.
Response:
It starts with an ampersand (&).
It starts with a dollar ($).
It starts with an asterisk (*).
It starts with a plus (+).
https://www.erpprep.com/node/13105/myresults/1544422 14/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Question: Score 1 of 1
Which of the following is a true statement?
There are 3 correct answers to this question.
Response:
Local repository objects can be transported.
Inactive objects can be transported.
All transportable objects have to be assigned to a package.
Client-specific customization objects are assigned to the customizing request.
Repository objects and cross-client customization objects are assigned to the
workbench request.
Question: Score 0 of 1
What are some of the new features of Open SQL in SAP NetWeaver 7.5?
There are 2 correct answers to this question.
Response:
CASE expressions
Intersection
String expressions
Full Join
Question: Score 0 of 1
Which enhancements can provide a screen exit?
There are 3 correct answers to this question.
Response:
Explicit enhancement sections
https://www.erpprep.com/node/13105/myresults/1544422 15/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Customer exits
New BAdIs
Explicit enhancement points
Classic BAdIs
Question: Score 1 of 1
Which hook method exists for all controller types?
Please choose the correct answer.
Response:
wddoonclose( )
wddobeforenavigation( )
wddoinit( )
wddoonopen( )
Question: Score 1 of 1
What does the Refactoring Assistant allow you to do?
There are 2 correct answers to this question.
Response:
Rename all subclasses of a method
Move components between superclasses and subclasses
Rename all occurrences of a method
Move between classes and interfaces
https://www.erpprep.com/node/13105/myresults/1544422 16/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Question: Score 0 of 1
Which are the functions of the ABA P dispatcher?
There are 3 correct answers to this question.
Response:
It distributes the requests among the work processes.
It requests the data from the database or the buffers.
It integrates the presentation layer.
It saves the processing requests in request queues.
It performs a roll-in and roll-out of user context.
Question: Score 0 of 1
Which class is used to define a reference for an instance of the ALV Object Model?
Please choose the correct answer.
Response:
Class CL_SALV_TABLE
Class CL_GUI_ALV_GRID
Class CL_GUI_CUSTOM_CONTAINER
Class CL_GUI_BDC_GRID
Question: Score 0 of 1
What is the default length of the type C data type?
Please choose the correct answer.
Response:
https://www.erpprep.com/node/13105/myresults/1544422 17/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
100
1–65535
10
Question: Score 1 of 1
You need to create a piece of code that can be used by multiple programs. Which of
the following techniques does SAP recommend?
There are 2 correct answers to this question.
Note: Answers to this question are not verified by our experts, please study yourself and
select the appropriate answers.
Contribute: Please send the correct answers with reference text/link on
[email protected] to get up to 50% cashback.
Response:
Use a method in a local class.
Use a function module in a function group.
Use an include program.
Use a method in a global class
Question: Score 0 of 1
Where can you set the GUI status and the GUI title for a classical screen (dynpro)?
Please choose the correct answer.
Response:
In a module called from PAI of the screen
In the attributes of the screen
In a module called from PBO of the screen
In the properties of the related header UI element
https://www.erpprep.com/node/13105/myresults/1544422 18/19
4/26/2020 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep
Money Back Guarantee Testimonial FAQs Privacy Policy Terms and Conditions About Us Join Us
Contact Us
https://www.erpprep.com/node/13105/myresults/1544422 19/19