cancel
Showing results for 
Search instead for 
Did you mean: 

LOAD_PROGRAM_LOST

Former Member
0 Kudos

Dear all,

SAP ECC 6.0 , AIX , Oracle 10g

I got the error in prod server (LOAD_PROGRAM_LOST) and Pls check the log also .

Runtime Errors LOAD_PROGRAM_LOST

Date and Time 23.06.2010 16:18:04

Short text

Program "GBTGEFI0" was modified during the run.

What happened?

Runtime error

The current ABAP program "SAPLGBL5" had to be terminated because one

of the statements could not be executed at runtime.

What can you do?

Restart the program.

If the error persists, contact your SAP administrator.

You can use the ABAP dump analysis transaction ST22 to view and manage

termination messages, in particular for long term reference.

Error analysis

While the program was running, the program "GBTGEFI0" had to be reloaded

because a bottleneck pushed it out of the local

program buffer. However, the database was found to contain an already

changed program.

How to correct the error

Try to restart the program.

System environment

SAP-Release 700

Application server... "PRDAPP2"

Network address...... "10.54.145.34"

Operating system..... "AIX"

Release.............. "5.3"

Hardware type........ "000184AAD400"

Character length.... 16 Bits

Pointer length....... 64 Bits

Work process number.. 0

Shortdump setting.... "full"

Database server... "PRODORADB"

Database type..... "ORACLE"

Database name..... "IRP"

Database user ID.. "SAPSR3"

Terminal................. "MUL119-WKS-D27"

Char.set.... "C"

SAP kernel....... 700

created (date)... "Mar 7 2010 21:00:49"

create on........ "AIX 2 5 005DD9CD4C00"

Database version. "OCI_102 (10.2.0.2.0) "

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Helllo satheesh,

Is this issue is resolve, If yes could you please help me to resolve the same issue I ma facing.

Thanks

Dinesh

Former Member
0 Kudos

check sm21 for db errors , tablespace holding generated programs may be full, also check abap buffer size it may be too small...

markus_doehr2
Active Contributor
0 Kudos

> Runtime Errors LOAD_PROGRAM_LOST

> Date and Time 23.06.2010 16:18:04

>

> Short text

> Program "GBTGEFI0" was modified during the run.

This seems to me a generate program - just start the transaction again.

Markus

Former Member
0 Kudos

Continuation of error log

Patch level. 246

Patch text.. " "

Database............. "ORACLE 10.1.0.., ORACLE 10.2.0.., ORACLE 11.2...*"

SAP database version. 700

Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5, AIX 1 6"

Memory consumption

Roll.... 16192

EM...... 12569544

Heap.... 0

Page.... 884736

MM Used. 5306304

MM Free. 3070592

User and Transaction

Client.............. 320

User................ "SA_A013"

Language key........ "E"

Transaction......... "FB01 "

Transactions ID..... "4C217FF2026C007FE10080000A369122"

Program............. "SAPLGBL5"

Screen.............. "SAPMF05A 0300"

Screen line......... 95

Information on where terminated

Termination occurred in the ABAP program "SAPLGBL5" - in "LINK_GEN_EXIT_POOLS".

The main program was "SAPMF05A ".

In the source code you have the termination point in line 282

of the (Include) program "LGBL5F01".

Source Code Extract

Line SourceCde

252 ENDFORM. " GENERATE_EXP_ROUTINES

253 *******************************************************

254 FORM link_gen_exit_pools.

255

256 STATICS: pool_r LIKE syst-repid,

257 pool_s LIKE syst-repid.

258

259 IF pool_r IS INITIAL AND pool_s IS INITIAL.

260 CALL FUNCTION 'G_VSR_GET_EXITPOOL_NAME'

261 EXPORTING

262 arbgb = 'GBLR'

263 mandt = syst-mandt

264 IMPORTING

265 poolname = pool_r

266 EXCEPTIONS

267 OTHERS = 1.

268

269 CALL FUNCTION 'G_VSR_GET_EXITPOOL_NAME'

270 EXPORTING

271 arbgb = 'GBLS'

272 mandt = syst-mandt

273 IMPORTING

274 poolname = pool_s

275 EXCEPTIONS

276 OTHERS = 1.

277 ENDIF.

278 CHECK NOT ( pool_r IS INITIAL AND pool_s IS INITIAL ).

279

280 PERFORM link_exit_pool IN PROGRAM (g_boolpool) USING

281 pool_r pool_s IF FOUND.

>>>>> ENDFORM. "link_gen_exit_pools

283

284 &----


285 *& Form create_bool_filename

286 &----


287 * Setzt GBTmmaa0 zusammen, ersetzt die GBAAAAAA Logik

288 ----


289 FORM create_bool_filename USING vsr_user LIKE gb31-valuser

290 vsr_event LIKE gb31-valevent

291 CHANGING filename.

292

293 DATA: file_name(8) TYPE c,

294 client LIKE sy-mandt,

295 l_gb31c LIKE gb31c.

296

297 CHECK NOT vsr_user IS INITIAL.

298 CHECK NOT vsr_event IS INITIAL.

299

300 client = sy-mandt.

301

Kindly suggest