cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding Dump error

former_member242166
Participant
0 Kudos

Hi experts,

When i run PO print out(tcode-ME9F) The following dump error occurs,  How to solve this issue, Please guide me frnds,

Runtime Errors         RAISE_EXCEPTION                                                             
Date and Time          14.06.2012 10:28:26                                                         
                                                                                                   

 

Short Text                                                                                       
    Exception condition "CNTL_ERROR" raised.                                                     


  

What happened?                                                                                   
    The current ABAP/4 program encountered an unexpected                                         
    situation.                                                                                   


  

What can you do?                                                                                 
    Note down which actions and inputs caused the error.                                         
   
   
    To process the problem further, contact you SAP system                                       
    administrator.                                                                               
   
    Using Transaction ST22 for ABAP Dump Analysis, you can look                                  
    at and manage termination messages, and you can also                                         
    keep them for a long time.                                                                   


  

Error analysis                                                                                   
    A RAISE statement in the program "CL_GUI_CONTROL================CP" raised the               
    exception                                                                                   
    condition "CNTL_ERROR".                                                                      
    Since the exception was not intercepted by a superior                                        
    program, processing was terminated.                                                          
   
    Short description of exception condition:                                                    
   
   
    For detailed documentation of the exception condition, use                                   
    Transaction SE37 (Function Library). You can take the called                                 
    function module from the display of active calls.                                            

                                                                                                   

  

How to correct the error                                                                         
   
    If the error occures in a non-modified SAP program, you may be able to                       
    find an interim solution in an SAP Note.                                                     
    If you have access to SAP Notes, carry out a search with the following                       
    keywords:                                                                                    
   
    "RAISE_EXCEPTION" " "                                                                        
    "CL_GUI_CONTROL================CP" or "CL_GUI_CONTROL================CM00C"                  
    "FREE"                                                                                       
   
    or                                                                                           
   
    "CL_GUI_CONTROL================CP" "CNTL_ERROR"                                              
   
    or                                                                                           
   
    "RM_MEPO_GUI " "CNTL_ERROR"                                                                  
    If you cannot solve the problem yourself and want to send an error                           
    notification to SAP, include the following information:                                      
   
    1. The description of the current problem (short dump)                                       
   
       To save the description, choose "System->List->Save->Local File                           
    (Unconverted)".                                                                              
   
    2. Corresponding system log                                                                  
   
       Display the system log by calling transaction SM21.                                       
       Restrict the time interval to 10 minutes before and five minutes                          
    after the short dump. Then choose "System->List->Save->Local File                            
    (Unconverted)".                                                                              
   
    3. If the problem occurs in a problem of your own or a modified SAP                          
    program: The source code of the program                                                      
       In the editor, choose "Utilities->More                                                    
    Utilities->Upload/Download->Download".                                                       
   
    4. Details about the conditions under which the error occurred or which                      
    actions and input led to the error.                                                          
   


  

System environment                                                                               
    SAP-Release 700                                                                              
   
    Application server... "SILPRD"                                                               
    Network address...... "192.168.255.150"                                                      
    Operating system..... "Windows NT"                                                           
    Release.............. "5.2"                                                                  
    Hardware type........ "4x IA64 Level 3"                                                      
    Character length.... 16 Bits                                                                 
    Pointer length....... 64 Bits                                                                
    Work process number.. 3                                                                      
    Shortdump setting.... "full"                                                                 
   
    Database server... "SILPRD"                                                                  
    Database type..... "MSSQL"                                                                   
    Database name..... "PRD"                                                                     
    Database user ID.. "prd"                                                                     
   
    Terminal................. "fac-b47320bfbce"                                                  
   
    Char.set.... "C"                                                                             
   
    SAP kernel....... 700                                                                        
    created (date)... "Dec 27 2011 23:06:34"                                                     
    create on........ "NT 5.2 3790 Service Pack 2 x86 MS VC++ 13.10"                             
    Database version. "SQL_Server_8.00 "                                                         
   
    Patch level. 333                                                                             
    Patch text.. " "                                                                             
   
    Database............. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"                             
    SAP database version. 700                                                                    
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows               
    NT 6.0, Windows NT 6.1"                                                                     
   
    Memory consumption                                                                           
    Roll.... 16192                                                                               
    EM...... 25139040                                                                            
    Heap.... 0                                                                                   
    Page.... 106496                                                                              
    MM Used. 16015152                                                                            
    MM Free. 4930528                                                                             


  

User and Transaction                                                                             
   
    Client.............. 500                                                                     
    User................ "SD4JAYAS"                                                              
    Language key........ "E"                                                                     
    Transaction......... "ME23N "                                                                
    Transactions ID..... "24DDB5E17C50F1F5B24F0017A4ABA0FD"                                      
   
    Program............. "CL_GUI_CONTROL================CP"                                      
    Screen.............. "SAPLSTXBW 0100"                                                        
    Screen line......... 5                                                                       


  

Information on where terminated                                                                  
    Termination occurred in the ABAP program "CL_GUI_CONTROL================CP" -                
    in "FREE".                                                                                  
    The main program was "RM_MEPO_GUI ".                                                         
   
    In the source code you have the termination point in line 8                                  
    of the (Include) program "CL_GUI_CONTROL================CM00C".                              


   

Source Code Extract                                                                              
Line SourceCde                                                                                  
    1                                                                                           
    2METHOD FREE.                                                                               
    3* ...                                                                                      
    4  CALL METHOD ME->FINALIZE.                                                                
    5                                                                                           
    6* TODO: Must call control_detroy (method of H_GUI)                                         
    7  IF H_CONTROL IS INITIAL.                                                                 
>>>>>    RAISE CNTL_ERROR.                                                                      
    9  ENDIF.                                                                                   
   10                                                                                           
   11* Unsubscribe Anyway                                                                       
   12  CLASS CL_GUI_CFW DEFINITION LOAD.                                                        
   13  CALL METHOD CL_GUI_CFW=>UNSUBSCRIBE                                                      
   14    EXPORTING                                                                              
   15      REF = ME.                                                                            
   16* Call also in CL_GUI_OBJECT                                                               
   17  call method cl_gui_cfw=>unregister_cached_control                                        
   18       exporting control = me.                                                             
   19                                                                                           
   20* be careful with lifetime-Management                                                      
   21*   OBJECT WAS CREATED AS CONTROL                                                          
   22*   CALL METHOD OF H_GUI 'DestroyWindow' = THIS_DUMMY_VALUE                                
   23  IF not H_CONTROL-OBJ-HANDLE IS INITIAL.                                                  
   24    CALL METHOD OF H_GUI 'DestroyWindow'                                                   
   25      NO FLUSH                                                                             
   26      EXPORTING #1 = H_CONTROL-SHELLID.                                                    
   27    CASE SY-SUBRC.                  

Thanks and Regards,

Linganathan.K

Accepted Solutions (0)

Answers (3)

Answers (3)

naresh_bammidi
Contributor
0 Kudos

Hi,

please look into following threads

http://scn.sap.com/thread/93979

Thanks

Naresh

former_member242166
Participant
0 Kudos

Please Can anybody solve this issue?

Regards,

Linganathan

Former Member
0 Kudos

Hi,

It is because of the GUI.Please try to see the notes regarding CNTL_ERROR or try to reinstall your GUI.

Karthik.R

former_member242166
Participant
0 Kudos

Dear karthik,

It is happened in production server.  And Its a standard report (ME9F) What can i do for this?  Y this error occured

Regards,

Linganathan.K

Former Member
0 Kudos

These are bugs which is caused by the older version of the SAP GUI.So see OSS notes and try to patch up new GUI.

former_member209818
Active Contributor
0 Kudos

are you not passing the print parameters to your smartform?

Former Member
0 Kudos

Hi,

Please search in forums before posting.

It is a SAPGUI issue Check on it

Thanks

R.Karthik

former_member242166
Participant
0 Kudos

Dear Harshad Bhingarkar,

I am not getting your points, please may you tell me somewhat briefly?

regards,

Linganathan.K