Application Development 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: 

ABAP runtime errors STORAGE_PARAMETERS_WRONG_SET

Bharath84
Participant
0 Kudos

ABAP runtime errors    STORAGE_PARAMETERS_WRONG_SET

Installation error.

What happened?

The current program had to be terminated because of an

error when installing the SAP System.

The program had already requested 384415568 bytes from the operating

system with 'malloc' when the operating system reported after a

further memory request that there was no more memory space

available.

Source code extract

         CLEAR: L_V_CONT_KUNNR, L_V_CONT_CUST.

         LOOP AT T_ITAB1_KUNNR.

           READ TABLE T_ITAB_KUNNR

           WITH KEY KUNNR = T_ITAB1_KUNNR-KUNNR.

           IF SY-SUBRC = '0'.

              DELETE T_ITAB_KUNNR INDEX SY-TABIX.

           ENDIF.

         ENDLOOP.

         FREE T_ITAB1_KUNNR.

         IF NOT T_ITAB_KUNNR[] IS INITIAL.

            SELECT *

              FROM BSAD

              APPENDING TABLE T_CUST_FINANCIAL

               FOR ALL ENTRIES IN T_ITAB_KUNNR

             WHERE BUKRS = P_BUKRS-LOW

               AND BUDAT < S_BUDAT-LOW

               AND KUNNR = T_ITAB_KUNNR-KUNNR

               AND UMSKZ NE 'R'

               AND BLART NE 'RB'

               AND BLART NE 'RV'

               AND BSCHL NE '12'

               AND BSCHL NE '13'

               AND BSCHL NE '14'

               AND BSCHL NE '16'

------->>    AND BSCHL NE '19'.

            SELECT *

              FROM BSID

              APPENDING TABLE T_CUST_FINANCIAL

               FOR ALL ENTRIES IN T_ITAB_KUNNR

             WHERE BUKRS = P_BUKRS-LOW

               AND BUDAT < S_BUDAT-LOW

               AND KUNNR = T_ITAB_KUNNR-KUNNR

Below is my internal table declaration:

data   begin of t_cust_financial occurs 0.

        include structure bsid.

How to solve the dump issue. Please help me.

Thanks,

Haritha

1 ACCEPTED SOLUTION

Former Member
0 Kudos

As a start, try getting rid of all of those NE conditions. Try turning them into EQ with the remaining domain values.

Rob

2 REPLIES 2

Former Member
0 Kudos

As a start, try getting rid of all of those NE conditions. Try turning them into EQ with the remaining domain values.

Rob

Former Member
0 Kudos

you can try create range and append all your NE conditions and use it in where clause

also if psbl select specific fields in both tables instead of select * .

and use into corresponding fields of table or into table statements instead of append to table

hope this will help you out

Regards

Gaurav