This website is not affiliated with, sponsored by, or approved by SAP AG.

No more storage space available for extending an interna

Development (ABAP Development WorkBench, ABAP/4 programming)

Moderators: thx4allthefish, Snowy, Gothmog, YuriT

No more storage space available for extending an interna

Postby gana245659 » Sat May 12, 2012 2:28 am

Hi All,
I am getting the Error because of job fail
At the time of the termination, the following data was determined for
the relevant internal table:

Memory location: "Session memory"
Row width: 260
Number of rows: 74000
Allocated rows: 74000
Newly requested rows: 32 (in 1 blocks)

The amount of storage space (in bytes) filled at termination time was:

Roll area...................... 6201648
Extended memory (EM)........... 2002751800
Assigned memory (HEAP)......... 46520192
Short area..................... " "
Paging area.................... 24576
Maximum address space.......... 18446741314771270592



and the coding i am getting the error is



Code: Select all
IF it_cust_dist[] IS NOT INITIAL.
    CLEAR: it_depdh[].
    SELECT opera_del_num
           dist_acc_num
    FROM   zerp_prc_del_hrd
    INTO   TABLE   it_depdh
    FOR ALL ENTRIES IN it_cust_dist
    WHERE  dist_acc_num     EQ it_cust_dist-source_acc_num  " BRF 425
    AND    ( sales_doc_typ_id EQ c_zkb
    OR       sales_doc_typ_id EQ c_zkbp )
    AND      order_date       IN itr_end_dat.

    IF sy-subrc NE c_0.
      WRITE:/ 'ERROR IN EXTRACTING RECORDS FROM TABLE ZERP_PRC_DEL_HRD'.
    ENDIF.
  ENDIF.

* Extract all the records from ERP processed delivery lines
  IF it_depdh[] IS NOT INITIAL.
    CLEAR: it_epdl[].
    SELECT opera_del_num
           product_id
    FROM   zerp_prc_del_lin
    INTO   TABLE   it_epdl
    FOR ALL ENTRIES IN it_depdh
    WHERE   opera_del_num EQ it_depdh-opera_del_num.
i am getting dump while filling the It_epdl table..

please help me...

Last edited by Gothmog on Mon May 14, 2012 6:44 am, edited 1 time in total.
Reason: code tags added, urgency removed
gana245659
 
Posts: 1
Joined: Sat May 12, 2012 2:19 am

Re: No more storage space available for extending an interna

Postby Gothmog » Mon May 14, 2012 6:49 am

Either restrict your selections, FREE some internal tables you don't need anymore, or ask the admins to allow you to use more memory.
68 74 74 70 3a 2f 2f 74 69 6e 79 75 72 6c 2e 63 6f 6d 2f 62 64 6f 37 6d 77 67
Gothmog
 
Posts: 1466
Joined: Wed Sep 12, 2007 4:46 am
Location: Probably not home

Re: No more storage space available for extending an interna

Postby Rich » Mon May 14, 2012 8:40 am

Gothmog wrote:Either restrict your selections, FREE some internal tables you don't need anymore, or ask the admins to allow you to use more memory.


Or move anything that you have in a global scope that is NOT global to a local scope where it is actually used.
Regards

Rich

Image
Abap KC
SFMDR
Rich
 
Posts: 6919
Joined: Thu Oct 31, 2002 4:47 pm
Location: Geneva


Return to ABAP

Who is online

Users browsing this forum: No registered users and 25 guests




This website is not affiliated with, sponsored by, or approved by SAP AG.