Application Development and Automation 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: 
Read only

RE: Runtime error load_typepool_version_mismatch

Former Member
0 Likes
2,427

Hi experts,

            Iam getting this error when i try to run se38,  se80 and while opening tables and also in many transactions ."Please guide me how to solve this different issue".

Run time Errors         LOAD_ TYPE POOL_VERSION_MISMATCH

Date and Time          27.11.2012 13:50:46

Short text

     Type group was changed at run time.

What happened?

     Error in the ABAP Application Program

     The current ABAP program "CL_WB_MANAGER=================CP" had to be

      terminated because it has

     come across a statement that unfortunately cannot be executed.

     

Error analysis

     Type group "WMNGR" was changed during program run, which caused

     inconsistencies at runtime.

     Program "CL_WB_MANAGER=================CP" used the version 20121127122308 of

      the typegroup,

     program "%_CWMNGR" used the version 20121127121320.

     Program "CL_WB_MANAGER=================CP" existed in version 20121127121700.

     The internal session was started at 20121127135046.

Trigger Location of Runtime Error

     Program                                 CL_WB_MANAGER=================CP

     Include                                 CL_WB_MANAGER=================CM007

      Row                                     2

     Module type                             (METHOD)

     Module Name                             ADD_REQUEST_TO_QUEUE

METHOD add_request_to_queue .

DATA:

     l_wb_request_queue_entry   TYPE wmngr_request_queue_entry,

     l_wb_request_entry         TYPE REF TO cl_wb_request_entry.

BREAK-POINT ID workbench_manager.

CREATE OBJECT l_wb_request_entry.

l_wb_request_entry->wb_request            = p_wb_request.

l_wb_request_entry->wb_program_state      = p_wb_program_state.

l_wb_request_entry->window_state          = p_wb_window_state.

l_wb_request_entry->wb_data_container     = p_wb_data_container.

l_wb_request_queue_entry-wb_request_entry = l_wb_request_entry.

l_wb_request_queue_entry-navigator        = p_active_navigator.

APPEND l_wb_request_queue_entry TO me->request_queue.

ENDMETHOD.

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,901

Refer sap note 1298341 & 589103

7 REPLIES 7
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,902

Refer sap note 1298341 & 589103

Read only

0 Likes
1,901

Hi Keshavdas,

Thanx for your quick response I will check those notes and get back to u if I get any issue further.

Wt about sap note 162991. We are on ECC 6.0

Regards,

chandu.


Read only

0 Likes
1,901

It explains about running a program TOUCHALL and the other which I mentioned explains about running a program TOUCHSRC

Read only

0 Likes
1,901

Prior to Ur reply I went through a thread and found note 162991 after reading that note I scheduled SGEN with option as REGENERATE EXISTING LOADS.

"I WANT TO KNOW WHAT IS THE EFFECT OF SCHEDULING SGEN WITH THAT OPTION??"

Awaiting ur reply,

regards,

chandu.

Read only

0 Likes
1,901

This is the documentation for SGEN - Regenerate existing loads...

Regenerate Existing Loads

This task allows you to regenerate all ABAP loads and invalidated loads that exist in your system, and to generate loads for objects of a Support Package queue. The following options are available to you:

Generate all Objects with Existing Load

Only Generate Objects with Invalidated Load

The load of an object becomes invalidated if changes have been made to the object or to the objects used by this object, since the moment the load was generated. Examples of such objects are includes and tables. This may occur by importing a Support Package ( SPAM) or a kernel patch.

If you want to generate loads for objects of a Support Package queue, start the task after importing the queue. The task determines the generation set using the invalidated loads in the system. In contrast with the Generate objects of a transport request task, this task also takes into account ABAP loads that were invalidated by modified Dictionary objects.

After choosing this task, a screen appears which allows you to search for the name of the transport request using the selection button, or to specify it directly.

Hope it helps..

Read only

0 Likes
1,901

Hi Ravi,

The program RSPARAGENLOD behind SGEN is documented well.

Read only

Former Member
0 Likes
1,901

Thanks all my problem has been solved by SGEN.

Regards,

chandu.