Short Dump error - Please Read on (Error Attached)

Hello,
while loading Master Data from R/3 to BI 7.0, all Data Packets loaded successfully, but at the end I got the following error. Can somone pls help me understand this error and what action needs to be taken.
Thanks.
SD
Runtime Errors         STORAGE_PARAMETERS_WRONG_SET
Date and Time          14.05.2008 15:27:00
Short text
     The system is configured incorrectly.
What happened?     The current program had to be terminated because of an
     error when installing the R/3 System.
     The program had already requested 1452765184 bytes from the operating
     system with 'malloc' when the operating system reported after a
     further memory request that there was no more memory space
     available.
What can you do?
     Note which actions and input led to the error.
     For further help in handling the problem, contact your SAP administrator
     You can use the ABAP dump analysis transaction ST22 to view and manage
     termination messages, in particular for long term reference.
     In the system profile, set the parameters
     -abap/heap_area_dia and
     -abap/heap_area_nondia
     to a maximum of 1452765184. To be on the safe side, reduce the value by 10,000,
     000.
     Then restart the SAP system.

This problem is based in your parameter settings (RZ11).
In this case parameters
-abap/heap_area_dia and
-abap/heap_area_nondia
have a max value which is too low to load your data.
Follow the instructions of the shortdump (probably a BC-guy will do this):
In the system profile, set the parameters
-abap/heap_area_dia and
-abap/heap_area_nondia
to a maximum of 1452765184. To be on the safe side, reduce the value by 10,000,
000.

Similar Messages

  • Can't open PDFs, Initially received runtime error,updated Reader - new error Adobe Reader has stopped working, uninstalled re-installed same error message Adobe Reader has stopped working

    Can't open PDFs, Initially received runtime error,updated Reader - new error Adobe Reader has stopped working, uninstalled re-installed same error message Adobe Reader has stopped working

    Assuming that you are in Win (which you haven't said), you can try using this tool to first remove all traces of previous versions of Reader:
    http://labs.adobe.com/downloads/acrobatcleaner.html
    Then, download the full offline Reader installer from 
    http://get.adobe.com/reader/enterprise/
    and run it immediately after restarting your computer.

  • ServerDispatcher  : sgslufread: Hard error on read, OS error = 104

    Hi Community,
    Server Configuration:
    RHEL 5 2.6.18-274.7.1.el5 x86_64 GNU/Linux
    Oracle DB: 11gR2
    Oracle WebLogic Server: 11g R1 (10.3.5)
    Oracle Fusion Middleware( Identity Management) 11g R1 (11.1.1.3)
    I have Installed OID on Weblogic Server on 2 servers with same, mentioned configuration. I have set up Advanced Replication following the link,
    http://download.oracle.com/docs/cd/E12839_01/oid.1111/e10276/oid_repwiz.htm
    After starting up the replication and verifying that every component of OID is running. I get the following Error in the oidldap log files as
    [2011-10-31T12:54:31-06:00] [OID] [NOTIFICATION:16] [] [OIDLDAPD] [host: lnxora31] [pid: 7530] [tid: 3] ServerDispatcher : sgslufread: Hard error on read, OS error = 104
    Any help on this is appreciated.
    Thanks,
    Vivek

    Having the same error. We have just about everything Oracle has labeled with "Fusion". There ore older posts with similar references to sgslufread, but they don't appear to be related.

  • *Please read* - 404 Errors when submitting a case?

    Hi everyone,
    If you are currently experiencing issues when submitting a case to BC please reach out to our chat support or private message me with the following details below so we can investigate further. 
    Adobe ID
    Exact steps to replicate the issue. e.g. TS or CS case? Attachment?
    At exactly which step produced the error? e.g. Which button was clicked?
    The exact error message? e.g. There are 2 different types of 404 pages. Capturing the URL and screenshot would help.
    If  experiencing a 404, try hit the following url and capture the details - http://www.adobe.com/cfusion/build_data.cfm This will help us to hone in on the application server that caused the error so that we can look into the logs on that server.
    What happens when you get the 404? Is the case submission lost and you have to resubmit?
    Kind regards,
    -Sidney

    Just had this happen - sending you a PM about it - grrrr...

  • Error when reading a pdf attachment file in sap inbox

    Hi all,
    I have created a RFC which sends mail from an external user to my sap inbox with attachment.
    the problem is with the PDF attachment where when i received the mail in my sap inbox in sbwp, it says that there is an error that it wasnt correctly decode.
    I used the class cl_document_bcs...
    and used the method add_attachment...
    would plz help me out

    this is my code
    FUNCTION ZMAIL_READ.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(SUBJECT) TYPE  SO_OBJ_DES
    *"     VALUE(TEXT) TYPE  STRING
    *"     VALUE(SENDER) TYPE  ADR6-SMTP_ADDR
    *"     VALUE(RECEIVER) TYPE  ADR6-SMTP_ADDR
    *"     VALUE(ATTACHMENTS) TYPE  Z_T_XATTACH OPTIONAL
    *"  EXPORTING
    *"     VALUE(MESSAGE) TYPE  STRING
    DATA: lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
          lo_bcs_send_request TYPE REF TO cl_bcs,
          l_send type ADR6-SMTP_ADDR ,
          l_rec type  ADR6-SMTP_ADDR .
    data: it_text type table of soli,
          wa_text type soli.
    DATA: lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
    DATA: lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
    DATA: lv_recipient_uid TYPE uname,
          lv_recipient_mail TYPE adr6-smtp_addr.
    data: lo_message type ref to cx_send_req_bcs value is initial,
          text_val type string.
    data: it_userlist type table of BAPIUSNAME,
          wa_userlist type BAPIUSNAME.
    data: it_selection_range type table of BAPIUSSRGE,
          wa_selection_range type BAPIUSSRGE.
    data: wa_attachment TYPE ZXATTACH,
          attachment_sub type SO_OBJ_DES.
    DATA: xstr type xstring,
          str TYPE string,
          str1 type string,
          it_str2 type table of soli,
          wa_STR2 TYPE SOLI.
    DATA: LOC_CONV TYPE REF TO CL_ABAP_CONV_IN_CE,
          wa_solix type solix,
          it_solix type table of solix,
          wa_soli type soli,
          it_soli type table of soli.
    data result TYPE boolean.
    data: i_ext(10) type c,
          i_type type soodk-objtp.
    wa_text-line = text.
    append wa_text to it_text.
    CLASS cl_bcs DEFINITION LOAD.
    try.
    lo_send_request = cl_bcs=>create_persistent( ).
    catch cx_send_req_bcs.
    endtry.
    * Message body and subject
    data: lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
    try.
    lo_document = cl_document_bcs=>create_document(
         i_type = 'RAW'
         i_text =  it_text
         i_subject = subject ).
    catch cx_send_req_bcs.
    catch cx_document_bcs.
    catch cx_address_bcs.
    endtry.
    loop at attachments into wa_attachment.
    attachment_sub = wa_attachment-file_name.
    it_str2 = wa_attachment-attach.
    loop at it_str2 into wa_str2.
      str1 = wa_str2-line.
    try.
    CALL FUNCTION 'SSFC_BASE64_DECODE'
      EXPORTING
        B64DATA                        = str1
    *   B64LENG                        =
    *   B_CHECK                        =
      IMPORTING
        BINDATA                        = xstr
    * EXCEPTIONS
    *   SSF_KRN_ERROR                  = 1
    *   SSF_KRN_NOOP                   = 2
    *   SSF_KRN_NOMEMORY               = 3
    *   SSF_KRN_OPINV                  = 4
    *   SSF_KRN_INPUT_DATA_ERROR       = 5
    *   SSF_KRN_INVALID_PAR            = 6
    *   SSF_KRN_INVALID_PARLEN         = 7
    *   OTHERS                         = 8
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    catch cx_sy_dyn_call_illegal_type.
    endtry.
    CALL METHOD CL_ABAP_CONV_IN_CE=>CREATE
          EXPORTING
            INPUT       = xstr
            ENCODING    = 'UTF-8'
    *        REPLACEMENT = '?'
    *        IGNORE_CERR = ABAP_TRUE
          RECEIVING
            CONV        = loc_CONV.
    TRY.
        CALL METHOD LOC_CONV->READ
          IMPORTING
            DATA = STR.
    CATCH CX_SY_CONVERSION_CODEPAGE.
    CATCH CX_SY_CODEPAGE_CONVERTER_INIT.
    CATCH CX_PARAMETER_INVALID_TYPE.
    CATCH CX_PARAMETER_INVALID_RANGE.
    ENDTRY.
    wa_solix-line = xstr.
    append wa_solix to it_solix.
    wa_soli-line = str.
    append wa_soli to it_soli.
    endloop.
    try.
    CALL FUNCTION 'SA_KW_RFC_FILENAME_EXT_GET'
      EXPORTING
       AREA            = 'IWBSOLAR'
        MIMETYPE        = wa_attachment-type
    IMPORTING
       EXTENSION       = i_ext
    catch cx_sy_dyn_call_illegal_type.
    endtry.
    i_type = i_ext.
    if i_ext <> 'pdf'.
    try.
      lo_document->add_attachment(
      EXPORTING
        i_attachment_type = i_type
        i_attachment_subject = attachment_sub
        i_att_content_hex = it_solix ).
           CATCH cx_document_bcs.
    endtry.
    clear wa_solix.
    refresh it_solix.
    else.
    TRY.
      CALL METHOD LO_DOCUMENT->ADD_ATTACHMENT
        EXPORTING
          I_ATTACHMENT_TYPE     = i_type
          I_ATTACHMENT_SUBJECT  = attachment_sub
    *      I_ATTACHMENT_SIZE     =
    *      I_ATTACHMENT_LANGUAGE = SPACE
          I_ATT_CONTENT_TEXT    = it_soli
    *      I_ATT_CONTENT_HEX     =
    *      I_ATTACHMENT_HEADER   =
       CATCH CX_DOCUMENT_BCS .
      ENDTRY.
    ENDIF.
    endloop.
    try.
    lo_send_request->set_document( lo_document ).
    CATCH cx_send_req_bcs.
    endtry.
    wa_selection_range-PARAMETER = 'address'.
    wa_selection_range-field = 'e_mail'.
    wa_selection_range-sign = 'I'.
    wa_selection_range-option = 'EQ'.
    wa_selection_range-low = receiver.
    append wa_selection_range to it_selection_range.
    try.
    CALL FUNCTION 'BAPI_USER_GETLIST'
    * EXPORTING
    *   MAX_ROWS              = 0
    *   WITH_USERNAME         = ' '
    * IMPORTING
    *   ROWS                  =
    TABLES
        SELECTION_RANGE       = it_selection_range
    *   SELECTION_EXP         =
        USERLIST              = it_userlist
    *   RETURN                =
    catch cx_sy_dyn_call_illegal_type.
    endtry.
    read table it_userlist into wa_userlist index 1.
    try.
      lo_sender = cl_cam_address_bcs=>create_internet_address( sender ).
      lo_send_request->set_sender(
         EXPORTING
         i_sender = lo_sender ).
    catch cx_send_req_bcs.
    catch cx_document_bcs.
    catch cx_address_bcs.
      return.
    endtry.
    try.
        lo_recipient = cl_sapuser_bcs=>create( wa_userlist-USERNAME ).
        lo_send_request->add_recipient(
           EXPORTING
             i_recipient = lo_recipient ).
    *         i_express = 'X' ).
      catch cx_send_req_bcs.
      catch cx_document_bcs.
      catch cx_address_bcs.
    endtry.
    try.
    ** Send email
         LO_SEND_REQUEST->SET_SEND_IMMEDIATELY( 'X' ).
         lo_send_request->send( EXPORTING
         i_with_error_screen = ' '
         RECEIVING
         result = result ).
         COMMIT WORK.
    CATCH CX_DOCUMENT_BCS.
    CATCH CX_SEND_REQ_BCS INTO lo_message.
    CATCH CX_ADDRESS_BCS.
    text_val = lo_message->IF_MESSAGE~GET_TEXT( ).
    endtry.
    if result = 'X'.
      message = 'E-Mail sent'.
    else.
      message = 'E-Mail not sent'.
    endif.
    ENDFUNCTION.

  • Short dump in VF01 transaction with error id SAPSQL_ARRAY_INSERT_DUPREC

    Hi,
    We are getting shortdump SAPSQL_ARRAY_INSERT_DUPREC when running VF01 transaction.
    The ABAP/4 Open SQL array insert results in duplicate database records.
    The termination occurred in the ABAP/4 program "SAPLV60U " in
    "VBUK_BEARBEITEN".
    Line Number 536
      >>>>>   INSERT vbuk FROM TABLE da_xvbuki.
    Could some one please reply me when you have the time.
    Regards,
    Vishal
    Moderator Message: De-prioritized.
    Edited by: kishan P on Aug 29, 2011 2:05 PM

    Duplicate records is being tried to enter in table VBUK, which is not allowed due to primary key concept. Hence the error.
    For details, you can get help of the technical person in your team

  • Short Dump when loading data (Runtime Error ITAB_DUPLICATE_KEY) Urgent Pls

    Dear Guru
    We are loading data into (2 ODS and ! Cube) from one Infopkg.
    When i do delta update it throws following error
    (for one ODS it is green) and for another ODS and CUBE it is red.
    Runtime Error          ITAB_DUPLICATE_KEY                                                                               
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "GP229LMXTFYDS5X6UC3ND03NIV2" had to be terminated 
    because one of the                                                         
    statements could not be executed.
    Please suggest me some solution, i am with client..its a serious issue now.
    Hope you understand
    Thanks in Adv
    Dev

    hi,
    hope if you retrigger the load it would be successful.
    force the request status to red and delete from the all target and retrigger the load.
    else chk if in the detail tab u could find the data upto PSa. if so delete the red request alone and pull the records to tohose records from PSA.
    Ramesh

  • SHORT DUMP - CALL_FUNCTION_REMOTE_ERROR - Please HELP!!

    Hi gurus,
    I have two scenarios in PI,
    1- RFC to JDBS Asynchronous --> runs OK, insert into external table.
    In R3 y call the function at the following:
    CALL FUNCTION 'Z_RFC_SAP_TO_SRI' IN BACKGROUND TASK DESTINATION 'RFC_SENDER_DS'
    2- RFC to JDBS Synchronous scenario--> DUMP "CALL_FUNCTION_REMOTE_ERROR"
    In R3 y call the function at the following:
    CALL FUNCTION 'Z_RFC_SRI_TO_SAP' DESTINATION 'RFC_SENDER_DS'.
    The RFC user in RFC adapter is a common dialog user, but I think if the first scenario it works also due works in the second.
    In PI Moni I have :
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Inbound Message
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapterFramework</SAP:Category>
      <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Communication Channel RFC adaper have the following:
    call to messaging system failed: com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException caused by: com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException
    Communication Channel JDBC receiver hace the following:
    Error when executing statement for table/stored proc. 'IFSS002' (structure 'Statement'): com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near the keyword 'FROM'.
    Please any suggestion? I populate in some forums and I cannot solve this error. I'm not sure that message mapping to SELECT synchronous JDBC is correct but I supose RFC function runs correctly but response would be empty and moni shows a red flag. Could be a problem with the SELECT?
    I'm confused, I don't know if the problem is in RFC or in mapping synchronous SELECT. I have follow this blog:
    JDBC Receiver Adapter -- Synchronous Select – Step by Step
    PD: If add at the second rfc "in background task" works fine but wothout response. The problem is when function runs synch.
    Best regards!!
    Edited by: Pablete on Mar 1, 2012 3:03 PM

    My RFC request has only two fields, primary key from SQL table.
      <?xml version="1.0" encoding="UTF-8" ?>
    <rfc:Z_RFC_SRI_TO_SAP xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
               <TIPO_EV>A</TIPO_EV>
      </rfc:Z_RFC_SRI_TO_SAP>
    TIPO_EV is key1 and key2 has a constant. If I take this example:
    SELECT col1,col2,col3 FROM dbTableName  WHERE key1 = field1 AND key2 = field2
    How can I mapping col1, col2, col3 in JDBC request  if in RFC request I have only two parameters wich are connected with key fields???
    PD: in mapping request and response I'm using RFC directly, not a message type.
    Edited by: Pablete on Mar 1, 2012 9:55 PM

  • Utmpx error Kernel Reader uptime error

    I have 12k System controllers both with the same issue; a black splat on the Kernel Reader->System block. The log file indicates:
    warning Dec 15 03:01:49 agent data update error: .iso.org.dod.[...].kernelReader.load.uptime
    warning Dec 15 03:01:49 agent data update error: Unable to get boot time from utmpx
    Anyone experience this before? Any suggestions welcome.
    Regards,
    Jeff Grabell

    Hi Jeff,
    Does the regular Solaris "uptime" command work on those hosts? I think uptime (and the SunMC kr package that gets the data for that part of Kernel Reader) get their information from /var/adm/utmpx(wtmpx?) files. Have you done anything on those boxes that would erase/truncate those files?
    I'm just guessing here - I've never seen your problem before. Please post the solution if you figure it out.
    Regards,
    Mike Kirk
    Standard disclaimer: I am an employee of Halcyon (www.HalcyonInc.com)

  • I cannot access my pictures. The error message reads "an error Was encountered on your sd card".  I've tried restarting the phone and taking sd card out.

    I Hope to not lose my information. Started out of the blue.

    HI BonsaiKo,
    Thank you for visiting Apple Support Communities.
    It sounds like the Chrome application is unresponsive on your Mac. The rainbow disc you see is called the "wait cursor," which spins when your computer is processing something.
    If the cursor does not stop spinning, you may have to force Chrome to quit using these steps:
    OS X: How to quit an unresponsive application using Force Quit
    Using the Force Quit feature of OS X makes an application close, even when it is not responsive.
    Important: Normally you should not need to force quit an app to close it. When an app is forced to quit, any unsaved changes to open documents are not saved, so try these methods to normally close the app first:
    Choose Quit from the app menu. For example, in Safari, choose Safari > Quit Safari.
    Choose Quit by right-clicking or control-clicking on an app's icon in the Dock.
    Thank you for participating in Apple Support Communities.
    Best Regards,
    Jeremy

  • Custom error message in user exit is giving Short dump

    Hi All,
    We have a scenario where in if any user try to create/Change/Delete particular types of contract in SAP system we have to issue error message
    saying ZIN/ZIR contract creation/Change/Deletion is blocked in SAP. This has to be done from the web application. So we are putting below code
    in user exit MV45AFZZ in the form USEREXIT_SAVE_DOCUMENT_PREPARE.
    CONSTANTS: lc_vbcpic01 TYPE sy-uname VALUE u2018VBCPIC01u2019, u201CWeb application user ID
             lc_zin           TYPE vbak-auart VALUE u2018ZINu2019,
                         lc_zir            TYPE vbak-auart VALUE u2018ZIRu2019,
                         lc_text(32)    TYPE c VALUE u2018Check long text for more detailsu2019.
    DATA: l_uname TYPE sy-uname.
    CLEAR: l_uname.
    MOVE sy-uname TO l_uname.
    *If user ID is not the Web application ID then block the creation/Change/Deletion
    IF   l_uname NE lc_vbcpic01
    AND ( vbak-auart EQ lc_zin
    OR    vbak-auart EQ lc_zir ).
    MESSAGE e830(zv) WITH lc_text.
    ENDIF.
    This code is working fine while creating/Changing the contract i.e. Giving us error message so that user wonu2019t be able to create/change the contract.
    But when we delete the contract from VA42, Control is coming to this message statement and is giving Short dump. Below is the error analysis of the dump.
    Error Analysis:
    During "Exit Command" processing, the program tried to send a " " message.
    This is not allowed at this point in processing.
    The program had to be terminated.
    Screen name.............. "SAPMV45A"
    Screen number............ 4001
    If any one has come across such scenario/any work around for this problem please let me know your inputs. Your inputs are highly appreciated.
    I am working on 4.6C version of SAP.
    Note: When i issue information/Warning message contract is getting deleted after displaying the message.
    Thanks,
    Vinod.

    I exactly replicated the same in DELETE_DOCUMENT also
    I am getting the Dump. I tried with exit also , but it continued and deleted. To avoid deletion we have to use Leave program or LEAVE TO CURRENT TRANSACTION.
    Delete Function is Defined as EXIT command. so it is not possible to give error message. To convice you i just copied demo program and raised the error message.
    it is also giving the dump.
    copy the demo program DEMO_DYNPRO_AT_EXIT_COMMAND and make this change , information to error .
    MODULE cancel INPUT.
      MESSAGE e888(sabapdocu) WITH text-001 ok_code input1 input2.
      IF ok_code = 'CANCEL'.
        CLEAR ok_code.
        LEAVE PROGRAM.
      ENDIF.
    ENDMODULE.
    and see...

  • Short dump error while loading through infopackage

    Hi Experts
    When iam executing the infopackage it is taking (showing the Yellow staus)very long time
    where as the no of records is lesss than 3000....
    I made a check in ST22 it shows a short dump which is stating "RAISE_EXCEPTION" error
    and still the process is in Yellow status in RSMO T.Code
    Any help on this
    Thanks Much

    check the status of the background job , if job has faild
        the reasion may be because of chaing in the extract structure in the source system.
        so we can replicate the data source to resolve this issue.
       And also make a check with extract structure using the T.coad RSA3, to find
      no of records and to find out any chainges in the structure .
       prasad.

  • Run time error (short dump) executing program SCAN_BW_REFERENCES in SE80

    Hi experts,
    I am not an ABAPer, or Basis person, rather a hybrid functional/technical Key User for our Business Warehouse system (BW 3.5, Netweaver 2004).  We have a user who cannot save BW reports to his favorites and he is getting a number of error messages.  OSS note 887002 seems to address this and indicates that I should run program SCAN_BW_REFERENCES from transaction SE80.  The program is supposed to perform the checks for BW objects assigned to the Favorites and identify situations causing terminations in BW frontend applications.  I have attempted to execute this program on several occassions and always get run-time errors (short dumps).  Here is the error:
    Runtime Errors         TSV_TNEW_PAGE_ALLOC_FAILED
    Date and Time          2008.09.17 19:00:49
    ShrtText
         No storage space available for extending an internal table.
    What happened?
         You attempted to extend an internal table, but the required space was
         not available.
    I have been informed by our Basis group that I have reached a memory limit, but they will not extend the memory paramters.  Any ideas on a work-a-round or a way to minimize the number of records this program is pulling in, in an attempt to get it to run?
    Thanks,
    HC

    Hi,
    The only response I got from Basis was that they would not extend the memory parameters because they are for all users in the system.  Not sure what that means. 
    The full dump is too large to paste here.  I think what I will do is to see if our ABAPers can create a modified version of this program to include selection by user.  Typically it is for only one user that I need to run the program, and that surely would fall within the space requirements.
    Thanks for your answer.
    //HC

  • Short dump - reading from roll back segment

    Hi All,
    I am getting this short dump for few loads.The error is :
    "(FUNCTION)", or declared in the procedure's RAISING clause.                        
    To prevent the exception, note the following:                                       
    Database error text........: "ORA-01555: snapshot too old: rollback segment         
    number 108 with name "PRS_77" too small"                                           
    Did any body got this eror:If so,could you please explain why it's comming and how to fix this permanently?
    Thanks
    Manish                                                        

    The DBA probably needs to increase the size of the Rollback segment and/or tablespace.
    Google the error message for more info. Here's a link to Jonathan Lewis's (well known Oracle author)site.
    http://www.dba-oracle.com/t_ora_01555_snapshot_old.htm
    Added the link to J Lewis site.
    Message was edited by:
            Pizzaman

  • Illustrator CC PDF opens in Reader with error message

    When I save an Illustrator file as a PDF, Adobe Reader users get an error message when opening the file – "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem." Why is this happening?

    My apologies. We should have been more specific with our question.
    We should have asked this:
    Has anyone else seen this message in Acrobat Reader when opening PDFs
    created in Illustrator CC since the most current update (v.17.1.0)?  If so,
    would you be so kind as to reply with any general or specific information,
    or even thoughts, as to what might be causing it in this newest version of
    Illustrator?
    The error message reads:
    "An error exists on this page. Acrobat may not display the page correctly.
    Please contact the person who created the PDF document to correct the
    problem."  (Oddly, the message says "Acrobat," even though the application
    it appears in is Reader.)
    The message appears to Adobe Reader users (current version v.11.0.06,
    running in Mavericks); and started appearing after we updated Illustrator.
    The file content (except for one minor type revision), the PDF settings, the
    Adobe Reader users (clients), etc., haven't changed since before then. There
    were no issues with PDFs created in the past from the same file, but when we
    created new PDFs, our clients received the error message upon opening them.
    The files do open, and seem to be fine otherwise; but the recurring message
    does annoy our clients, and erodes our credibility as digital designers.
    We have tried several strategies to resolve this problem saving the PDFs
    with different settings; altering the file format of the linked image files;
    embedding the images files; outlining the type; using alternative typefaces;
    expanding appearances of objects; etc. anything we could think of to
    simplify the file or remove an offending file component all to no avail.
    We even opened the PDFs in Acrobat XI Pro CC (v. 11.0.06) and resaved with
    new file names, and were still met with the same difficulty.
    Other details: sRGB color profile in AI file and images; 3 - 11 x 8.5" art
    boards; PNG-24 images; PDF settings used: Illustrator Default, PDF/X-4:2008,
    Smallest File Size, High-Quality Print, plus a few custom settings from
    printers and developers
    So . . . We were hoping that if anyone had encountered this same message,
    they might have a clue as to what it relates. Any insight would allow us to
    troubleshoot further with that information in mind.
    Many thanks in advance.

Maybe you are looking for