cancel
Showing results for 
Search instead for 
Did you mean: 

Dump SYSTEM_NO_TASK_STORAGE while running ZA00

Former Member
0 Kudos

Hi, One of our system is Netweaver 04 and components are as follows - SAP_BASIS 640 0011 SAPKB64011 SAP_ABA 640 0011 SAPKA64011 PI_BASIS 2004_1_640 0008 SAPKIPYI68 SAP_BW 350 0011 SAPKW35011 When we run T-code ZA00 and goto "report" -> "hours per project".What changes can be done? I have checked the drives but they have free space. It shows this dump - Runtime Errors        SYSTEM_NO_TASK_STORAGE Date and Time          12.03.2014 09:52:49 ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- |ShrtText                                                                                          | |    Unable to fulfil request for 2213196 bytes of storage space.                                  | ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- |What happened?                                                                                    | |    Each transaction requires some main memory space to process                                  | |    application data. If the operating system cannot provide any more                            | |    space, the transaction is terminated.                                                        | ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- |Error analysis                                                                                    | |    A new storage area of 2213196 bytes was requested                                            | |    (storage calss TASK).                                                                        | |    All the available space has been used up.                                                    | |    Possible reason: Either the volume of data to be processed is too large                      | |    or the available swap space is too small.                                                    | ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- |Trigger Location of Runtime Error                                                                | |    Program                                ZAFDB150                                              | |    Include                                ZAFDB150                                              | |    Row                                    204                                                  | |    Module Name                            INITIALIZATION                                        | ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- |Source Code Extract                                                                              | ---------------------------------------------------------------------------------------------------- |Line |SourceCde                                                                                  | ---------------------------------------------------------------------------------------------------- |  174|DATA: from_date TYPE d.                                                                    | |  175|DATA: to_date TYPE d.                                                                      | |  176|DATA: nblines TYPE p.                                                                      | |  177|DATA: e_return_tab LIKE ddshretval OCCURS 1 WITH HEADER LINE.                              | |  178|*----------------------------------------------------------------------                    | |  179|SELECT-OPTIONS:                                                                            | |  180|  s_date  FOR  zzhour-zzdate,                                                              | |  181|  s_cdep  FOR  zzproj-zzcdep,                                                              | |  182|  s_pcod  FOR  zzhour-zzpcod,                                                              | |  183|  s_actt  FOR  zzhour-zzactt,                                                              | |  184|  s_ppname FOR  zzproj-zzppname,                                                            | |  185|  s_regl  FOR  zzproj-zzregl,                                                              | |  186|  s_snam  FOR  zzhour-zzsnam,                                                              | |  187|  s_loca  FOR  zzmemb-zzloca,                                                              | |  188|  s_extnr  FOR  zzproj-zzextnr,                                                            | |  189|  s_extnr2 FOR  zzproj-zzextnr2,                                                            | |  190|  s_extnr3 FOR  zzproj-zzextnr3,                                                            | |  191|  s_cpcd  for  zzcptyp-zzcpcd,                                                            | |  192|  s_subact FOR  zzhbrcd-zzsdesc  NO INTERVALS.    "Modified on 8-3-2006                    | |  193|                                                                                            | |  194|SELECTION-SCREEN SKIP.                                                                      | |  195|PARAMETERS: p_downld AS CHECKBOX DEFAULT false.                                            | |  196|PARAMETERS: p_hbr AS CHECKBOX DEFAULT false.                                                | |  197|*-----------------------------------------------------------------------                    | |  198|INITIALIZATION.                                                                            | |  199|*                                                                                          | |  200|  IF ftime = true.                                                                          | |  201|    ftime = false.                                                                          | |  202|    SELECT zzpcod zzdesc FROM zzproj                                                        | |  203|    INTO CORRESPONDING FIELDS OF TABLE vtproj.                                              | |>>>>>|    SORT vtproj.                                                                            | |  205|    SELECT zzactt zzdesc FROM zzactt                                                        | |  206|    INTO CORRESPONDING FIELDS OF TABLE vtactt.                                              | |  207|    SORT vtactt.                                                                            | |  208|    SELECT zzsnam zzname FROM zzmemb                                                        | |  209|    INTO CORRESPONDING FIELDS OF TABLE vtmemb.                                              | |  210|    SELECT zzcdep FROM zzcdep                                                              | |  211|    INTO CORRESPONDING FIELDS OF TABLE vtcdep.                                              | |  212|    SORT vtmemb.                                                                            | |  213|    SELECT * FROM zzhbrcd                                                                  | |  214|    INTO CORRESPONDING FIELDS OF TABLE ithbrcd .                                            | |  215|    SELECT * FROM zzpp                                                                      | |  216|    INTO CORRESPONDING FIELDS OF TABLE vtpp.                                                | |  217|    SELECT * FROM zzregl                                                                    | |  218|    INTO CORRESPONDING FIELDS OF TABLE vtregl.                                              | |  219|    select * from zzcptyp                                                                  | |  220|    into corresponding fields of table itcptyp                                              | |  221|    where zznota eq false.                                                                  | |  222|    SELECT * FROM zzloca                                                                    | |  223|    INTO CORRESPONDING FIELDS OF TABLE dtloca.                                              | ----------------------------------------------------------------------------------------------------

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member188883
Active Contributor
0 Kudos

Hi ,

All the available space has been used up.                                                    | |    Possible reason: Either the volume of data to be processed is too large                      | |    or the available swap space is too small.                                                    | -------------------------------------------------------------------------------

Please filter the data which is being processed or you need some tuning of SAP Memory parameters.

Regards,

Deepak Kori

Former Member
0 Kudos

It was working earlier but from today only this dump is coming. Which parameters needs to be set.

former_member188883
Active Contributor
0 Kudos

Hi ,

If the dump is coming today only then look for the volume of data being processed .IT looks to be higher this time .

Can you break the data into smaller chunks and then process.

As I see program has sort statement which will require more swapping space to perform the sort.

Increase the swap space on your server and check the results.

Regards,

Deepak Kori

Former Member
0 Kudos

Hi Its not heavy data.Its just that going to za00->Report ->hrs per project shows dump. I have tried resetting rsdb/ntab/entrycount = 30000 in RZ10. But when i am checking ST02 this parameter shows 20000 that is the default value. Still same dump. When i resetted this parameter , i again tried same steps and it worked. But when i launched new session , it again showed same dump. This parameter is dynamic?do i have to restart the server?

former_member188883
Active Contributor
0 Kudos

Hi ,

After setting the parameter rsdb/ntab/entrycount, SAP application restart is required.

It is not a dynamic profile parameter.

Post the results after restart.

Regards,

Deepak Kori