Final Exam
Final Exam
b) All fields in the SELECT clause that are not part of an aggregate
function must be listed after GROUP BY.
02. Which of the following data types are predefined ABAP data
types?
a) DECFLOAT34
b) STRING
c) XSTRING
d) FLOAT
e) DECIMALS
a) Function modules
b) Internal tables
c) Business functions
d) Transparent tables
e) Module pools
04. You want to define data structures to hold two fields with
data elements s_carr_id and s_carrname. Which of the following
declarations can be used to define this data structure?
There are 2 correct answers to this question.
a) Context mapping
b) Data migration
c) Data binding
d) View assembly
Insert IB
Append
Read table IB
Collect
Write: 'Hello'(001)
Write: TEXT-001
Write: 001(Hello)
Write: TEXT-001'Hello'
08.Which of the following short programs will not display the text
“SY-LSIND= 1” during interactive
reporting?
ZPGM3
ZPGM2
ZPGM1
Buffering
Data Class
Field Name
Size Category
Status
Print Specifications
Variant
Language
Mandatory Fields
Occurs when the page break has been triggered by the New-Page
statement
01/15/1999
1999/01/15
19990115
1999.01.15
table Types
Data Models
Structures
Data definitions
Data Elements
Input
NO-GAP
No-Zero
As Radio Box
Centered
Under
18.In your ABAP program you want to display a dialog box that
asks the user to confirm a chosen action. Which function module
can you use to do this? Please choose the correct answer
Popup_To_Confirm
Dialog_To_Confirm
User_Confirm
100
1000
1001
1100
10
Unlimited
9
1
The option 'Client Specified' is added to the Select stement The first
field is mandt with a domain CLNT but not specified as a key field
25.What will cause the AT USER-COMMAND to fire?
domain
built-in type
table type
check table
table field
Line-Width
Line-Count
Report Size
Line-Size
31.Where does the system store the data after a Read Line has
been performed on a list?
In Memory
In an Internal table
SY-LISTI
SY-LISEL
32.Select the valid customer defined Message Stement:
MESSAGE Y123.
33.What is true about the result set of an left outer join at the
database level?
(More than one answer is correct)
fields from unmatched rows in the right table are null filled
fields from unmatched rows in the left table are null filled
Low
Between
Option
High
Sign
Operator
No Standard Heading
Suppress Standard
System>List>Save
Parameters
Select-Options
Field-Symbols
Tables
Range Of
SY-CUROW
SY-PAGNO
SY-CPAGE
SY-INDEX
ZATP
SAPMZATP
SAPFZATP
SAPLZATP
SAPTZATP
Search help
Header
Label
Length
Fixed Values
Type
48. What are the two methods of modifying Sap standard tables ?
53. 20. If itab contains 20 rows, what will SY-TABIX equal when the
program reaches the
WRITE statement below?
SY-TABIX = 10.
LOOP AT itab.
count_field = count_field + 1.
ENDLOOP.
WRITE: /1 count_field.
A: 0
B: 10
C: 20
D: 30
55.
In regard to MOVE-CORRESPONDING, which of the following is NOT a
true
statement?
A: Moves the values of components with identical names.
B: Fields without a match are unchanged.
C: Corresponds to one or more MOVE statements.
D: Moves the values of components according to their location
56. If a table contains many duplicate values for a field, minimize the
number of
records returned by using this SELECT statement addition.
A: MIN
B: ORDER BY
C: DISTINCT
D: DELETE