Raised the exception condition"OUTPUTFIELD_TOO_SHORD"

Hi Folks,
I developed report on BOM explode. i sheduled my program in background mode and it is sucessfully completed. the movement i press 'print' to see the output its getting dumped.
the terminationed occured in prg'SAPLBTCH'.
1)raised the exception condition"OUTPUTFIELD_TOO_SHORD"
2)length of field RESULT is too short.
could you tell me i need to apply note on this or either the logic of my report may be inefficent ?( becoz  my report taking morethan 1000 sec to execution).
thanks in advance
srini vancha

Hi Srinivas,
Try this, If you are displaying any Icons or texts, increase the lenght and then check .
Thanks
Lakshman

Similar Messages

  • Raised the exception condition "NO_DBROUTID_FOUND".

    Hi All,
    Am trying to load the transaction data from flat file to bI 7.0.
    upto PSA level data will loaded perfectly. but while am loading data to infocube through DTP am getting short dump with error message saying.
    "A RAISE statement in the program "SAPLRSDGUTILITIES" raised the exception condition "NO_DBROUTID_FOUND".
    if g_sx_p-s_viobj-dbroutid = space
    raise no_dbroutid_found.
    endif.
    could you please let me know the reason why am getting this short dump and solution for the above.
    am loading below flat file data.
    ZD_PROD     CHANNEL     QUANTITY     UNIT     REVENUE     CURRENCY
    P1     C1     10     KG     200     USD
    P2     C2     10     KG     200     USD
    P3     C3     10     KG     200     INR
    P4     C4     10     KG     200     INR
    Thanks yours support.
    Regards
    Yogee

    Did you use any routine for mapping in DTP?What infoobjects are you using???
    REgards

  • Tcode VF02 RAISE statement in the program "SAPLCSS3" raised the exception.

    Hi,
          I am getting a short dump in my smartform attached with vf02. For few of invoice no. its working perfectly but giving dump in few invoice no.
    Below is short dump statement. Pls guide me for this issue.
    A RAISE statement in the program "SAPLCSS3" raised the exception
    condition "CALL_INVALID".
    Since the exception was not intercepted by a superior
    program, processing was terminated.
    Short description of exception condition:
    invalid call
    Regards,
    Ranu`
    Edited by: ranu sharma on Feb 6, 2010 2:55 PM

    Hi Dipesh,
    In background SAP GUI functionalities are not available.
    This question has been asked many times on scn:
    CNTL_ERROR
    CNTL_ERROR while running a report in background mode
    Regards,
    Ashvin

  • EXIT_SAPLCORF_008 - how to raise the exception "PREDEC_NOT_CONFIRMED "

    Hi,
    I am using the user exit " EXIT_SAPLCORF_008 "  to the check the previous activity is confimed or not.
    so i want to raise the exception "PREDEC_NOT_CONFIRMED " , Because this exit comes under function module  "CO_RU_CHECK_OPERATION ".
    I am not able to raise the Exception . Plz guide me how to go ahead.
    Exception List - CO_RU_CHECK_OPERATION
    CONFIRMATION_NOT_ALLOWED     Confirmation not allowed
    NEW_STATUS_NOT_POSSIBLE     Confirmation not possible because of status management
    OPERATION_NOT_FOUND     Operation not found
    OPERATION_NOT_SELECTABLE     Operation cannot be selected because of parameter setting
    ORDER_DATA_MISSING     Order data was not yet supplied
    PREDEC_NOT_CONFIRMED     Predecessor of operation not confirmed
    PRT_LOCKED     Production resource/tool is frozen.
    Regards,
    Rani

    Hi,
    I am using the user exit " EXIT_SAPLCORF_008 "  to the check the previous activity is confimed or not.
    so i want to raise the exception "PREDEC_NOT_CONFIRMED " , Because this exit comes under function module  "CO_RU_CHECK_OPERATION ".
    I am not able to raise the Exception . Plz guide me how to go ahead.
    Exception List - CO_RU_CHECK_OPERATION
    CONFIRMATION_NOT_ALLOWED     Confirmation not allowed
    NEW_STATUS_NOT_POSSIBLE     Confirmation not possible because of status management
    OPERATION_NOT_FOUND     Operation not found
    OPERATION_NOT_SELECTABLE     Operation cannot be selected because of parameter setting
    ORDER_DATA_MISSING     Order data was not yet supplied
    PREDEC_NOT_CONFIRMED     Predecessor of operation not confirmed
    PRT_LOCKED     Production resource/tool is frozen.
    Regards,
    Rani

  • How to raise the exception in function module

    Dear abaper's.
                   I am creating a Function module .In that in' EXCEPTION' Tab i am giving
    3 exception .1.NO_DATA_FOUND 2.NO_PRINTER_FOUND 3.SMARTFORM_INTERFACE_NOT_FOUND.
    In my coding if this condtion matches i want to raise this exception.how can i do this in my coding .can any one suggest me..
    advance thanks,
    Warm regards,
    Veera

    Hi,
    if that condition is not satisfied,and u didn't handle that exception while calling function module then in the runtime error u will get the text as the description of the exception in function module definition.
    rgds,
    bharat.

  • How to raise the exception

    how to rise exception when the cursor returns no data,suppose
    begin
    for rec in (select * from scott.emp e
    where exists ( select 1 from scott.emp where e.deptno=30 ))
    loop
    dbms_output.put_line(rec.ename);
    end loop;
    exception
    when no_data_found then
    dbms_output.put_line('no such employee');
    end;now when other deptno(which is not there in table) given ,the exception should be raised.
    how to do this

    Hi,
    What about this?
    DECLARE
       v_numrecords NUMBER;
       no_matching_emp EXCEPTION;
    BEGIN
       SELECT COUNT(*) INTO v_numrecords FROM scott.emp e WHERE e.deptno = 30;
       IF v_numrecords = 0 THEN
          RAISE no_matching_emp;
       END IF;
       -- Here comes your loop
       FOR rec IN (SELECT * FROM scott.emp e WHERE e.deptno = 30) LOOP
          dbms_output.put_line(rec.ename);
       END LOOP;
    EXCEPTION
       WHEN no_matching_emp THEN
          dbms_output.put_line('no such employee');
    END;Regards,
    Edited by: Walter Fernández on Mar 3, 2009 11:29 AM - Adding loop...

  • Which column raised the exception?

    SQL> desc test
    Name Null? Type
    A NUMBER(5)
    B VARCHAR2(10)
    SQL> insert into test values(1,'abcdefghijkl');
    insert into test values(1,'abcdefghijkl')
    ERROR at line 1:
    ORA-01401: inserted value too large for column
    How do I know that which column/value raised this exception? In this case, is there a way to identify that the column "B" has raised this exception?

    What version of oracle are you running? Here is a run on 10.2
    SQL> desc afb
    A VARCHAR2(1)
    B VARCHAR2(2)
    C VARCHAR2(3)
    SQL> select version from v$instance;
    VERSION
    10.2.0.1.0
    SQL> insert into afb values ('A','BBB','CC');
    INSERT INTO AFB VALUES ('A','BBB','CC')
    ERROR at line 1:
    ORA-12899: value too large for column "TEST"."AFB"."B" (actual: 3, maximum: 2)
    The error message tells you. In prior versions you could tell in pro from the indicator variable and OCI had a similar method, but in straight SQL you were more or less out of luck.

  • "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.

  • 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

  • Exception condition "INTERNAL_ERROR" raised

    Runtime Errors         RAISE_EXCEPTION
    Date and Time          21.08.2014 21:53:43
    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 "SAPLCEI0" raised the exception
         condition "INTERNAL_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" " "
        "SAPLCEI0" or "LCEI0U30"
        "VC_I_GET_CONFIGURATION"
        or
        "SAPLCEI0" "INTERNAL_ERROR"
        or
        "SAPMSSY1 " "INTERNAL_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... "sap01717"
        Network address...... "10.61.89.105"
        Operating system..... "Linux"
        Release.............. "2.6.40-0.8-default"
        Hardware type........ "x86_64"
        Character length.... 16 Bits
        Pointer length....... 64 Bits
        Work process number.. 15
        Shortdump setting.... "full"
        Database server... "sap01716"
        Database type..... "ORACLE"
        Database name..... "QWT"
        Database user ID.. "SAPDAT"
        Terminal................. "10.61.31.114"
        Char.set.... "C"
        SAP kernel....... 720
        created (date)... "Mar 17 2013 18:46:25"
        create on........ "Linux GNU SLES-11 x86_64 cc4.3.4 use-pr121116"
        Database version. "OCI_102, 11.2.0.3.0, V1, default"
        Patch level. 420
        Patch text.. " "
        Database............. "ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*, ORACLE 11.2.*.*.*"
        SAP database version. 720
        Operating system..... "Linux 2.6, Linux 3"
        Memory consumption
        Roll.... 0
        EM...... 16759232
        Heap.... 0
        Page.... 16384
        MM Used. 14978448
        MM Free. 1777544
    User and Transaction
        Client.............. 500
        User................ "RFC_TAULIA"
        Language Key........ "E"
        Transaction......... " "
        Transactions ID..... "53F6515E320E5BBBE10000000A3D5969"
        Program............. "SAPLCEI0"
        Screen.............. "SAPMSSY1 3004"
        Screen Line......... 2
        Information on caller of Remote Function Call (RFC):
        System.............. "########"
        Database Release.... 720
        Kernel Release...... 720
        Connection Type..... "E" (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
        Call Type........... "synchronous and non-transactional (emode 0, imode 0)"
        Inbound TID.........." "
        Inbound Queue Name..." "
        Outbound TID........." "
        Outbound Queue Name.." "
        Client.............. "###"
        User................ "############"
        Transaction......... " "
        Call Program........."SAPJCo30"
        Function Module..... "/TAULIA/CT_RFC_BUS_DOC_GET"
        Call Destination.... "SAPR3"
        Source Server....... "SWDETDOLPHPODD"
        Source IP Address... "10.61.31.114"
        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 "SAPLCEI0" - in
         "VC_I_GET_CONFIGURATION".
        The main program was "SAPMSSY1 ".
        In the source code you have the termination point in line 259
        of the (Include) program "LCEI0U30".

    Hi Arun,
    the exception INTERNAL_ERROR of function module VC_I_GET_CONFIGURATION hasn't been caught, which leads to a short dump.
    Check, where INTERNAL_ERROR is raised in your system In our system the only remaining code is after call of function module CUCQ_GET_CONFIGURATION_PARAMS.
    Please try to debug, why this exception is raised.
    Regards,
    Klaus

  • 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 "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 "PERS_KEY_LOCKED" raised

    Hi All, I'm in entry stage of SD Module, Please help me, I & my computer stuck with a system error
    --Unable to lock Table/view V_TVAK. while going for tcode VOV8 as well as Path.
    --Unable to lock table/view V_TVKO while difining Sales Orgn.
    --Unable....................view T001 while copying co. code.
    not only this 3 but all the screen.
    Unable to open a screen neithor through tcode nor through path, not a single one.
    System suggests some solution but I'm unable to understand it. Please any one guide me. Definitily there is not only reward, award also will nurture. can send solution to my mail Id: [email protected]
    Thanks,
    Sarat
    <b>System shows the error details:</b>
    Run time errors: RAISE_EXCEPTION
    Exception condition "PERS_KEY_LOCKED" raised
    <b>Error analysis:</b>
    A RAISE statement in the program "CL_PERS_ADMIN=============CP" raised the exception Condition "PERS_KEY_LOCKED"
    Since the exception was not intercepted by a superior program in the hierarchy, processing was terminated.
    <b>How to correct the error:</b>
    You may able to find an interim solution to the problem in the SAP note system. If you have access to the note system yourself, use the following search criteria:
    "RAISE_EXCEPTION" C
    "CL_PERS_ADMIN=================CP" or "CL_PERS_ADMIN=================CM02"
    "SET_DATA"
    or
    "CL_PERS_ADMIN=================CP" "PERS_KEY_LOCKED"
    or
    "RMOT001K" "PERS_KEY_LOCKED"

    Hi,
    Take a look at the following OSS Notes.
    https://service.sap.com/sap/support/notes/574285
    Hope this helps
    Cheers
    VJ

  • How to handle message "Exception condition "CNHT_ERROR_PARAMETER" raised"?

    Hi,
        Whenever I try to open Web Dynpro Comp./Intf->Views using transaction SE80, I am getting a short dump showing message "Exception condition 'CNHT_ERROR_PARAMETER' raised'. In the analysis, I have found that A RAISE statement in the program "CL_GUI_HTML_VIEWER============CP" raised the exception condition "CNHT_ERROR_PARAMETER". Since the exception was not intercepted by a superior program, processing was terminated. Can anyone help to get rid of this problem?
    Thanks & Regards.
    Deepjyoti

    hi,
    Looks like, ITS services are not fully active or not compeltely published.
    Check whether webgui services are active in SICF.(test service).
    Also, check all the ICM parameters.
    Regards
    Srinivas

Maybe you are looking for

  • How do I get Firefox 5 to work with FAFSA data entry web site @ed.gov which only allows Firefox 3.6 or earlier?

    Site blocks usage of Firefox 4 and Firefox 5. Is there a way to get Firefox 5 to tell the site I'm using Firefox 3.6? Can I use a portable version of Firefox 3.6 without scrambling Firefox 5 (I don't like this option because there isn't an official p

  • Wierd HDV to SD DVD anamorphic problem

    I've read many articles on this workflow, but I haven't seen anyone with my particular problem yet. I have an HDV 108060i FCP project. Footage captured from a Canon HV30 and some graphics done in Motion. The editing process went great. I output my fi

  • SAP BI and BO Content Administration workbench problem

    Dear All, while connecting  SAP BI 7.0 to BO 3.1 . I am getting the following error. Content Administration Workbench: At tab RFC Destination > I choose RFC XXXXX and try to verify BOE definition. Verify BOE definition. Destination status Destination

  • ColdFusion

    Can Crystal Reports XI be used with ColdFusion?  I have seen some people who have said no and that Crystal Reports offers no support for ColdFusion and then I have seen people who have said yes, using cfreport. I am currently using Crystal Reports Se

  • WorkCenter 3225 delete destination list

    Hi allCan't find how to delete destination list from printer?When you want to scan to PC you should enter it, by default it's name of the computer, where EPM installed and configured. Unfortunatelly I didn't find any clear documentation about network