A. Package B. Functional Group C. Transport Request: - Function Module Calls
A. Package B. Functional Group C. Transport Request: - Function Module Calls
what must exist before you can create a new transportable function
module?(3)
A. Package
B. Functional group
C. Transport request
data objects,
calculation expressions,
constructor expressions,
table expressions
predefined functions, or
------------------------
[ control_characters]|-Control CharacterMeaninghexadecimal Value
(UTF-8)\nLine break0A\rReturn0D\tTabulator09
3.Advantages of modularization.
A. Reusability
b. Tranparency
c. Maintainability
9.which additions to the parameters statement can u use to fill the input
field on the selection screen with a suggested value?
DEFAULT
EX:parameters p1 type i DEFAULT 10.
10.The code of an executable program does not contain any event keywords
what event block does the code belong to?
• INITIALIZATION
• AT SELECTION SCREEN
• START OF SELECTION
• LOAD OF PROGRAM
13.You have been asked to review the following expr’s which processes
character strings.
result = find(val = ‘abapABAP’
sub = ‘A’
occ = 2
CASE = ‘X’.....)
• 4
• 2
• 1
• 6
14.which of the following settings can you define for both structures and
transparent tables in the abap dictionary?
FOR TABLE:
FOR STRUCTURE
15.You created a class by inheriting from a super class. The super class
contains a public instance method do_something. you want to redefine the
method?
SIGNATURE CANNOT BE CHANGED
HAS TO BE REDEFINE IN SAME VISIBILITY
16.what processes can we set when you run the code inspector?CHK
BOOK
• Background job
• Check variant
• Object set name
• Work process name
• Inspection name.
17.What type of method is generated automatically when you assign an
action to a button UI element?
OR.
What type of method is generated by WD explorer when you assign an
action to a button UI element?
A. EVENt handler
B. Supply function
C. Ordinary methods.
D. Standard hook methods
20.Given two table T1 and T2 and you want to check the field of T1 against
T2 how will you assign the foreign key and check table?
T2 IS CHECKK TABLE,T1 IS FOREIGN KEY TABLE
21. Given a data object that you want to assign to a data type S_CONN_ID
how will you assign ?
(answers are like)
DATA gv_id TYPE S_CONN_ID.
22. You write a report that displays mass data in a table.You decide to use
tha ALV Grid control (Class CL_GUI_ALV_GRID) instead of a classical
list display with write statements.
Which of the following functions can you offer to the user without doing
any specific programming.
• Sort and filter the data by any column.
• Display details by double-clicking on a row.
• Convert currency amount columns.
• Change column width and sequence.
23.Which of the following statements create the data objects?(i didn’t
remember the options)
OR
In which of the following source code block can you define local data
objects? (select 3)
A. Static method
B. Subroutine
C Function module
25. You need to create a piece of code that can be used by multiple
programs. which of the following techniques for modularization does SAP
recommend?
A. A Method in a global class.
B. A function module in a function module.
C. A method in a local class
D. A Subroutine in a program
30.You have been asked to a customer to develop open SQL code to convert
the value of argument “arg” into the ABAP Dictionary specified.
• CAST ( arg FOR type)
• CASTING (arg AS type)
• CAST(arg AS type)
• CASTING (arg FOR type)
31.Which of the following you can assign a search help.
• Structure component.
• Table type.
• Check table.
• Domain.
• Data element.
32.What happens if the application sends a type E message during the
check_CB module processing?
A. The screen is display again and the PBO flow logic is processed. only field B
and C are ready for input.
B. A. The screen is display again without processing PBO flow logic. only
fields B and C are ready for input.
C. A. The screen is display again without processing PBO flow logic. All fields
are ready for input.
41.what are the things that enhancements spot will manage? (3 selection)
A. Classic BADIs
B. Explicit enhancement points
C. Implicit enhancement points
D. Explicit enhancement sections.
E. New BADIs.
43.You want to read a single line of internal table using table expression
ITAB.
How can you identify the line?
Chk below documentation
Effect
Reading positions
Writing positions
44.You call a lock module which exceptions could the lock module raise
when a logical lock CANNOT be set?
• FOREIGN_LOCK
• SYSTEM_FAILURE
45.In which event block can you overwrite the default value of a parameter
field on the selection screen?
INITIALIZATION
54.A customer has asked that you improve performance for a small table
with frequency read access. What buffering do you recommend?
A. FULL
B. PRIMARY KEY
C. GENERIC
D. SINGLE COLUMN
SUBROUTINE,LOCAL,CLASS
56.Advantagesof defining text symbols in executable programs? (select 2)
A. They facilitate multilingual functionality
B. The same text symbol can be used by other program
C. They are easier to maintain than literals
D. They can store upto 256 characters.
57.You want to loop over an itab without copying each table row to a
workarea. How can you achieve this using a field symbol?
LOOP AT ITAB ASSIGINING <FS>
58.(A class is given)Super class definition is given From which components can
be addressed directly from a subclass CLASS lcl_airplane?
PUBLIC,PROTECTED
59.From where you can Create lock objects and lock modules?
OR.
HOW do you create lock objects and lock modules for use the ABAP
program that access the database ?
A. Use the ABAP dictionary to crate the locl objects. The lock module are
created automatically.
B.
C.
D.
61.What are the properties you set when you define a table type in
Dictionary?
CHK MY DUMPS
62. where can you defined data types that can be used throughout the
system.
A. in method
B. in global CLASS
C. in abap dictionary
D. in functional module
63. You are asked to enhanced the GUI ststus of an Standard application.
How do you identify which menue exit function can you use? (select 1)
A. It starts with a plus (+)
B. It starts with an ampersand (&)
C. Is starts with an asterisk(*)
D. It starts with a dollar($)
64. You want to loop over an internal table without coping ______ table
row to a work area. how can you achive this using field symbol?
A.
B.
C.
D.
65. 9. You have created ZTAB and you want to create a forign key
relationship to table SAPTAB . Under which condition is this possible ?
A.
B.
C.
D.
66. You want to read a single line of internal table using table expression
itab[......] How can you identify the line ?.
A.
B.
C.
D.
67. Which additions to the PARAMETERS statement can you use to fill the
input field on the selection screen with the suggclte value?
Answer-->>DEFAULT ,REPEATED
A.
B.
C.
D.
Answer-->>CUSTOMER EXIT,BADI
A.
B.
C.
D.
69. You write a report that displays mass data in table using ALV GRID
control.
Answer-->>
A.
B.
C.
D.
70. In which event block can you overwrite the default value of Parameter
field on the screen selection?
Answer -->>REPEATED
A.
B.
C.
D.
71. Which of the following can you perform in both ABAP editor and
ABAP debugger?(related to breakpoint) (select 1)
Answer -->>
A. Breakpoint
B. Watchpoint
D.
A.
B.
C.
D.
A.
B.
C.
D.
74. What must exist before you can create transpotable function module.
A.package
B. module pool.
C. Function group
D. Change request.
E. Type group
75. Which of the following action can yoou perform.... CHK MY DUMP
A. breakpoint spe.sal
B. watch point variable
C. create breakpoint spetial message
D.breake point spe line.
D. contain a package
77. In which event block can you overwrite the default value of paremeter
find on the selection screen?
A. Start of selection
B. at selection screen,
like that........
INITIALIZATION
A. full join
B. string expression
C. case expression
D. interaction
A. MODIF ID
B. VALUE-CHECK
C. MEMORY ID
D. DEFAULT
A. Change document.
B. GET/SET
C. class mode
D. primary key
E. line type
81.