More Than One Answer Is Correct
More Than One Answer Is Correct
More Than One Answer Is Correct
Collect
Append
Insert ITAB
SY-LISTI
SY-TABIX
SY-LSIND
SY-INDEX
304 of 644
Desktop Shortcuts
SET/GET Parameters
Variant Transactions
narrowing cast
dynamic referencing
widening cast
up cast
307 of 644
Report ABC
Data: …..
Start-of-Selection.
Perform Form A.
End-of-Selection.
Form A.
Loop at inttab.
...
Exit.
Endloop.
Endform.
Exits the Start-of-Selection Event
Transaction Text
Program
Screen Number
Authorization Object
313 of 644
type
check table
data element
table field
table
314 of 644
C++
Cobol
VB
ABAP
315 of 644
implementation
definition
attributes
method
316 of 644
BREAK-POINT.
MESSAGE E101.
SUBMIT RSCA101X.
MESSAGE I101.
317 of 644
Program is suspended
Runtime error
Message occurs
Program continues
318 of 644
FZ
Y or Z
Y_ or Z_
F
319 of 644
LDB
Program
Joined Tables
Customizing
Append Structures
322 of 644
By Value
By Changing
By Reference
323 of 644
Select Lists
Statistics
Ranked lists
Summary
Basic lists
324 of 644
40 chain.
field: a, b, c.
module check_field_abc.
endchain.
50 chain.
field: c, d.
module check_field_cd. <== ERROR
endchain.
30
40
50
20
10
326 of 644
menu_class
cl_ctmenu
cl_menu
cl_context_clas
327 of 644
File
Table
Node
Structure
SY-KEY
SY-UCOMM
SY-GUI
SY-FCODE
329 of 644
SY-DYNNR
SY-STEPL
TC_FLIGHT-LINES
TC_FLIGHT-TOTAL_LINES
330 of 644
1, 2, 3
3, 2, 1
2, 3, 1
331 of 644
30
20
333 of 644
ZFIELDA = ‘XX’.
Clear ZFIELDA.
ZFIELDB = ZFIELDA.
ABCD
Spaces
BCDE
ABCDE
335 of 644
To the previous screen
maximum of 1
minimum of 1
338 of 644
Parameters
Selection-Screen
Tables
Data
Class
339 of 644
ZXG99F01
ZXG99E01
ZXG99L01
ZXG99U01
341 of 644
SE24
SE18
SE80
SE19
342 of 644
Internet
Presentation
Application
Database
343 of 644
10 get spfli.
20 * Processing of SPFLI records
30 write: spfli-carrid, spfli-connid.
40 counter = counter + 1.
60 if counter > 1.
70 Exit.
80 endif.
90 write:/ ‘No more processing for this Carrier'.
100 get sflight.
110 write: sflight-fldate, spfli-price.
120 end-of-selection.
130 write: / text-002, text-003.
120
100
80
130
345 of 644
Tables
ABAP/4 memory
SAP Memory
346 of 644
40 chain.
field: a, b, c.
module check_field_abc.
endchain.
50 chain.
field: c, d.
module check_field_cd. <== ERROR
endchain.
c, d
a, b, c
b, d
347 of 644
public section.
data: name(15) type c value 'ABAPObjects101'.
class-data price type p value 100.
private section.
data: category(10) type C value 'Objects'.
endclass.
course_name = course1=>name.
course_price = lcl_course=>price.
course_name = name
course_price = lcl_course->price.
course_name = course1->name.
348 of 644
Super class and subclass both point to an instance of the same class type
PERFORM READ_RECORDS_FROM_FILE.
…..
…..
FORM READ_RECORDS_FROM_FILE.
READ DATASET ABC INTO REC.
IF SY-SUBRC = 0. EXIT. ENDIF.
DO.
READ DATASET ABC INTO REC.
IF SY-SUBRC = 0. EXIT. ENDIF.
ENDDO.
ENDFORM.
11
10