Book1: o When A Table Is Very Large and You Want To Access The Table by Key Only
Book1: o When A Table Is Very Large and You Want To Access The Table by Key Only
Book1: o When A Table Is Very Large and You Want To Access The Table by Key Only
3. Which of the following ABAP statements throws an error at the syntax check?
o DATA variable.
o DATA variable(5) TYPE n.
o DATA variable(5) TYPE p.
o DATA variable(5) TYPE t.
o Constants
o Variables
o Table names
o Field names
5. To which of the following you must assign newly created SAP repository objects?
o Transport task
o Function group
o Transport request
o Package
6. How can you add a session breakpoint to your program?
Note: There are 2 correct answers to this question.
7. Which of the following transactions are integrated in the ABAP workbench tools?
Note: There are 2 correct answers to this question.
o Hashed
o Any
o Standard
o Index
o N
o STRING
o F
o X
10. Youwant to develop a validation routine for a selection screen field. If a wrong value is
entered into the field an error message should be displayed and the focus should move
to the field.
Which event do you use to achieve this?
o AT SELECTION-SCREEN
o START-OF-SELECTION
o INITIALIZATION
o END-OF-SELECTION
11. You define a formal parameter to a subroutine that accepts only internal table of type
standard and type sorted as actual parameters.
Which of the following generic ABAP data types must you use?
o Hashed table
o Standard table
o Index table
o Sorted table
12. You want to select all the records from a database table where field CITY contains
substring ‘BU’ in any position.
Which WHERE clause can you use in an Open SQL select statement?
13. Which of the following capabilities is provided by the Application Layer platform of SAP
Net weaver?18
14. When you add programming logic to your ABAP program that checks authorizations,
which of the following do you have to create?
Note: There are 2 answers to this question.
o An authorization object
o An authorization field
o An authorization profile
o An authorization role
15. Which of the following can you do with the SAP code inspector?
16. You want to move a transport request from the development system to the subsequent
system.
Which of the following are prerequisites for this?
Note: There are 2 correct answers to this question.
17. 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?
o Write the error data into a RECEIVING parameter that is passed by value.
o Write the error data into TABLES parameters that is passed by reference.
o Write the error data into an EXPORTING parameters passed by reference.
o Write the error data into a CHANGING parameters passed by value.
18. You count all customers with in the same country and city. You want display only the
cities where three are more customers exist.
Which of the following SQL statements should you use?
Note: There are 2 correct answers to this question.
o SELECT country city FROM customers INTO TABLE It_customers
GROUP BY country city HAVING COUNT(*)>=3.
o SELECT country city cust_name FROM customers INTO TABLE It_customers
GROUP BY country city cust_name HAVING COUNT (*) GE 3.
o SELECT country city COUNT (*) AS number FROM customers INTO TABLE
It_customers
GROUP BY country city HAVING number GE 3.
o SELECT country city cust_name COUNT (*) AS numbers FROM customers INTO
TABLE It_customers
GROP BY country city HAVING number >=3.
19. The USER has the following fields: ID, FIRST_NAME, LAST_NAME. FIRST_NAME,
LAST_NAME have the same basic type and length. You want to compare fields
FIRST_NAME, LAST_NAME to each other.
Which of the following SELECT statements can you use?
Note: There are 2 correct answers to this question.
20. Which of the following can you do with the ABAP debugger?
Note: There are 3 correct answers t this question.
21. Which of the following statements can you use to setup checkpoints in an ABAP
program?
Note: There are 3 correct answers to this question.
o BREAK_POINT
o ASSERT
o BREAK
o CHECK
o LOG-POINT
23. Inan ABAP program, you to assign an initial value to an elementary data object when
you define it.
Which addition must you use?
o OBLIGATORY
o DEFAULT
o READ-ONLY
o VALUE
26. You define a generic variable that can hold the ABAP types C, D,N,STRING, and T. You
want to restrict the use of other ABAP types.
Which generic data type must you use in the definition?
o CLIKE
o DATA
o CSEQUENCE
o SIMPLE
27. Which of the following includes are generated when you create a function group?
Note: There are 2 correct answers to this question.
o LxxxUXX
o LxxxxF01
o LxxxTOP
o LxxxxO01
28. A program has event blocks in it.... the events are defined in the following fashion. (set
alphabetically) AT START-OF-SELECTION, INITIALIZATION, LOAD OF PROGRAM, START-
OF-SELECTION. When executed the events are executed in a PARTICULAR fashion. Which
one of the following sequences shows the exact sequence of events? (1 correct answer).
30. Which of the following can be an appropriate NETWEAVER AS? ( 1 correct answer )
a) -can install either an SAP Net weaver ABAP AS or a SAP Net weaver JAVA AS or a
combination of both.
a) -cannot install either an SAP Net weaver ABAP AS or a SAP Net weaver JAVA AS or a
combination of both.
a) -class builder
b) -web Dynpro application
c) -screen painter
d) -database optimizer
e) -function analyzer.
f) -function builder.
a) Events start with keyword event and end with another event or module or sub routine.
a) Message server.
a) Dispatcher.
a) SDM
a) Enqueue.
35. You have newly joined a development team and your team member is developing a
report. He wants to put the validation for the vendor number. In which event he should
put the error message so that in case when wrong vendor is entered error message
should appear and focus the cursor on that field.
a) Start-of-selection
a) End-of-selection
a) At selection screen on field
a) Initialization
36. Which statement can be used to read a single record from the internal table?
a) SAPMZDEF.
a) SAPLZDEF.
a) ZDEF.
39. Variable A is of data type I. your friend wants to know the features of the data type I.
which one of the following is true
40. When you pass a parameter to the subroutine, the value of the passed parameter should
be passed back to the calling program only if the subroutine executes without errors.
a) CHANGING VALUE ( ).
a) USING VALUE ( ).
a) USING.
a) CHANGINING