gayathri


{ City } hyderabad
< Country > india
* Profession * student
User No # 1155
Total Questions Posted # 0
Total Answers Posted # 21

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 176
Users Marked my Answers as Wrong # 218
Answers / { gayathri }

Question { 31425 }

How to sort internal table?


Answer

sort itab.
it is sorted by default key.
default key means combination of all non-numeric fields

Is This Answer Correct ?    3 Yes 10 No

Question { 14248 }

How to declare an Internal Table?


Answer

we can declare internal table with header line and without
header line.
internal table with header line.
data: begin of itab occurs 0,
num type i,
name(23),
........,
........,
end of itab.
internal table without header line.
types: begin of itab,
num type i,
name(23),
........,
........,
end of itab.
data: itab1 type itab occurs 0.

Is This Answer Correct ?    12 Yes 6 No


Question { Accenture, 10017 }

which processor controls the flow logic of an online
program?


Answer

screen processor

Is This Answer Correct ?    2 Yes 0 No

Question { Deloitte, 31925 }

how many secondary lists can we create in an ALV?


Answer

only one

Is This Answer Correct ?    0 Yes 18 No

Question { 4257 }

how do you put dynamic page breaks in script.


Answer

using NEW-PAGE COMMAND

Is This Answer Correct ?    3 Yes 0 No

Question { 18610 }

What are the events in ABAP/4 language?


Answer

BELOW ARE THE CLASSICAL EVENTS
initalization
at selection-screen output
at seelction-screen on field
at selection-screen on block
at selection-screen
start-of-selection
end-of-selection
BELOW ARE THE INTERACTIVE EVENTS
at line-selection
at user-command
at pfnn
top-of-page during line selection
BELOW ARE THE LIST EVENTS
top-of-page
end-of-page
BELOW ARE THE CONTROL BREAK EVENTS
AT FIRST
AT LAST
AT NEW
AT END OF
ON CHANGE OF

Is This Answer Correct ?    20 Yes 7 No

Prev    1    [2]