When we append a record to a sorted internel table how it
is appended?
Answers were Sorted based on User's Feedback
Answer / hari
If an internal table is defined Sorted, then dont even
think about Appending. Always use INSERT. Append will only
append data after last record in internal table. INSERT
will find the index and insert the record. e.g. itab
contains data like A, D, F, J, K etc..now i want to add B
to it.. INSERT will update internal table like A, B, D,
etc...If used APPEND, program will abend.
Is This Answer Correct ? | 22 Yes | 2 No |
Answer / anvesh
append will insert a record at the last record in the internal table,when we need to do this insert is prefereble
Is This Answer Correct ? | 0 Yes | 3 No |
Answer / bala
sort internal tables r used to sort the internal table from
left column to the right most colume in assending order
Is This Answer Correct ? | 2 Yes | 13 No |
Answer / ashish
In a sorted internal table if a record is appended then the
record is inserted according to the sort order. For sorted
table Append and Insert operations insert a record in sort
order.
Is This Answer Correct ? | 0 Yes | 12 No |
Significance of Hide?
What are aggregated objects
What is a database view? : abap data dictionary
Explain what is the difference between primary key and unique key?
what are conversion routines
How to change the development class of any object?
what connects smartform to it's driver program?
what is the differnce between normal funcational and ALV funcational module
What is meant by hide area?
Is the basic list deleted when the new list is created?
What are the advantages and disadvantages of different types of bdc's?
What is dynpro? what are its components ?