Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Dump

Former Member
0 Likes
896

Hi frds

In our developent system we 1+ lakhs of records.i wants to find the open PO's in that.i hv completed my coding ,its working properly if i give all Parameters(Company code,Plant,Vendor,PO_Date).

But when i give plant and company(Parameters) ,the RUN TIME ERROR is coming as output.

How to increase the DUMP memory of the report .Pls give tips and coding's for solving this problem .

Thanks

PARI VENDHAN.R

8 REPLIES 8
Read only

rahul2000
Contributor
0 Likes
872

the dump is surely in that case becuse of large number of record..i guess u will have to use package size in u r select query

Read only

Former Member
0 Likes
872

HI Rahul

Give some sample coding for package size.

thanks

Pari Vendhan.R

Read only

Former Member
0 Likes
872

hi

check ur select statment once.

Read only

0 Likes
872

Hi Sridu,

I hv checked my select statment ,thn wat ?

Thanks

Pari

Read only

Former Member
0 Likes
872

hi

goto tcode: st22

then u can find dump analysis.

Read only

0 Likes
872

HI sridu

How to resolve this problem in the report .

Thanks

Pari

Read only

rahul2000
Contributor
Read only

Former Member
0 Likes
872

Pari,

The place where you are selecting the 1 lakh records there change like below code. Check the select statement

DATA: WA TYPE SPFLI,

ITAB TYPE SORTED TABLE OF SPFLI

WITH UNIQUE KEY CARRID CONNID.

SELECT CARRID CONNID

FROM SPFLI

APPENDING CORRESPONDING FIELDS OF TABLE ITAB

PACKAGE SIZE 10000.

ENDSELECT.

Here every time 10000 records will extract and go for next selection of 10000.Like that it will append 1 lakh records to internal table.

Note : adjust(increase / decrease) the package size accoording to your program performance.