‎2009 Feb 18 10:24 AM
Hi Friends,
What is the advantage of using package size along with select querry or when do we use it?Pls brief with scenario.
‎2009 Feb 18 10:26 AM
Hi
Package size is use to allot an initial size to the internal table declared
Package size can be used to retreive a spcific number of records at a time. This can be used if you for example only want tofinish processing a limited amount of data at a time due to lack of memory.
‎2009 Feb 18 10:26 AM
Hi
Package size is use to allot an initial size to the internal table declared
Package size can be used to retreive a spcific number of records at a time. This can be used if you for example only want tofinish processing a limited amount of data at a time due to lack of memory.
‎2009 Feb 18 10:26 AM
Hi,
We will use package size so that we can send the data by peices.If we have large amount of data then define the packet size and send the data with that packet size.
Regards,
jaya
‎2009 Feb 18 10:28 AM
Hi,
package size give you initial memory size.
It is very usefull when you are fetching huge records to the internal table, in this case by this statement you can restrict dump which may occure due to table space overflow .
Thanks
Pinaki
‎2009 Feb 18 10:29 AM
‎2009 Feb 18 10:30 AM
Hi,
if you use package size option in select, you have to use selecte-endselect compulsorily.
Package size determines the Total # of records that will be picked up in the First loop.
Regards
Rajesh Kumar
‎2009 Feb 18 10:31 AM
‎2009 Feb 18 10:40 AM