Exception condition "FAILED" raised.

My TRM functional consultant has been trying to run end of day processes in the Transaction RKLNACHT but the following dump appears:
Runtime Errors         RAISE_EXCEPTION                                                             
Date and Time          16.05.2008 10:33:21                                                         
Short text                                                                               
Exception condition "FAILED" 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_POSITIONSERVICE_TRQ========CP" raised the               
     exception                                                                               
condition "FAILED".                                                                               
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_POSITIONSERVICE_TRQ========CP" or "CL_POSITIONSERVICE_TRQ========CM00I"                  
    "GET_POSITIONS_BY_DIFF"                                                                               
or                                                                               
"CL_POSITIONSERVICE_TRQ========CP" "FAILED"                                                                               
or                                                                               
"RKLNACHT " "FAILED"                                                                         
    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... "tetradev"                                                             
    Network address...... "192.168.1.81"                                                         
    Operating system..... "SunOS"                                                                
    Release.............. "5.9"                                                                  
    Hardware type........ "sun4u"                                                                
    Character length.... 16 Bits                                                                 
    Pointer length....... 64 Bits                                                                
    Work process number.. 0                                                                      
    Shortdump setting.... "full"                                                                               
Database server... "tetradev"                                                                
    Database type..... "ORACLE"                                                                  
    Database name..... "DEV"                                                                     
    Database user ID.. "SAPSR3"                                                                               
Char.set.... "C"                                                                               
SAP kernel....... 700                                                                        
    created (date)... "Aug 31 2006 20:59:23"                                                     
    create on........ "SunOS 5.9 Generic_117171-13 sun4u"                                        
    Database version. "OCI_102 (10.2.0.2.0) "                                                                               
Patch level. 75                                                                               
Patch text.. " "                                                                               
Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."               
    SAP database version. 700                                                                    
    Operating system..... "SunOS 5.9, SunOS 5.10"                                                                               
Memory consumption                                                                               
Roll.... 16192                                                                               
EM...... 16759392                                                                               
Heap.... 0                                                                               
Page.... 180224                                                                               
MM Used. 10608952                                                                               
MM Free. 1957592                                                                               
User and Transaction                                                                               
Client.............. 300                                                                     
    User................ "DARLINGTON"                                                            
    Language key........ "E"                                                                     
    Transaction......... "KLNACHT "                                                              
    Program............. "CL_POSITIONSERVICE_TRQ========CP"                                      
    Screen.............. "SAPMSSY0 1000"                                                         
    Screen line......... 6                                                                       
Information on where terminated                                                                  
    Termination occurred in the ABAP program "CL_POSITIONSERVICE_TRQ========CP" -                
     in "GET_POSITIONS_BY_DIFF".                                                                 
    The main program was "RKLNACHT ".                                                                               
In the source code you have the termination point in line 37                                 
    of the (Include) program "CL_POSITIONSERVICE_TRQ========CM00I".                              
Source Code Extract                                                                               
Line       SourceCde                                                                               
7              l_selector         TYPE REF TO cl_flow_selector_dif,                               
    8      * workarea for table with positions                                                        
    9              l_tab_position     TYPE trqy_position_obj,                                         
   10              l_position         TYPE REF TO if_position_trq,                                    
   11              l_count            type i.                                                         
   12                                                                               
13      * initialization                                                                               
14        CLEAR re_tab_position.                                                                   
   15                                                                               
16      * Get positions for ranges                                                                 
   17        CALL METHOD ca_pos_identifier_dif=>agent->get_persistent_by_range                        
   18          EXPORTING                                                                               
19            im_context     = trqco_con_trq                                                       
   20            im_ranges      = im_ranges                                                           
   21          RECEIVING                                                                               
22            re_identifiers = l_tab_identifier.                                                   
   23        CHECK NOT l_tab_identifier IS INITIAL.                                                   
   24                                                                               
25        LOOP AT l_tab_identifier INTO l_identifier.                                              
   26                                                                               
27          l_selector = l_identifier->derive_selector( ).                                         
   28                                                                               
29      *   get TRQ positions for selectors                                                        
   30          CALL METHOD read_positions_by_selector                                                 
   31            EXPORTING                                                                               
32              im_selector      = l_selector                                                      
   33            RECEIVING                                                                               
34              re_tab_positions = l_tab_position.                                                 
   35          DESCRIBE TABLE l_tab_position LINES l_count.                                           
   36          IF l_count <> 1.                                                                       
>>>>>            raise failed.                                                                        
   38          ENDIF.                                                                               
39          APPEND LINES OF l_tab_position TO re_tab_position.                                     
   40        ENDLOOP.                                                                               
41                                                                               
42      ENDMETHOD.                                                                               
Contents of system fields                                                                        
Name          Val.                                                                               
SY-SUBRC      0                                                                               
SY-INDEX      0                                                                               
SY-TABIX      2                                                                               
SY-DBCNT      1                                                                               
SY-FDPOS      0                                                                               
SY-LSIND      0                                                                               
SY-PAGNO      0                                                                               
SY-LINNO      1                                                                               
SY-COLNO      1                                                                               
SY-PFKEY                                                                               
SY-UCOMM                                                                               
SY-TITLE      End-of-Day Processing                                                                   
SY-MSGTY      E                                                                               
SY-MSGID      64                                                                               
SY-MSGNO      030                                                                               
SY-MSGV1                                                                               
SY-MSGV2                                                                               
SY-MSGV3                                                                               
SY-MSGV4                                                                               
SY-MODNO      0                                                                               
SY-DATUM      20080516                                                                               
SY-UZEIT      103319                                                                               
SY-XPROG      SAPLSBAL_DB                                                                             
SY-XFORM      %_CONTROL_EXIT_DYNPRO                                                                   
Does anyone have suggestions as to how I can solve this problem?
Assistance will be appreciated.

bumping...any suggestions...welcome

Similar Messages

  • RFC_ERROR_SYSTEM_FAILURE: Exception condition "FAILED" raised on Publish of

    Hi,
    When i preview my Bi query in potal i am getting following exception :
    RFC_ERROR_SYSTEM_FAILURE: Exception condition "FAILED" raised
    Earlier i had already published some query which is working properly, but the new one which i am publishing now is giving me above exception.
    Regards,
    Jigar Oza

    Hi,
    Check the target on which the query is built is active in the same server.

  • CRM 5.2 : Authorization error : Exception condition "FAILED" raised.

    Hi all,
    I'm using CRM 5.2 and when we want to create a user (SU01) with a specific role such as SAP_CRM_UIU_SRV_PROFESSIONAL without any profil or any more role, the user can not acces to the Web GUI.
    Here is the exception :
    Note
    Le message d'erreur suivant a été traité dans le système C52 : Exception condition "FAILED" raised.
    L'erreur s'est produite sur le serveur d'application CRM52_C52_00 et dans le processus de travail 0 .
    Le type d'interruption est le suivant : RABAX_STATE
    La hiérarchie des appels ABAP est la suivante :
      Method: GET_APPL_MODEL of program CL_BSP_WD_APPL_MODEL==========CP
      Method: CONSTRUCTOR of program CL_BSP_DLC_VIEW_DESCRIPTOR====CP
      Method: IF_BSP_DLC_CONFIGURATION~GET_PROPERTY_DESCRIPTOR of program CL_BSP_DLC_CONFIGURATION2=====CP
      Method: WD_VIEW_INITIALIZE of program CL_BSP_WD_VIEW_CONTROLLER=====CP
      Method: WD_INTERFACE_VIEW_INITIALIZE of program CL_BSP_WD_COMPONENT_USAGE=====CP
      Method: BIND_VIEW of program CL_BSP_WD_VIEW_CONTROLLER=====CP
      Method: WD_VIEW_INITIALIZE of program CL_BSP_WD_VIEW_CONTROLLER=====CP
      Method: BIND_VIEW of program CL_BSP_WD_VIEW_CONTROLLER=====CP
      Method: WD_VIEW_INITIALIZE of program CL_BSP_WD_VIEW_CONTROLLER=====CP
      Method: BIND_VIEW of program CL_BSP_WD_VIEW_CONTROLLER=====CP
    After some reasearch, I've set the role SAP_ALL and SAP_NEW and all work fine, but I'm not agree to put all that tole to my users. Is their any other solution ?
    Thanks.
    Kind Regards

    Hi,
    I had the same in CRM 6.0.
    Look at note 1136402, correction  609218. Then you wont get a raise exception.
    There are some technical authorisations in the role
    SAP_CRM_UIU_FRAMEWORK. Assign this role as well.
    You first need to assing your user role to an organisation. Then take the report CRMD_UI_ROLE_ASSIGN in SE38. Here you need to assign the role SAP_CRM_UIU_FRAMEWORK.
    There is a description in the UI-framework customizing .
    Hope it helps
    Andreas

  • RFC Failed: Exception condition "CNTL_ERROR" raised

    Hi All,
    I have an RFC in R/3 which would be called from the .NET front end. When they run the RFC, they get an error which says
    RFC Failed: Exception condition "CNTL_ERROR" raised
    Could any one help me what is the work around for this?
    Regards,
    Guru.

    Hi Guru,
    You are correct. Check the RFC for an call for screen/popup/dialog/user input etc.
    Such error occurs for the system is expecting a user input.
    Thanks,
    Best regards,
    Prashant

  • Exception condition "INVALID_POS" raised

    I have thousands of entries stuck in the outbound queue of my ERP system everyday. This is due to a failed transaction. SAP Support told me there is a problem with the P.O. associated with this transaction and that it is OK to delete the offending entry. Once that is done the remaining entries in the queue process until the queue is empty. My question is: "How do I identify the PO transaction that is not working correctly so I can fix the root cause of this problem? Can I correlate the TID from the SMQ1 tcode to a PO number in SRM?
    The entry below shows the error from SQM1 in the ERP system.
    Client  User    Queue     Destination    Date             Time        Status                                                             TID                                              
    123      Batch   QUEUE1 TARGET1       04/10/2015   18:05:19   Exception condition "INVALID_POS" raised. A20915474B805528491F978BD
    Host           Program
    ADBD123   RSM13000
    Next is the partial contents of the corresponding short dump in the SRM system
    Category                ABAP Programming Error
    Runtime Errors         RAISE_EXCEPTION
    ABAP Program           SAPLSXAB
    Application Component  BC-MID-RFC
    Short text
        Exception condition "INVALID_POS" raised.
    Information on where terminated
        Termination occurred in the ABAP program "SAPLBBP_PDH_NOTIFY_FOLLOWON" -
         "BBP_NOTIFY_FOLLOWON_INBOUND".
        The main program was "SAPMSSY1 ".
        In the source code you have the termination point in line 66
        of the (Include) program "LBBP_PDH_NOTIFY_FOLLOWONU01".
    Source Code Extract
    Line  SourceCde
       36         i_with_itemdata = ' '
       37       IMPORTING
       38         e_header        = ls_po_header.
       39 *   check for existence and type of PO (extended)
       40     IF ls_po_header IS INITIAL
       41       OR ls_po_header-be_log_system IS INITIAL.
       42       DELETE lt_purch_orders.
       43       lv_invalid_pos = gc_yes.
       44       CONTINUE.
       45     ENDIF.
       46
       47     ls_document_tab-reqno     = &lt;fs_purch_orders>-po_
       48     ls_document_tab-logsys    = ls_po_header-be_log_s
       49     ls_document_tab-core_key  = lv_tst.
       50     ls_document_tab-doc_type  = gc_doc_be_po_call_off
       51     ls_document_tab-guid      = ls_po_header-guid.
       52     ls_document_tab-entrydate = sy-datum.

    Hello Timothy,
    I am dealing with the same issue as I reply to your query using a workaround we got from SAP.
    In addition to what Raghu has added, I want to share that apart from stuck outbound queue in ECC, we also see consistent periodic ABAP dumps in SRM for program SAPLBBP_PDH_NOTIFY_FOLLOWON.
    When I do a search in the ST22 ABAP dump in SRM system, I can find the PO number under the "Chosen Variable" section under the ABAP Developer view. 
    When I display the SRM PO in BBP_PD transaction, I see that field BE_LOG_SYSTEM - Table  BBP_PDBEH is blank and does not have the ECC system value.
    Executing function module BBP_PD_PO_TRANSFER_EXEC by entering SRM PO Header GUID not only updates the missing value in following fields in table BBP_PDBEH
    BE_LOG_SYSTEM
    BE_OBJECT_TYPE
    BE_OBJECT_ID
    but also starts to clear the stuck out bound queue in ECC.
    I am still not sure about the root cause but I know that the problem is because the BE_LOG_SYSTEM field value in SRM table BBP_PDBEH is not updated.
    Regards,
    Mehul

  • Exception condition "RATE_NOT_FOUND" raised in DTP

    Hi All,
    I have tried to run the DTP. Some of the PSA data loaded to Target (DSO). But DTP request got failed.If I look into the Issue,I was able to see that "Exception condition "RATE_NOT_FOUND" raised".
    I have browsed some of the SDN forums.I came to know that it is related to Some Currency related Issue.
    Could you please help us on this.

    Hi Krishna, Prasath,
    We are facing the same issue. This issue is coming after our recent patch upgrade to SAP_BI 7.0 SP14. Last month we had activated the Transformation through RSDG_TRFN_ACTIVATE. Now the rule call this function module "RWS_CURRENCY_TRANSLATION", this FM was not previosly present in the system and came only after the upgrade. Report gives a short dump in this function module only with 'Rate Not Found' error.
    Our client has urgent regulatory reports to be submitted to government. We are under high pressure to resolve this issue. Any suggestion and help will be highly appreciated.
    Please assist.
    Regards,
    Aditya

  • Exception condition CNTL_ERROR raised

    Hi everybody
    I try to create a Business Partner of t_code "BPV1", and  I used to create the t_code "sm35" to do a recording of the t_code "BPV1.
    1. I tested my recodring a then hasn't problems.
    2.I create a function module with this recording and then I tested, it hasn't problems.
    3. This function I invoque on ABAP Proxy, then I tested the ABAP Proxy. it hasn't no problems.
    4. But when PI consume and get service of my ABAP Proxy  dump this error
    "Exception condition CNTL_ERROR raised"
    The cancelation class was : RABAX_STATE
    I think that the problem is my recording but I tested all and it hasn't problems. The problem display only qhen PI try to consume my service of ABAP Proxy.

    HI,
    2.I create a function module with this recording and then I tested, it hasn't problems.
    I presume you tested the FM in SE37, try this call this FM in a test report program and call the FM in "BACKGROUND TASK" or call the FM in normal way and schedule the report to run in the background and see the results.
    3. This function I invoque on ABAP Proxy, then I tested the ABAP Proxy. it hasn't no problems.
    Again I presume you tested the FM in SPROXY, create a report program and create an instance of the proxy class and invoke the schedule the report to run in background.
    The reason why the call from PI is failing because the BDC recording you have done has some control elements that need GUI support, now when you try using SE37/SPROXY the GUI is available and hence your testing went smooth.
    4. But when PI consume and get service of my ABAP Proxy dump this error
    When the call is made from PI, there is no GUI available and hence the program terminates.
    Solution: I am sure there are BAPI's available with which you can create partners, try and look for a BAPI which can do this.
    Regards,
    Chen

  • "Exception Condition "FEHLER_BEI_LESEN_FVBUP" raised in SMQ1

    Hello Experts,
    As per our process, We create the Sales Orders in CRM and Transfered to R/3.
    When I add a particulat materila and saved , this order is not replicating and stuck in SMQ1.
    And the order is failed in Outbound Queue with the error message:
    "Exception Condition "FEHLER_BEI_LESEN_FVBUP" raise.
    Please could you help me to fix this error and transfer to R/3.
    Regards
    Madhu

    Hi Madhu,
    please Kindly check this note 694362
    Hope this solves your problem.
    Thanks & Regards,
    srikanth.naga

  • Short Dump, Exception condition "NOT_EXIST" raised

    Dear Colleagues!
    I am having a problem with short dump, I am getting the message Exception condition "NOT_EXIST" raised.
    I am trying to load data to ODS with full load and filtering via a DTP.
    In the monitoring the load doesn't even get started.
    I have already loaded data succesfully in this ODS... But now it doesn't work anymore..
    I also tried to replicate and active all the rules and objects again.
    And in the source system if I test the extractor it works fine.
    I saw an earlier thread on this issue, and it recommended programs ZDMDELTAREPAIR or RSBDELTAREPAIR, but this thread was especially for BW 3.5. We are using 7.0 and have SP10. Are these programs still valid or is there another note for 7.0?
    Hope you can help!
    Regards Silje
    Does anyone have any ideas?
    regards, Uros

    Hi again,
    I tried RSBDELTAREPAIR and it worked!
    Thanks to the forum again!
    Silje

  • "Exception condition "CONTROL_FLUSH_ERROR" raised." during background jobs

    hi all,
    the program ZTEST is used for downloading a txt file into D: using GUI_DOWNLOAD. this program works fine but when I schedule this porgam in background jobs in tcode SM36 using "job wizard", i am getting errors as  Exception condition "CONTROL_FLUSH_ERROR" raised and the error analysis is as
    'A RAISE statement in the program "SAPLSFES " raised the exception condition "CONTROL_FLUSH_ERROR".
    Since the exception was not intercepted by a superior program
    in the hierarchy, processing was terminated.'
    How to rectify this error???
    points will be rewrded
    thanks in advance

    GUI_DOWNLOAD is a FM that is designed to download files by interation with the PC directories (only possible in foreground). If the file download is the requirement the u can use application server files for it.
    But if you are insisting on notepad and excel documents, then you have to use CLIP and EXECUTE function modules. Refer to Class CL_GUI_FRONTEND_SERVICES that has all the required methods

  • Exception condition "CONVERSION_ERROR" raised.

    Hi,
    We have been getting short dumps in our production system daily. I was unable to locate the problem by looking at the dump. The dump says that CONVERSION_ERROR raised.
    Which application raised this exception? Again no clue on the same. Please find the text of the dump.
    Short text
        Exception condition "CONVERSION_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_SWF_CNT_CONTAINER==========CP" raised the
         exception
        condition "CONVERSION_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_SWF_CNT_CONTAINER==========CP" or "CL_SWF_CNT_CONTAINER==========CM02J"
        "IF_SWF_CNT_CONVERSION~TO_XML"
        or
        "CL_SWF_CNT_CONTAINER==========CP" "CONVERSION_ERROR"
        or
        "SAPMSSY1 " "CONVERSION_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... "zacwtbsrv0
        Network address...... "10.27.191.
        Operating system..... "Windows NT
        Release.............. "5.2"
        Hardware type........ "4x AMD64 L
        Character length.... 16 Bits
        Pointer length....... 64 Bits
        Work process number.. 9
        Shortdump setting.... "full"
        Database server... "ZACWTBSRV063"
        Database type..... "MSSQL"
        Database name..... "EP1"
        Database user ID.. "ep1"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Apr 21 2008 00:12:39"
    create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00"
    Database version. "SQL_Server_8.00 "
    Patch level. 157
    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"
    Memory consumption
    Roll.... 16192
    EM...... 8379680
    Heap.... 0
    Page.... 16384
    MM Used. 8164576
    MM Free. 212256
    User and Transaction
        Client.............. 100
        User................ "WF-BATCH"
        Language Key........ "E"
        Transaction......... " "
      Transactions ID..... "FB565CDDF6D0F1BFA292001E0B5D7336"
      Program............. "CL_SWF_CNT_CONTAINER==========CP"
      Screen.............. "SAPMSSY1 3004"
      Screen Line......... 2
      Information on caller of Remote Function Call (RFC):
      System.............. "EP1"
      Database Release.... 700
      Kernel Release...... 700
      Connection Type..... 3 (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
      Call Type........... "synchron and transactional (emode 0, imode 0)"
      Inbound TID.........." "
      Inbound Queue Name..." "
      Outbound TID........."0A1BBF4011A4488D408222BD"
      Outbound Queue Name.." "
      Client.............. 100
      User................ "HPRETORIUS"
      Transaction......... " "
      Call Program........."SAPLERFC"
      Function Module..... "ARFC_DEST_SHIP"
      Call Destination.... "WORKFLOW_LOCAL_100"
      Source Server....... "zacwtbsrv064_EP1_00"
      Source IP Address... "10.27.191.64"
      Additional information on RFC logon:
      Trusted Relationship " "
      Logon Return Code... 0
      Trusted Return Code. 0
      Note: For releases < 4.0, information on the RFC caller are often
      only partially available.
    Information on where terminated
        Termination occurred in the ABAP program "CL_SWF_CNT_CONTAINER==========CP" -
         in "IF_SWF_CNT_CONVERSION~TO_XML".
        The main program was "SAPMSSY1 ".
        In the source code you have the termination point in line 67
        of the (Include) program "CL_SWF_CNT_CONTAINER==========CM02J".
    Source Code Extract
    Line  SourceCde
       37     lv_xml_table_req = 'X'.
       38   ENDIF.
       39   IF xml_stream IS REQUESTED.
       40     lv_xml_stream_req = 'X'.
       41   ENDIF.
       42
       43   IF use_xslt NE space.
       44
       45     cl_swf_cnt_conversion_service=>to_xml_xslt(
       46       EXPORTING
       47         container                  = me
       48         include_null_values        = include_null_values
      49         include_initial_values     = include_initial_values
      50         include_change_data        = include_change_data
      51         include_texts              = include_texts
      52         include_extension_elements = include_extension_elements
      53         save_delta_handling_info   = save_delta_handling_info
      54         xml_dom_req                = lv_xml_dom_req
      55         xml_table_req              = lv_xml_table_req
      56         xml_stream_req             = lv_xml_stream_req
      57       IMPORTING
      58         xml_dom                    = xml_dom
      59         xml_table                  = xml_table
      60         xml_stream                 = xml_stream
      61         xml_rendered_size          = xml_rendered_size
      62       EXCEPTIONS
      63         conversion_error           = 1
      64         OTHERS                     = 2
      65            ).
      66     IF sy-subrc <> 0.
    >>>>       RAISE conversion_error.
      68     ENDIF.
      69
      70   ELSE.
      71
      72     cl_swf_cnt_conversion_service=>to_xml_ixml(
      73       EXPORTING
      74         container                  = me
      75         include_null_values        = include_null_values
      76         include_initial_values     = include_initial_values
      77         include_typenames          = include_typenames
      78         include_change_data        = include_change_data
      79         include_texts              = include_texts
    Could you please help me out in resolving this issue?
    Is there any need to apply any OSS notes?
    Thanks in advance. And reward points will be given for the solution..
    Thanks,
    Ravikumar.

    Hi,
    U will receive this error when ever it is not possible to achieve runtime conversion.
    i.e When u r passing the data from one type variable to another type if the conversion is not defined or not possible u will get this dump. Just analyze the dump in ST22.
    Look at this simple example. Here i am trying to assign 101.23 to l_p for which length is not sufficient. So i will get dump. But if u do the same with character variable it will truncate the data.
    DATA: l_p(2) TYPE P DECIMALS 2.
    l_p = '103.23'.
    WRITE l_p.
    So check the place where u r getting the dump. It must be some assignment statement.
    Hope it gave some idea on ur case.
    Thanks,
    Vinod.

  • Error in BEx Analyzer Exception condition "HIERARCHY_NOT_FOUND" raised.

    When i run report 0FIAA_C02_Q1001 with input variable as  "My controlling area" i get this error.
    ERROR:
    Exception condition "HIERARCHY_NOT_FOUND" raised.
    ERROR Analysis:
    A RAISE statement in the program "SAPLRRH1" raised the exception
    condition "HIERARCHY_NOT_FOUND".
    Since the exception was not intercepted by a superior
    program, processing was terminated.
    Please sugggest how to resolve this.
    HOw to see which hierarachy it is talking about?
    Thanks,
    Harika.
    Edited by: harikag on Oct 12, 2011 7:11 AM
    Edited by: harikag on Oct 12, 2011 7:12 AM

    HI
    FOr 0Costcenterinfoobject->attribute tab->no hierarhcies
                                             ->hierarchy tab->i see hierarchy tables are enabled.But when i click on
                                                 "MaintainHierachy" there are no hierrachies in it.
    For 0CO_AREA infoobject->attribute tab->0CCA_HIENM,0PCA_HIENM hierarchies are there.
                                             ->hierarchy tab->nothing is there.
    please help out.I didnt load 0COSTELMNT_0102_HIER master datasource in CO_IO.
    Is that the reason?

  • Exception condition "CNTL_ERROR" raised.  in WDA :  smartform to pdf

    Hii, 
    I am using a webdynpro - abap application. I am showing  a smartform as a pdf in one on the windows.
    When the link in the main window is clicked, a secondary window. Instead of the pdf, I get following exception.Kindly help me understand, where would I be going wrong. Let me know if more details required.
    *Exception condition "CNTL_ERROR" raised. *
    Form: PBO_HTML_CONTROL of program SAPLSTXBC
    Module: HTML_CONTROL of program SAPLSTXBC
    Function: SSFCOMP_PDF_PREVIEW of program SAPLSTXBC
    Method: DISPLAYPDF of program /1BCWDY/2TKFRFPNZA4CZYBGEB8F==CP
    Method: IF_COMPONENTCONTROLLER~DISPLAYPDF of program /1BCWDY/2TKFRFPNZA4CZYBGEB8F==CP
    Method: ONACTIONPDF of program /1BCWDY/2TKFRFPNZA4CZYBGEB8F==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/2TKFRFPNZA4CZYBGEB8F==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_VIEW========CP
    Method: IF_WDR_ACTION~FIRE of program CL_WDR_ACTION=================CP
    Method: DO_HANDLE_ACTION_EVENT of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    The code in the DISPLAYPDF method is as follows:
    method DISPLAYPDF .
    DATA: I_RS38L_FNAM TYPE  RS38L_FNAM.
    DATA: CTRL TYPE SSFCTRLOP.
    DATA: OUT TYPE  SSFCOMPOP.
    DATA: I_SSFCRESCL TYPE SSFCRESCL.
    DATA: LT_OTFDATA TYPE TABLE OF ITCOO.
    CTRL-GETOTF = 'X'.
    CTRL-NO_DIALOG = 'X'.
    CTRL-PREVIEW = 'X'.
    OUT-TDNEWID = 'X'.
    OUT-TDDELETE = ' '.
    data: i_tsp03 type tsp03.
    clear i_tsp03.
    select single * from tsp03 into i_tsp03.
    *OUT-TDDEST = i_tsp03-PADEST.
    OUT-TDDEST = 'TEP1'.
    ********get context data
      DATA lo_nd_zwebquestionaire TYPE REF TO if_wd_context_node.
      DATA lo_el_zwebquestionaire TYPE REF TO if_wd_context_element.
      DATA ls_zwebquestionaire TYPE wd_this->element_zwebquestionaire.
    * navigate from <CONTEXT> to <ZWEBQUESTIONAIRE> via lead selection
      lo_nd_zwebquestionaire = wd_context->get_child_node( name = wd_this->wdctx_zwebquestionaire ).
    * get element via lead selection
      lo_el_zwebquestionaire = lo_nd_zwebquestionaire->get_element(  ).
    * get all declared attributes
      lo_el_zwebquestionaire->get_static_attributes(
        IMPORTING
          static_attributes = ls_zwebquestionaire ).
    ********get context data ends
    data: itab1 type TCHAR255.
    data: itab2 type TCHAR255.
    data: itab type zprint. "addition by chandani
    data fm_name type rs38l_fnam..
    clear fm_name.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME             = 'ZCPESMARTFORM'
      IMPORTING
        FM_NAME              = fm_name
      EXCEPTIONS
        NO_FORM              = 1
        NO_FUNCTION_MODULE   = 2
        OTHERS               = 3.
    CALL FUNCTION fm_name
    EXPORTING
    *   ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
       CONTROL_PARAMETERS         = CTRL
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
       OUTPUT_OPTIONS             = OUT
       USER_SETTINGS              = ' '
       NAME                       = 'test'
       ZWEBQUESTIONAIRE           = ls_ZWEBQUESTIONAIRE
    IMPORTING
    *   DOCUMENT_OUTPUT_INFO       =
       JOB_OUTPUT_INFO            = I_SSFCRESCL
    *   JOB_OUTPUT_OPTIONS         =
    TABLES                                  "addition by chandani
      itab                         = itab   "addition by chandani
    * EXCEPTIONS
    *   FORMATTING_ERROR           = 1
    *   INTERNAL_ERROR             = 2
    *   SEND_ERROR                 = 3
    *   USER_CANCELED              = 4
    *   OTHERS                     = 5
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    REFRESH LT_OTFDATA.
    LT_OTFDATA[] = I_SSFCRESCL-OTFDATA[].
    CALL FUNCTION 'SSFCOMP_PDF_PREVIEW'
      EXPORTING
        I_OTF                          = LT_OTFDATA
    * EXCEPTIONS
    *   CONVERT_OTF_TO_PDF_ERROR       = 1
    *   CNTL_ERROR                     = 2
    *   OTHERS                         = 3
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    DATA: PDF_DATA TYPE XSTRING,
          PDF_SIZE TYPE I.
    DATA: L_DUMMY TYPE STANDARD TABLE OF TLINE.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
       FORMAT                      = 'PDF'
    *   MAX_LINEWIDTH               = 132
    *   ARCHIVE_INDEX               = ' '
    *   COPYNUMBER                  = 0
    *   ASCII_BIDI_VIS2LOG          = ' '
    *   PDF_DELETE_OTFTAB           = ' '
    IMPORTING
       BIN_FILESIZE                = PDF_SIZE
       BIN_FILE                    = PDF_DATA
      TABLES
        OTF                         = LT_OTFDATA
        LINES                       = L_DUMMY
    * EXCEPTIONS
    *   ERR_MAX_LINEWIDTH           = 1
    *   ERR_FORMAT                  = 2
    *   ERR_CONV_NOT_POSSIBLE       = 3
    *   ERR_BAD_OTF                 = 4
    *   OTHERS                      = 5
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      DATA lo_nd_pdf TYPE REF TO if_wd_context_node.
      DATA lo_el_pdf TYPE REF TO if_wd_context_element.
      DATA ls_pdf TYPE wd_this->element_pdf.
      DATA lv_sources LIKE ls_pdf-sources.
    * navigate from <CONTEXT> to <PDF> via lead selection
      lo_nd_pdf = wd_context->get_child_node( name = wd_this->wdctx_pdf ).
    * get element via lead selection
      lo_el_pdf = lo_nd_pdf->get_element(  ).
    * get single attribute
      lo_el_pdf->Set_attribute(
        EXPORTING
          name =  `SOURCES`
          value = PDF_DATA ).
    endmethod.

    Hi,
    1) This error generally comes ,when your GUI version is old.Check this point & try to upgrade.
    2) Otherwise if you are running report in background,then check madhu kumar's reply in this link & try like this.
    Dump Error Raise_Exception CNTL_ERROR
    Also search OSS notes.
    Thanks
    Gourav.

  • Exception condition "HIERARCHY_NOT_FOUND" raised. -  SAPLRRHI

    Hello all,
    My issue is very similar as the one described in thread : HIERARCHY_NOT_FOUND, but not solved in the other thread.
    I tried to update the system to SP21 as told in the topic, but the issue is still present :
    when I open a query with the query designer, I'm still having the same issue. Via the RSRT transaction I get the following error message :
    Short text
        Exception condition "HIERARCHY_NOT_FOUND" raised.
    What happened?
        The current ABAP/4 program encountered an unexpected
        situation.
    Error analysis
        A RAISE statement in the program "SAPLRRHI" raised the exception
        condition "HIERARCHY_NOT_FOUND".
        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.
    Trigger Location of Runtime Error
        Program                                 SAPLRRHI
        Include                                 LRRHIU27
        Row                                     36
        Module type                             (FUNCTION)
        Module Name                             RRHI_ASOHIEDIR_READ
    I add that the query use a 0cust_sales based hierarchy, when (at the query level) I remove the time dependance the query works fine, but when I select "type of derivation" in the hierarchy display and use 0D_FC_LM1 : I get the error.
    (transaction RSTHJTMAINT--> 0D_FC_LM1 based on 0calmonth and use "first day)
    Thanks in advance for help.

    First of all, thanks Maxim to spend time on my issue, it is really appreciated (and sorry for the late answer, I did not have any computers during the week-end).
    I checked both tables (SE16 then "number of entries" button) : RSHIEDIR has 5 entries and RSRHIEDIR_OLAP has 9.
    So I go to my info-object 0cust_sales, hierarchy tab, "maintain hierarchy" button and reactivate the hierarchy (I only have one line available) and I get the message "There is no modified version for this hierarchy." When I check again the entries number in both tables : no change, (still 5 and 9).
    Please find bellow the abap code I get with the message (when I use RSRT) :
    Source Code Extract
    Line  SourceCde
        6 *"  EXPORTING
        7 *"     REFERENCE(E_S_HIEDIR) TYPE  RRHI_S_HIEDIR
        8 *"  EXCEPTIONS
        9 *"      HIERARCHY_NOT_FOUND
       10 *"----
       11   data: l_hiesid  type rrhi_hiesid,
       12         l_TMPJOIN type rs_bool.
       13
       14   CALL FUNCTION 'RRHI_HIESIDASO_GET'
       15     EXPORTING
       16       i_hiesid           = i_hiesid
       17     IMPORTING
       18       E_HIESID_ASO       = l_hiesid.
       19
       20   if l_hiesid < 0.
       21     l_tmpjoin = rs_c_false.
       22   else.
       23     l_tmpjoin = rs_c_true.
       24   endif.
       25
       26   CALL FUNCTION 'RRHI_HIEDIROLAP_READ'
       27     EXPORTING
       28       i_hiesid    = l_hiesid
       29       I_TMPJOIN   = l_tmpjoin
       30     IMPORTING
       31       E_S_HIEDIR  = E_S_HIEDIr
       32     EXCEPTIONS
       33       hierarchy_not_found = 1.
       34
       35   if sy-subrc <> 0.
    >>>>>     raise hierarchy_not_found.
       37   endif.
       38
       39 ENDFUNCTION.
    Thanks again and please let me know if you need more informations.

  • Exception condition "CONFIG_NOT_FOUND" raised.

    Hi,
    I am trying to create an Opportunity in CRM 7.0 WEB UI. The moment i click on the create opportunity, i am getting a pop window, showing the transaction types which i have created in spro. But when i am selecting any one of them, i am getting a dump error mention in the subject matter.
    I did ST22 & checked the notes on service marketplace based in the description, but could not find anything relevant to this error.
    Here is, what i am getting the dump
    Error when processing your request
    What has happened?
    The URL http://uapkb2dc.gep.ge.com:8028/sap/bc/bsp/sap/crm_ui_frame/BSPWDApplication.do was not called due to an error.
    Note
    The following error text was processed in the system CS1 : Exception condition "CONFIG_NOT_FOUND" raised.
    The error occurred on the application server uapkb2dc_CS1_28 and in the work process 1 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_BSP_DLC_CONFIGURATION~GET_CONFIG_DATA of program CL_BSP_DLC_CONFIGURATION2=====CP
    Method: GET_XML of program CL_CHTMLB_CONFIG==============CP
    Method: IF_BSP_ELEMENT~DO_AT_BEGINNING of program CL_CHTMLB_CONFIG==============CP
    Method: ONLAYOUT of program CLO247JT6QHPYQHQ33T513E8SHV84CP
    Method: %_ONLAYOUT of program CL_O247JT6QHPYQHQ33T513E8SHV84CP
    Method: DO_REQUEST of program CL_BSP_PAGE===================CP
    Method: CALL_VIEW of program CL_BSP_PAGE_BASE==============CP
    Method: CALL_VIEW of program CL_BSP_CONTROLLER=============CP
    Method: PROCESS_VIEW of program CL_BSP_WD_VIEW_CONTROLLER=====CP
    Method: DO_REQUEST of program CL_BSP_WD_VIEW_CONTROLLER=====CP
    I am not able to find the solution on this & i would appreciate of someone can help me fixing this.
    What i did is, I tried to add certain fields from "Configure Page Button" & added certain fields to right column. Since then, i am getting this error. I do not how to remove those.

    Hi,
    Go to transaction BSP_WB_CMPWB and open the compoenent BT111H_OPPT.
    Select the view you have modified and click on configuration tab. click on edit and select the custom config
    you have created.either you can remove the entries you have added which caused the dump or if you are not sure delete the
    custom configuration.This should fix the issue.
    Thanks,
    Rajiv.

Maybe you are looking for

  • Clone Stamp not working in Elements 5

    I have tried the trouble shooting sugestions on page 245 of Photoshop Elements 5, The Missing Manual by Barbara Brundage. However, I have been unable to get my clone stamp to work. Previously the clone stamp was working o.k.  Do you have any other su

  • Joining 3 tables in MySQL using PHP

    Hi, I have the following 3 sample tables: First idkey fk_second_idkey fk_third_idkey Second idkey Third idkey My SQL is SELECT * FROM First INNER JOIN Second ON First.fk_second_idkey = Second.idkey INNER JOIN Third First.fk_third_idkey = Third.idkey

  • Taglib

    The system cannot find the file specified in open taglibrary taglib : d:\tomcat\webapps\tomapp\WEB-INF\taglib.tld this is my web.xml says: <web-app> <display-name> Tag Lib </display-name> <taglib> <taglib-uri>taglib</taglib-uri> <taglib-location>/tag

  • Authorization: Pop up appears twice

    hi, I've got the following problem: A users tries to open a query in a namespace which is not allowed for him to open. The expected Pop up "Warning: You do not have the authorization for component ..." appears for the first time. After closing the Po

  • Problema en importar swf a escenario

    Tengo un flash hecho, y quiero importar a escenario un swf, pero el problema que no me lo importa. ¿Que debo hacer? ¿Tengo que configurar algo?