cancel
Showing results for 
Search instead for 
Did you mean: 

When I log in XI I see problem with XI session

Former Member
0 Kudos

I pasted the error page below.

How can I solve this problem?

Thanks

=========================================================

Runtime Errors SYSTEM_NO_TASK_STORAGE

Date and Time 25.07.2006 08:37:43

ShrtText

Unable to fulfil request for 339240 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 339240 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 SAPLSMTR_NAVIGATION_MODULES

Include LSMTR_NAVIGATION_MODULESF01

Row 284

Module type (FORM)

Module Name REMOVE_DOUBLE_MENU_ENTRIES

Source Code Extract

Line SourceCde

254 ENDIF.

255 IF L_OLDLEVEL > I_OUTPUT_TREE-MENU_LEVEL.

256 * Bewegung im Baum nach oben

257 L_DISTANCE = L_OLDLEVEL - I_OUTPUT_TREE-MENU_LEVEL.

258 L_DIRECTION = 'U'.

259 ENDIF.

260

261 MOVE-CORRESPONDING I_OUTPUT_TREE TO I_TREE.

262

263 PERFORM GET_STRUCTURE TABLES I_STRUCTURE

264 I_OUTPUT_TREE_TEXTS

265 *<venkatam-BCEK073520>

266 I_OUTPUT_TREE

267 *</venkatam-BCEK073520>

268 USING I_OUTPUT_TREE-OBJECT_ID

269 I_OUTPUT_TREE-MENU_LEVEL

270 L_DISTANCE

271 L_DIRECTION

272 G_STRUCTURE.

273

274 I_TREE-STRUCTURE = G_STRUCTURE.

275 APPEND I_TREE.

276 CLEAR I_TREE.

277 L_OLDLEVEL = I_OUTPUT_TREE-MENU_LEVEL.

278 ENDLOOP.

279

280 * Duplizieren der erzeugten Tabelle

281 I_TREE_CHECK[] = I_TREE[].

282

283 * Sortieren der Prüftabelle nach Struktureintrag

>>> SORT I_TREE_CHECK BY STRUCTURE ASCENDING

285 OBJECT_ID ASCENDING.

286

287 * Markieren des jeweils ersten Eintrages bei mehreren gleichen

288 LOOP AT I_TREE_CHECK.

289 IF I_TREE_CHECK-STRUCTURE <> L_OLDSTRUCTURE.

290 I_TREE_CHECK-FLAG_OK = 'X'.

291 MODIFY I_TREE_CHECK.

292 ELSE.

293 * Markieren der direkt untergeordneten Knoten, damit die PARENT_ID

294 * aktualisiert wird

295 LOOP AT I_TREE WHERE PARENT_ID = I_TREE_CHECK-OBJECT_ID.

296 I_TREE-FLAG_CORRECT = 'X'.

297 MODIFY I_TREE.

298 ENDLOOP.

299 * Löschen des betreffenden Knotens

300 DELETE I_TREE WHERE OBJECT_ID = I_TREE_CHECK-OBJECT_ID.

301 DELETE I_TREE_CHECK.

302 ENDIF.

303 L_OLDSTRUCTURE = I_TREE_CHECK-STRUCTURE.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

End

Former Member
0 Kudos

Hi Cemil,

Sure, this is a space issue...forward the dump message to your basis team: they will know what should be done to solve the problem...

cheers,

Prashanth

P.S: Please mark all helpful answers

Former Member
0 Kudos

Hi Cemil,

I have a few questions for you.

Can you send me your e-mail adress?

to : koekce@fh-wolfenbuettel.de

Former Member
0 Kudos

Hi,

Clearly, the error is occuring because there is no space to do whatever you are trying to run. As mentioned in the error log...the data is too much to run at one go or there is not enough space to run it.

Please check the memory space available and also, please explain when you are getting this error. so that we can help you trace the details of memory space available.

Regards,

Sushumna