Runtime error:ABAP program lines are longer than the internal table

Hi all,
Below is the code I have written,when Iam running it Iam getting
'ABAP program lines are longer than the internal table' runtime error.How can I resolve it.
REPORT  ZTEST1  NO STANDARD PAGE HEADING LINE-SIZE 255.
TABLES:MARC,CDHDR,CDPOS.
TYPE-POOLS:SLIS.
DATA:HEADER TYPE SLIS_T_FIELDCAT_ALV,
     WA TYPE SLIS_FIELDCAT_ALV,
     LAYOUT TYPE SLIS_LAYOUT_ALV.
TYPES:BEGIN OF MARC_TY,
        MATNR LIKE MARC-MATNR,
        WERKS LIKE MARC-WERKS,
        EKGRP LIKE MARC-EKGRP,
        MINBE LIKE MARC-MINBE,
        EISBE LIKE MARC-EISBE,
        MABST LIKE MARC-MABST,
       END OF MARC_TY.
TYPES:BEGIN OF MATNR1_TY,
        MATNR1 LIKE CDHDR-OBJECTID,
      END OF MATNR1_TY.
TYPES:BEGIN OF CDHDR_TY,
         OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
         OBJECTID   LIKE CDHDR-OBJECTID,
         CHANGENR   LIKE CDHDR-CHANGENR,
         USERNAME   LIKE CDHDR-USERNAME,
         UDATE      LIKE CDHDR-UDATE,
        END OF CDHDR_TY.
TYPES:BEGIN OF CDPOS_TY,
         OBJECTCLAS LIKE CDPOS-OBJECTCLAS,
         OBJECTID   LIKE CDPOS-OBJECTID,
         CHANGENR   LIKE CDPOS-CHANGENR,
         TABNAME    LIKE CDPOS-TABNAME,
         FNAME      LIKE CDPOS-FNAME,
         CHNGIND    LIKE CDPOS-CHNGIND,
         VALUE_NEW  LIKE CDPOS-VALUE_NEW,
         VALUE_OLD  LIKE CDPOS-VALUE_OLD,
        END OF CDPOS_TY.
**************TABLE TYPES********************************************
TYPES: MARC_TAB   TYPE TABLE OF MARC_TY,
       MATNR1_TAB TYPE TABLE OF MATNR1_TY,
       CDHDR_TAB  TYPE TABLE OF CDHDR_TY,
       CDPOS_TAB  TYPE TABLE OF CDPOS_TY.
*******************INTERNAL TABLES************************************
DATA:MARC_ITAB   TYPE MARC_TAB,
     MATNR1_ITAB TYPE MATNR1_TAB,
     CDHDR_ITAB  TYPE CDHDR_TAB,
     CDPOS_ITAB  TYPE CDPOS_TAB.
****************WORK AREAS********************************************
DATA:MARC_WA   TYPE MARC_TY,
     MATNR1_WA TYPE MATNR1_TY,
     CDHDR_WA  TYPE CDHDR_TY,
     CDPOS_WA  TYPE CDPOS_TY.
*******************SELECTION-SCREEN***********************************
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-000.
  PARAMETERS:PLANT LIKE MARC-WERKS.
  SELECT-OPTIONS:MATERIAL FOR MARC-MATNR.
  SELECT-OPTIONS:DATE FOR CDHDR-UDATE.
SELECTION-SCREEN END OF BLOCK B1.
START-OF-SELECTION.
SELECT MATNR
        WERKS
        EKGRP
        MINBE
        EISBE
        MABST
        FROM MARC INTO TABLE MARC_ITAB
        WHERE MATNR IN MATERIAL
        AND WERKS = PLANT.
  CHECK MARC_ITAB[] IS NOT INITIAL.
  LOOP AT MARC_ITAB INTO MARC_WA.
   MATNR1_WA-MATNR1 = MARC_WA-MATNR.
   APPEND MATNR1_WA TO MATNR1_ITAB.
   CLEAR MATNR1_WA.
ENDLOOP.
CHECK MATNR1_ITAB[] IS NOT INITIAL.
SELECT OBJECTCLAS
        OBJECTID
        CHANGENR
        USERNAME
        UDATE
        FROM CDHDR INTO TABLE CDHDR_ITAB
        FOR ALL ENTRIES IN MATNR1_ITAB
        WHERE OBJECTCLAS = 'MATERIAL'
        AND OBJECTID = MATNR1_ITAB-MATNR1
        AND UDATE IN DATE.
CHECK CDHDR_ITAB[] IS NOT INITIAL.
SORT CDHDR_ITAB[]  DESCENDING BY OBJECTID  CHANGENR.
DELETE ADJACENT DUPLICATES FROM CDHDR_ITAB[] COMPARING OBJECTID.
SELECT OBJECTCLAS
       OBJECTID
       CHANGENR
       TABNAME
       FNAME
       CHNGIND
       VALUE_NEW
       VALUE_OLD
       FROM CDPOS INTO CORRESPONDING FIELDS OF TABLE CDPOS_ITAB
       FOR ALL ENTRIES IN CDHDR_ITAB
       WHERE OBJECTCLAS = CDHDR_ITAB-OBJECTCLAS
       AND OBJECTID = CDHDR_ITAB-OBJECTID
       AND CHANGENR = CDHDR_ITAB-CHANGENR
       AND TABNAME  = 'MARC'
       AND FNAME    IN ('MINBE','EISBE','MABST','LVORM')
       AND CHNGIND  = 'U'.
CHECK CDPOS_ITAB[] IS NOT INITIAL.
*LOOP AT CDPOS_ITAB INTO CDPOS_WA.
WRITE: / CDPOS_WA-OBJECTCLAS,
         CDPOS_WA-OBJECTID,
         CDPOS_WA-CHANGENR,
         CDPOS_WA-TABNAME,
         CDPOS_WA-FNAME,
         CDPOS_WA-CHNGIND,
         CDPOS_WA-VALUE_NEW,
         CDPOS_WA-VALUE_OLD.
*ENDLOOP.
WA-SELTEXT_L = 'OBJECTCLAS'.
WA-COL_POS   = '1'.
WA-FIELDNAME = 'OBJECTCLAS'.
WA-TABNAME   = 'CDPOS_ITAB'.
WA-OUTPUTLEN = '15'.
APPEND WA TO HEADER.
CLEAR WA.
WA-SELTEXT_L = 'OBJECTID'.
WA-COL_POS   = '2'.
WA-FIELDNAME = 'OBJECTID'.
WA-TABNAME   = 'CDPOS_ITAB'.
WA-OUTPUTLEN = '20'.
APPEND WA TO HEADER.
CLEAR WA.
WA-SELTEXT_L = 'CHANGENR'.
WA-COL_POS   = '3'.
WA-FIELDNAME = 'CHANGENR'.
WA-TABNAME   = 'CDPOS_ITAB'.
WA-OUTPUTLEN = '8'.
APPEND WA TO HEADER.
CLEAR WA.
WA-SELTEXT_L = 'TABNAME'.
WA-COL_POS   = '4'.
WA-FIELDNAME = 'TABNAME'.
WA-TABNAME   = 'CDPOS_ITAB'.
WA-OUTPUTLEN = '5'.
APPEND WA TO HEADER.
CLEAR WA.
WA-SELTEXT_L = 'FNAME'.
WA-COL_POS   = '5'.
WA-FIELDNAME = 'FNAME'.
WA-TABNAME   = 'CDPOS_ITAB'.
WA-OUTPUTLEN = '7'.
APPEND WA TO HEADER.
CLEAR WA.
WA-SELTEXT_L = 'CHANGING'.
WA-COL_POS   = '6'.
WA-FIELDNAME = 'CHANGING'.
WA-TABNAME   = 'CDPOS_ITAB'.
WA-OUTPUTLEN = '1'.
APPEND WA TO HEADER.
CLEAR WA.
WA-SELTEXT_L = 'VALUE_NEW'.
WA-COL_POS   = '7'.
WA-FIELDNAME = 'VALUE_NEW'.
WA-TABNAME   = 'CDPOS_ITAB'.
WA-OUTPUTLEN = '5'.
APPEND WA TO HEADER.
CLEAR WA.
WA-SELTEXT_L = 'VALUE_OLD'.
WA-COL_POS   = '8'.
WA-FIELDNAME = 'VALUE_OLD'.
WA-TABNAME   = 'CDPOS_ITAB'.
WA-OUTPUTLEN = '5'.
APPEND WA TO HEADER.
CLEAR WA.
CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
EXPORTING
    I_PROGRAM_NAME               = SY-REPID
    I_INTERNAL_TABNAME           = 'CDPOS_ITAB'
    I_CLIENT_NEVER_DISPLAY       = 'X'
    I_INCLNAME                   = SY-REPID
  CHANGING
    CT_FIELDCAT                  = HEADER[]
EXCEPTIONS
IF SY-SUBRC <> 0.
ENDIF.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
    I_CALLBACK_PROGRAM                = SY-REPID
    IT_FIELDCAT                       = HEADER[]
  TABLES
    T_OUTTAB                          = CDPOS_ITAB[]
IF SY-SUBRC <> 0.
ENDIF.

Your select querry on MARC is not matching with MARC_TY.
The field in the MARC table and MARC_TY should be same.
and also, when you are making select querry on CDPOS table
with all entries.
When ever you are using all entries select statement, you should check whether the internal table is having value.
you should check
if CDPOS_IT[] is not initial.
SELECT OBJECTCLAS
OBJECTID
CHANGENR
TABNAME
FNAME
CHNGIND
VALUE_NEW
VALUE_OLD
FROM CDPOS INTO CORRESPONDING FIELDS OF TABLE CDPOS_ITAB
FOR ALL ENTRIES IN CDHDR_ITAB
WHERE OBJECTCLAS = CDHDR_ITAB-OBJECTCLAS
AND OBJECTID = CDHDR_ITAB-OBJECTID
AND CHANGENR = CDHDR_ITAB-CHANGENR
AND TABNAME = 'MARC'
AND FNAME IN ('MINBE','EISBE','MABST','LVORM')
AND CHNGIND = 'U'.
endif.
Regards
Madhan D

Similar Messages

  • The ABAP program lines are wider than the internal table.

    Hello;
    i use FM REUSE_ALV_FIELDCATALOG_MERGE to fill in fieldcat from an internal table but i receive dump message  READ_REPORT_LINE_TOO_LONG. Is there smt. like a type mismatch or waht can that be?
    detail explanation of the dump is
    The internal table "\FUNCTION=K_KKB_FIELDCAT_MERGE\DATA=L_ABAP_SOURCE[]" is 72 characters wide. The program line is                                              
    81 characters wide.                                                                
    source of the call is like:
    DATA: ALV_FIELDCAT     TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          ALV_HEADER       TYPE SLIS_T_LISTHEADER WITH HEADER LINE,
          ALV_EVENTS       TYPE SLIS_T_EVENT WITH HEADER LINE,
          ALV_LAYOUT       TYPE SLIS_LAYOUT_ALV,
          ALV_PRINT        TYPE SLIS_PRINT_ALV,
          ALV_REPID        LIKE SY-REPID,    " program name
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          I_PROGRAM_NAME     = alv_repid
          I_INTERNAL_TABNAME = 'ITAB'
          I_INCLNAME         = alv_repid
        CHANGING
          CT_FIELDCAT        = alv_fieldcat[]
        EXCEPTIONS
          OTHERS             = 3.
    thx in advance
    Ali

    Hi,
    At least one line of the source text is longer than the lines of the internal table itab then,
    READ_REPORT_LINE_TOO_LONG.  error occurs.
    Cause: At least one line of the source text is longer than the lines of the internal table itab.
    Runtime Error: READ_REPORT_LINE_TOO_LONG
    check the link below for further info
    http://www.s001.org/ABAP-Hlp/abapread_report.htm
    one more thing, whether u have given report name
    ALV_REPID = 'ZXYZ'.  
    if ZXYZ is u r program name

  • Message: The ABAP program lines are wider than the internal table.

    sorry for stupid question.... can you please tell me what I need to check?
    The internal table "\FUNCTION=K_KKB_FIELDCAT_MERGE\DATA=L_ABAP_SOURCE[]" is 72
    characters wide. The program line is
    75 characters wide.
    Uf, I can't find the mistake
    BR

    Hi,
    please try to change some settings and see ...
    SE38->program->Display->Utilities->Settings->Abapeditor->editor, check the last check box (downwards-Comp Line Length)...
    If you are using merge fundtion module try to delcare the final internal table like this
    data : BEGIN OF i_final OCCURS 0,
            matnr LIKE mara-matnr,       "Material Number
            maktx LIKE makt-maktx,       "Material Description
            END OF i_final.
    Regards,
    Nagaraj

  • Runtime error while executing rule - see long text RSTRAN 301

    Hi BW Gurus,
    When I executing the DTP, the following error occured.
    Runtime error while executing rule -> see long text     RSTRAN     301
    Diagnosis
        An error occurred while executing a transformation rule:
        The exact error message is:
        The argument 'GBP' cannot be interpreted as a number
        The error was triggered at the following point in the program:
        GP46DQFOYRZTUS0QITMO07IFTS0 1137
    Appreciate any useful suggestions.
    Thanks in advance.
    Maruthi

    Guess you are doing some calculation in your routines ..based on Currency Key i.e USD or INR , GBP..etc ..it should be currency value..rather than currency key. Check your field caluclation

  • An internal error has occurred! + Runtime error! Program C-

    I have Vista 64 SP2 all patches and Acrobat CS4 installed.Reader 9.4 was running without more then the normal troble with Adobe software. After installing Adobe Reade X it won't even start.
    The only  thing Reader X is doing is showing: An internal error has occurred!
    And: Runtime error! Program C… The program has requested the Runtime  to terminate in an unusual way. Please contact the application’s support  team for more information.
    I have enough of Adobes Beta Software released to me as a customer.  Never seen anything worse then your products. Flash as THE security hole  closely followed by Adobe reader. Okay that hole is closed now an  forever as I never will install anything from Adobe on my PC again. The  **** with downloading by Adobe DLM in firefox and such crap not to  mention.
    Welcome Foxit Reader!

    Hi,
    this Error can occur if you make use of JUNCTION in your filesystem. Sometimes those JUNCTIONS are made by your Operating System (e.g. windows anytime-upgrade and than changeing system language). But perhaps you manually changed program and data storage locations by using JUNCTION ( e.g. mklink or any other tool ).
    ONE SOLUTION which works for me was to install Adobe Reader manually by downloading the appropriate version at ftp://ftp.adobe.com/pub/adobe/reader/win . The startup with the desktop shortcut will not work.
    1. You should create a new Folder (e.g. TEST ) in the HOMEDRIVE ( normally C: ) root location which is not a JUNCTION .
    2. Open a command line ( press WinodwsKey+R than type "%COMSPEC%" without quotes and press OK Button)
    3. Use now the set command to change environment varibles temporarily Change APPDATA and USERPROFILE by typing
         SET APPDATA=C:\TEST
         SET USERPROFILE=C:\TEST
    4. Now start Adobe Reader from this command line by typing
         "C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe"
    Adobe Reader will open.
    5. You should go straight to Menu: Edit->Preferences->General
    Disable or deselect the "Enable Protected Mode at startup" at the bottom. Click OK. and exit Adobe Reader.
    6. Adobe settings are now written to C:\TEST
    copy all from C:\TEST to your original USERPROFILE dir
    Now you can use the desktop shortcut of Adobe Reader and it will also open pdf directly in your browser.

  • I am running windows xp. Trying to download latest version of iTunes and get error message: Microsoft Visual C  Rundtime Library. Runtime Error. Program:C\ProgramFiles\iTunes\iTunes.exe. R6034 An appliction has made an attempt to load the C runtime librar

    I am running windows xp. Trying to download latest version of iTunes and get error message: Microsoft Visual C  Rundtime Library. Runtime Error. Program:C\ProgramFiles\iTunes\iTunes.exe. R6034 An appliction has made an attempt to load the C runtime library incorrectly. Please contact the appliction's support team for more information.
    2nd/ message: iTunes was not installed correctly. Please reinstall iTunes. Error 7(Windows error 1114)
    I have removed iTunes serveral time and tried to reinstall many times and get the same results noted above.
    Can anyone help me? Thank you. EFS1

    Hello DrJMDDC,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/ht1923
    1. Remove iTunes and related components from the Control Panel
    2. Verify iTunes and related components are completely uninstalled
    3. Reinstall iTunes and related components
    Best of luck,
    Mario

  • I get this error message when trying to start Itunes - "Runtime Error! Program: C:\Program Files\iTunes\iTunes.exe  R6034 Anapplication has made an attempt to load the C runtime library incorrectly.  I have tried to have iTunes re-install and correct.

    I get this message when I try to start iTunes
    Runtime Error!
    Program: C:\Program Files\iTunes\iTunes.exe
    R6034
    An application has made an attempt to load the C runtime Library incorrectly.
    I have tried to have iTunes re-install but still get the error.

    Uninstall your existing copy of iTunes. Delete any copies of the iTunesSetup.exe (or iTunes64Setup.exe) installer files from your downloads areas for your web browsers and download a fresh copy of the iTunes installer from the Apple website:
    http://www.apple.com/itunes/download/
    (The current build of the 11.1.4.62 installer was changed a few days ago, which fixed the bulk of the reports of MSVCR80.dll/R6034/APSDaemon.exe/Error-7/AMDS-could-not-start trouble ... but the build number on the installer was not changed. So we're trying to make sure you do the reinstall using a "new good" 11.1.4.62 installer instead of an "old bad".)
    Does the install with the new copy of the installer go through properly? If so, does that clear up the error message?
    If you still have the same error messages cropping up, then try the procedures from the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Prompt Upgrade iTunes to 11.1.4 on download got Runtime Error C:\Program Files(x86)\iTunes\iTunes.exe R6034 An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more info???

    DOwnload finished but got X RedCircle Runtime Error!
    PROGRAM: C:\Program Files(x86)\iTunes\iTunes.exe
    R6034
    An application has made an attempt to load the C runtime library incorrectly. Need Support Team to give Resolution to me and others?
    I have downloaded M/S approved software to correct runtime errors but cannot get iTunes to run again to upgrade ITunes
    and Backup and Sync Iphone, Ipad, IPod Touch.  Pleaase can you advise what to do next.
    I am concerned about my Library of music as unable to access or protect music as downloads are not CDs to redo if "My Music\I Tunes is lost or corrupted?
    Help is appreciated Thanx. 

    Hi Aspden37,
    If you are having issues with iTunes after an attempted update, you may find the following article helpful:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Regards,
    - Brenden

  • It is possible to write abap programming lines in text element

    Hi experts,
                       Can we write abap programming lines(loop command etc....) in text element in smart forms.
    Thanks in adavnce,
    Nag.
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on May 17, 2011 11:44 AM

    The lines on the DIO port respond to trhe MOMO (Must On, Must Off) protocol which is a tri state protocol. This allows each line on the DIO ports to be used individually. The lines, however, are by default static DIO which means that if you want to create a pulse train in them you must do it through a software routine where you change the states every time the set dio port momo call is executed. Another option is to use the PWM ouptut lines available on this port. You can use the lines specified as PWM outputs (check the 7344 hardware manual for this) so that in MAX you can generate a continous pulse train and then you can use NI-Motion's PWM fucntions to control the frequency and duty cycle of the train.

  • Microsoft Visual C++ Runtime Library X Runtime Error! Program: C:\Program Files... R6034

    The Problelm I am having is at start-up I am getting a pop-up with the following message.
    Microsoft Visual C++ Runtime Library
    X Runtime Error!
    Program: C:\Program Files...
    R6034
     An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for mor information.
    The problem with this is that it doesn't tell me which program, and nothing that I have tried to access has reported runtime as a problem.  I don't know what programs use runtime so I don't know how go about fixing this problem.  Don't know what
    this means.  Please help! It is annoying not to be able to get rid of this errror!
    Thanks a bunch
    TechSavvyNot

    I have the same error and it is from iTunes.  (C:/ProgramFiles(x86)\iTunes\iTunes.exe).  Now that program will not run and when I try to update it, I get the same error.  I tried deleting the program and the above folder (renamed and moved
    it) and downloaded the latest exe file from Apple and I am still getting the error.
    Hi,
    Are you sure you have completely uninstall iTunes and its related componet?  Following this, Download and install the latest version.
    You can followe these instructions:
    http://support.apple.com/kb/HT1923
    Andy Altmann
    TechNet Community Support

  • Runtime Error! Program: C:...

    Hi all,
    I just finished installing Robohelp 7 onto my Vista box for the first time. After entering the license and proceeding it error'd out. I'm able to go into Robohelp HTML and RoboSource Control 3 Explorer, but when I try to open Robohelp for Word I get the following error popup. Anyone seen this before and can help me troubleshoot?
    OS=Vista fully patched.
    Word=Office 2007 Pro fully patched.
    The popup is:
    Titled Microsoft Visual C + + Runtime Library
    Red X Runtime Error!
    Program: C:...
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the application's support team for more information.
    OK button.
    Thanks.

    We tech writers at this company are experiencing a similar problem. We're testing a PC with Windows 7 on it. We've asked our computer support person to install RoboHelp 8 (including RoboHelp for Word), so that we can verify that both RoboHelp HTML and RoboHelp for Word work correctly before we allow our PCs to upgraded from Windows XP to Windows 7. When we try to open RoboHelp for Word on this Windows 7 PC, a "Microsoft Visual C + + Runtime Library" error appears; here is part of it:
      "This application has requested the Runtime to terminate it in an unusual way."
    Thanks for any insights or tips!

  • Microsoft Visual C++ Runtime library---runtime error ---abnormal program termination

    Windows XP Media Center---HP Photosmart C7180 All-in-one ---was having problems with  HP Essentials 2 (misplaced tags & photos) the printer and programs had been working fine for a long time, could not fix so I uninstalled and reinstalled  my printer, using the original disk, 3 days later it had only reached 94%... then I got this  RUNTIME ERROR.        program:...BDBE2F3E-42db-4d4a-8CB1-19BA765DBC6C}\setup\hpzrcv01.exe       abnormal program termination.  I am a beginner, tried contacting HP Support could not get through. HELP.....   IN SIMPLE LANGUAGE PLEASE

    I am having the same problem trying to download the Windows 8 driver from the HP website for my Photosmart D110 series. Did you resolve your problem?

  • Error in T-Code: IM24 -Position ID is longer than the maximum allowed 24

    Dear All,
    I am trying to generate Investment Program from Org. Unit in T-Code IM24, but system throws error as below:
    Position ID is longer than the maximum allowed 24 characters
    Message no. AP240
    I have created the Organization unit of my own like IT North, IT South, IT West, IT East.
    Guide on the same.
    Regards
    JS

    Hi,
    Thanks for your immediate response.
    I dont want to extend the maximum allowed character.
    And am not able to check from where i need to control the length of my org. unit.
    Regards
    JS

  • Error on passing paramter names longer than 16 char on portal import page

    After created a transport set, we used portal import page to import it.
    However, when we select that transport set and click "import", an 404 error occured right away. The url is:
    /pls/portal/PORTAL.wwutl_ui_export_import.import_eds
    When we check the Apache error logs, it seemed all parameter names that are longer than 16 characters in the page's html form were passed wrongly. Those characters
    after the 16th character of the parameters' names were some unreadable or wrong
    ones. For example, P_EXPLICIT_MODE_EDS was passed as P_EXPLICIT_MODE_ˆ„N to the
    backend pl/sql procedure and that's why there was a "SIGNATURE (parameter names)
    MISMATCH" error I think.
    My question is actually why the internal portal pages couldn't pass parameter
    names that are longer than 16 characters. Are there some settings wrong with
    the portal metadata database or oracle portal itself, or even our linux system? Was it because maybe we set the multilanguage-support for our portal?
    This error also happens in some other portal internal pages. Please help and you can also contact me at email: [email protected]
    Thanks a lot!

    Hi,
    Found a note explaining the significance of these errors.
    It says:
    "NZE-28862: SSL connection failed
    Cause: This error occurred because the peer closed the connection.
    Action: Enable Oracle Net tracing on both sides and examine the trace output. Contact Oracle Customer support with the trace output."
    For further details you may refer the Note: 244527.1 - Explanation of "SSL call to NZ function nzos_Handshake failed" error codes
    Thanks & Regards,
    Sindhiya V.

  • During iTunes installation "Registering iTunes automation server"... I am getting following error messag from "Microsoft visual C   runtime Library"... Runtime Error! Program: C:\program files (x86)\iTunes\iTunes.exe

    During iTunes installation, when it comes to installation phase "Registering iTunes automation server"... I am getting following error message:
    "Microsoft visual C++ runtime Library"...
    "Runtime Error! Program: C:\program files (x86)\iTunes\iTunes.exe"
    "R6034
    An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information."
    My system is Windows 7 Enterprise - Service Pack1

    Check the user tip below.
    https://discussions.apple.com/docs/DOC-6562

Maybe you are looking for