what is the difference between FOR ALL ENTRIES and SELECT *
FROM ?
Answers were Sorted based on User's Feedback
For all entries is used to join the one or more tables based on condition.Select * from is used to fetch the data from db
table,but don't use select * from due to performance standards. The code like this
select vbeln
erdat
ernam
vkorg from vbak into table it_vbak
where vbeln eq v_vbeln.
select vbeln
posnr
matnr
matkl from vbap into table it_vbap
for all entrie in it_vbak
where vbeln eq it_vbak-vbeln.
The sequence of fields used in select query must be same as
the sequence of fields in internal table.
thanks,i hpoe this is corrct...........
Is This Answer Correct ? | 9 Yes | 2 No |
Answer / surya
For all entries means: select query will be fetch the
records based on the records which are in the internal
table fields using for all entries.it gives the better
performance,while fetching records from the database.
select * from : it will fetch the records of all the fields
in the database table.it consumes the time .performace
problem.
Is This Answer Correct ? | 4 Yes | 0 No |
Explain about No intervals, no extension in select options.
How do you write transaction programs in sap?
SUPPOSE WE ARE RUNNING A BDC PROGRAM IN BACK GROUND AND AT THE END WE FOUND THAT SOME RECORDS ARE NOT UPDATED?WHAT IS THE SOLUTIONS
Types of BDC?
what is Initialization Purpose?
What is its?
Explain pai and pbo.
How can you change properties of screen elements dynamically in Module pool Programming ?
identify valid statement when coding a field exit ? a) submit RSCA101X b)MESSAGE E101 C)MESSAGE I101 d)BREASK-POINT
What does the insert statement in extract datasets do? : abap modularization
what happend if a select statement inside aloop....
What are pool tables?