cancel
Showing results for 
Search instead for 
Did you mean: 

No PXA storage space available at the moment

Former Member
0 Kudos

dear all,

After delivery i am getting this dump Runtime Errors PXA_NO_FREE_SPACE

Date and Time 25.08.2009 00:45:08

Short dump has not been completely stored (too big)

-

-


Short text

No PXA storage space available at the moment.

What happened?

The current ABAP/4 program had to be terminated because there

was no space available to load it.

Each ABAP/4 program to be executed is stored in a central

storage area that is divided between all users.

This area was too small to hold all currently active programs for all

users.

Resource bottleneck

The current program "SAPLARFC" had to be terminated because

a capacity limit has been reached.

Error analysis

Unable to load a program of 1837056 bytes.

The PXA ('program execution area') was too small to hold all

currently active programs for all users.

At present, the size of the PXA is set at 144868 Kbytes.

The largest contiguous and unlocked memory chunk has 1764352 bytes.

Last error logged in SAP kernel

Component............ "NI (network interface)"

Place................ "SAP-Gateway on host gcecc62 / sapgw00"

Version.............. 38

Error code........... "-2"

Error text........... "hostname 'xxxxxx' unknown"

Description.......... "NiHsLGetNodeAddr: hostname cached as unknown"

System call.......... " "

Module............... "nixxhsl.cpp"

Line................. 223

The error reported by the operating system is:

Error number..... " "

Error text....... " "

Trigger Location of Runtime Error

Program SAPLARFC

Include LARFCU07

Row 25

Module type (FUNCTION)

Module Name ARFC_BP_REQUEST

Source Code Extract

Line SourceCde

1 function arfc_bp_request.

2 *"----

-


3 ""Lokale Schnittstelle:

4 *" IMPORTING

5 *" VALUE(REPORT) LIKE SY-REPID

6 *" VALUE(STARTDATE) LIKE TBTCJOB-SDLSTRTDT DEFAULT '00000000'

7 *" VALUE(STARTTIME) LIKE TBTCJOB-SDLSTRTTM DEFAULT '000000'

8 *" VALUE(TID) LIKE ARFCTID STRUCTURE ARFCTID

9 *"----

-


10

11 data: hlen type i,

12 diff type i,

13 jobname like tbtco-jobname,

14 jobnummer like tbtcjob-jobcount,

15 istate like arfcsstate occurs 0 with header line.

16

17 * Plausibilitätsprüfung

18 check tid <> space.

19

20 * Jobname erzeugen

21 jobname = 'ARFC: '.

22 hlen = strlen( jobname ).

23 write tid to jobname+hlen.

24

>>>>> call function 'JOB_OPEN'

26 exporting

27 jobname = jobname

28 importing

29 jobcount = jobnummer

30 exceptions

31 cant_create_job = 1

32 invalid_job_data = 2

33 jobname_missing = 3

34 others = 99.

35 if sy-subrc <> 0.

36 perform batchjob_error_handling using tid report.

37 exit.

38 endif.

39

40 submit (report) and return with tid = tid

41 with qoutsked = 'X'

42 via job jobname

43 number jobnummer.

44

plz guide me

regards csr

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

solved