Install/upgrade issue - xfree86

Hi,
I noticed something when installing/upgrading the xfree86 package... pacman appears to only download a portion (<20%) of the package, then it installs it.  This isn't really a critical issue, since everything seems to work just fine, regardless.  I'm just wondering why this is
BTW, I'm running fully-upgraded 0.4 arch.
altair

There's an integer overflow bug in the progress bar code.  The file will download just fine, but the progress bar wraps after ~42mb.

Similar Messages

  • Issue installing/upgrading to ITunes 10.6.1.7

    Im having an Issue installing/upgrading to iTunes 10.6.1.7 When upgrading it would not istall and tell me to go to Tools>Download manual. I also had an issue with my IPod touch not showing up in iTuens all of a sudden. So figuring the two problems were related I uninstalled iTunes (cleaned my itues folder in my C drive also) with hopes installing it fresh would work and now when I install 10.6.1.7 I get the following in a pop-up window "The installer encountered errors before iTunes could be configured. Errors occurred during installation. Your system has not been modified. Please run the installer again, or click Finish to exit."
    Anyone know what the issue is?

    Try the following steps:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime  
    Apple Software Update  
    Apple Mobile Device Support  
    Bonjour  
    Apple Application Support
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • EBS 12.1.3 Upgrade issue

    Hi,
    I installed 12.1.1 with the Vision Database on my machines which has a 64 bit Linux 5 update 5 operating system and everything went fine. After that I decided to upgrade to 12.1.3. I installed the following patches in order they are given below :
    1) R12.AD.B.DELTA.3 Patch 9239089
    2) Patch 9239090
    3) Patch 9239095
    4) 9817770:R12.ATG_PF.B POST-R12.ATG_PF.B.DELTA.3CONSOLIDATED PATCH
    5) 9966055:R12.FND.B [TRANSLATED VERSION OF FNDSCSGN NOT LAUNCHED
    The only issues I had was during the compilation of one form library I got an error in Patch 923090 and I said to continue. The patches completed successfully (I think) since I can log into applications. My issue is I have a lot of invalid objects. I tried to manually compile them but failed then followed one of the other threads to run utlrp.sql and utlirp.sql scripts as per (R12.1.1 - Invalid Objects After Patching [ID 1093163.1])
    I have followed that document and tried to run but my invalid count stays the same. Here is the snapshot when I query the database :
    SQL> SELECT COUNT(*), OWNER FROM DBA_OBJECTS WHERE STATUS='INVALID'
    2 GROUP BY OWNER;
    COUNT(*) OWNER
    1 RE
    2 CA
    4 PUBLIC
    1 HERMAN
    228 APPS
    2 FLOWS_010500
    SQL> @$ORACLE_HOME/rdbms/admin/utlrp.sql
    TIMESTAMP
    COMP_TIMESTAMP UTLRP_BGN 2012-04-05 07:23:05
    DOC> The following PL/SQL block invokes UTL_RECOMP to recompile invalid
    DOC> objects in the database. Recompilation time is proportional to the
    DOC> number of invalid objects in the database, so this command may take
    DOC> a long time to execute on a database with a large number of invalid
    DOC> objects.
    DOC>
    DOC> Use the following queries to track recompilation progress:
    DOC>
    DOC> 1. Query returning the number of invalid objects remaining. This
    DOC> number should decrease with time.
    DOC> SELECT COUNT(*) FROM obj$ WHERE status IN (4, 5, 6);
    DOC>
    DOC> 2. Query returning the number of objects compiled so far. This number
    DOC> should increase with time.
    DOC> SELECT COUNT(*) FROM UTL_RECOMP_COMPILED;
    DOC>
    DOC> This script automatically chooses serial or parallel recompilation
    DOC> based on the number of CPUs available (parameter cpu_count) multiplied
    DOC> by the number of threads per CPU (parameter parallel_threads_per_cpu).
    DOC> On RAC, this number is added across all RAC nodes.
    DOC>
    DOC> UTL_RECOMP uses DBMS_SCHEDULER to create jobs for parallel
    DOC> recompilation. Jobs are created without instance affinity so that they
    DOC> can migrate across RAC nodes. Use the following queries to verify
    DOC> whether UTL_RECOMP jobs are being created and run correctly:
    DOC>
    DOC> 1. Query showing jobs created by UTL_RECOMP
    DOC> SELECT job_name FROM dba_scheduler_jobs
    DOC> WHERE job_name like 'UTL_RECOMP_SLAVE_%';
    DOC>
    DOC> 2. Query showing UTL_RECOMP jobs that are running
    DOC> SELECT job_name FROM dba_scheduler_running_jobs
    DOC> WHERE job_name like 'UTL_RECOMP_SLAVE_%';
    DOC>#
    PL/SQL procedure successfully completed.
    TIMESTAMP
    COMP_TIMESTAMP UTLRP_END 2012-04-05 07:24:29
    DECLARE
    ERROR at line 1:
    ORA-00904: "FALSE": invalid identifier
    ORA-06512: at line 13
    DOC> The following query reports the number of objects that have compiled
    DOC> with errors (objects that compile with errors have status set to 3 in
    DOC> obj$). If the number is higher than expected, please examine the error
    DOC> messages reported with each object (using SHOW ERRORS) to see if they
    DOC> point to system misconfiguration or resource constraints that must be
    DOC> fixed before attempting to recompile these objects.
    DOC>#
    OBJECTS WITH ERRORS
    4
    DOC> The following query reports the number of errors caught during
    DOC> recompilation. If this number is non-zero, please query the error
    DOC> messages in the table UTL_RECOMP_ERRORS to see if any of these errors
    DOC> are due to misconfiguration or resource constraints that must be
    DOC> fixed before objects can compile successfully.
    DOC>#
    ERRORS DURING RECOMPILATION
    4
    PL/SQL procedure successfully completed.
    Invoking Ultra Search Install/Upgrade validation procedure VALIDATE_WK
    Ultra Search VALIDATE_WK done with no error
    PL/SQL procedure successfully completed.
    However for some reason the job utlrp.sql only shows 4 invalids as shown when I run it. But the number changes once the script is finished and I am not sure why. If I query SELECT COUNT(*) FROM obj$ WHERE status IN (4, 5, 6) now after utlrp.sql has finished running I get the below
    SQL> SELECT COUNT(*) FROM obj$ WHERE status IN (4, 5, 6);
    COUNT(*)
    234
    But if I query the same query while utlrp.sql is running I get a number as low as 10 I have seen but once the script finishes it goes back up. I don't know what to do. I have run autoconfig on both the db and apps tier. Is there anything anyone can suggest me ? I am totally lost on this.
    Thanks..

    Hi I did set the disablefast_validate=TRUE and re-ran only utlrp.sql to re-compile now I have a lot more packages compiled but I still have some invalids. I just want to know can I ignore these and move on or are they important packages / objects in APPS which may impact functionality ?
    below is the results of the invalid objects.
    Thanks
    OWNER,OBJECT_NAME,SUBOBJECT_NAME,OBJECT_ID,DATA_OBJECT_ID,OBJECT_TYPE,CREATED,LAST_DDL_TIME,TIMESTAMP,STATUS,TEMPORARY,GENERATED,SECONDARY,NAMESPACE,EDITION_NAME
    PUBLIC,WWV_FLOW_LIST_OF_VALUES_DATA,,1006661,,SYNONYM,09-FEB-07,09-FEB-07,2007-02-09:00:33:03,INVALID,N,N,N,1,ORA$BASE
    PUBLIC,WWV_FLOW_LISTS_OF_VALUES$,,1006663,,SYNONYM,09-FEB-07,09-FEB-07,2007-02-09:00:33:03,INVALID,N,N,N,1,ORA$BASE
    PUBLIC,WWV_FLOW_GENERIC,,1006687,,SYNONYM,09-FEB-07,09-FEB-07,2007-02-09:00:33:03,INVALID,N,N,N,1,ORA$BASE
    PUBLIC,WWV_FLOW_FIELD_TEMPLATES,,1006699,,SYNONYM,09-FEB-07,09-FEB-07,2007-02-09:00:33:03,INVALID,N,N,N,1,ORA$BASE
    RE,RE_PROFILER,,1207268,0,PACKAGE BODY,17-NOV-04,05-APR-12,2012-04-05:10:52:51,INVALID,N,N,N,2,
    HERMAN,RDT_1,,1713973,1713973,TABLE,18-JAN-06,18-JAN-06,2006-01-18:13:18:02,INVALID,N,N,N,1,
    APPS,XLA_00707_AAD_C_000026_PKG,,2362389,0,PACKAGE BODY,03-AUG-07,05-APR-12,2012-04-05:10:52:52,INVALID,N,N,N,2,
    APPS,XLA_20065_AAD_C_000030_PKG,,2370236,0,PACKAGE BODY,16-AUG-07,05-APR-12,2012-04-05:10:53:05,INVALID,N,N,N,2,
    APPS,FSAH_DUPLICATE_PKG,,2385307,0,PACKAGE BODY,23-AUG-07,05-APR-12,2012-04-05:10:53:08,INVALID,N,N,N,2,
    APPS,XLA_00707_AAD_C_000044_PKG,,2661674,0,PACKAGE BODY,14-JAN-08,05-APR-12,2012-04-05:10:53:08,INVALID,N,N,N,2,
    APPS,MSD_DEM_OBI_DEMANTRA_MV,,3255317,,MATERIALIZED VIEW,09-JUL-08,09-JUL-08,2008-07-09:09:14:28,INVALID,N,N,N,19,
    CA,F,,3260665,3260665,TABLE,24-SEP-08,24-SEP-08,2008-09-24:16:00:14,INVALID,N,N,N,1,
    CA,G,,3260683,3260683,TABLE,24-SEP-08,24-SEP-08,2008-09-24:16:00:15,INVALID,N,N,N,1,

  • Upgrading from Xfree86 to Xorg?

    Hi all,
    I was just wondering if someone could give me some feedback on what would be the best/easiest way to upgrade from XFree86 that is currently installed to Xorg? It appears that most of the Development is going to projected towards Xorg so I would like to move to that package to stay current. Any suggestions or links would be greatly appriciated. Thanks 

    dpb wrote:
    kakabaratruskia wrote:I also did pacman -Sy xorg yesterday, and it was really easy. It removed xfree automatically and didn't have to configure anything, as it used my XF86Config. Startx worked without any trouble.
    Xorg doesn't use XF86Config. Do you mean you renamed XF86Config to xorg.conf?
    Xorg (and XFree86 4.4) guesses the config if there is no config file. So it can work without xorg.conf too..
    Nop, it just read XF86Config. In fact when I ran xorgcfg, it just modified XF86Config and did not create a xorg.conf. Anyway, now I renamed my XF86Config to xorg.conf, to avoid any future compatibility problems.

  • Unable to install / upgrade or remove Lenovo Solution Centre

    I'm getting following error while installing/upgrading or while removing lenovo solution center. I googled for the error code & found the links with windows installer error issue. But my windows installer is working good and could able to install all applications except lenovo solution centre.
    I tried to delete directory and to install the newer copy but still getting this error.
    Kindly guide me to remove it completely(maybe registry items to be removed ) and get it freshly installed.

    Was your win7 install a Shipped lenovo install or win7 from box store install?
    LSC current is version 2.0.020, released march 20, 2013.
    If you used system update, it MAY not offer the most current release.
    LSC MSI install log is in C:\Users\YOUR id\appdata\local\temp\LSC.log   .
    If you used factory install version of LSC, it is old.
    ==
    you stated 2 issues.
    (1) Some lsc version wont execute, lets say factory version.
    (2) Upgrade/reinstall of some version of LSC, does msi failure, 1721. 
    ==
    I just installed Latest LSC, will uninstall shortly.
    (1) error 1, you need to perform your first backup IE RNR, windows backup. dah, backed up weekly for 18 months (rnr) . error  2, You do not have enough space to perform a backup operation.
    exact screen:
    If you have an additional external hard drive, you can back up your data to that device. To view Lenovo external hard drive options available for purchase, Shop now.
    155 GB free on my second HDD, my backup drive. SHOP NOW. Last incremental was 328 MB.
    (2) warranty expired  (correct), Benefits to product registration ( did that in 2008). Register NOW. But it knew i had a 3 year warranty.
    (3) Hardware scan recommended. Thank you, 1 correct, Still using pc-doctor.
    (4) You have windows update set to not auto install. correct.
    (5) Adobe-air self updated on the 2nd launch of LSC.
    IF you 1721, you ahead of the game.
    Just download the hardware check LSC (linux). Need ISO burner software. download Memory check if you wish.
    My 1st year on current, 2GB memory failed, mouse failed, DVD burner failed. POS-lsc, point of sale? Use your favorite seach engine , search POS if you wish.
    Link to picture
    Moderator note; picture(s) totalling >50K converted to link(s) Forum Rules

  • Error 1628 when installing upgrade of Fixed assets

    'Error 1628' Failed to installed is occuring when installing upgrade of Fixed assets to PL100.

    Dear Lisa,
    In order to try to resolve the issue, please do the following steps :-
    1. Go to Start   > Run   > %temp%, then delete all the files present in
    the temporary directory.
    2. Then Reboot your machine.
    3. Reinstall the FA addon as per following:
    o  Start SAP Business One. Log on to the appropriate company.
    o  Choose 'Administration' -> 'Add-ons' -> 'Add-on Administration'.
    o  Remove the add-on(s) from the company by marking them and
       clicking the left arrow button.
    o  Choose 'OK'.
    o  Close SAP Business One.
    o  In Microsoft Windows, choose 'Start' -> 'Control Panel' -> 'Add
       or Remove Programs'.
    o  Check if any SAP Business One add-on(s) are displayed in the
       list.
    o  If an add-on is included, uninstall it by choosing 'Remove'.
    o  Using Windows Explorer, locate to the add-ons installation
       folder. Depending on the different versions of SAP Business One,
       the default installation folder is 'C:\Program Files\SAP
       Manage\SAP Business One\AddOns\sap' or 'C:\Program Files\SAP\SAP
       Business One\AddOns\sap'.If you chose a different folder during
       the installation process, locate that folder. Delete all
       subfolders (folders named like the add-ons) and, if present, the
       "_common" folder (which contains the framework for add-ons).
    o  Locate to the SAP Business One installation folder. The default
       installation folder is 'C:\Program Files\SAP Manage\SAP Business
       One' or 'C:\Program Files\SAP\SAP Business One'. If you chose a
       different folder during the installation process, locate that
       folder.
    o  Open the following files : 'AddOnsInstall.sbo' and
       'AddOnsLocalRegistration.sbo' in Notepad and
       delete the imformation related to Fixed assets only,
        then save the file.
       Note: If you only installed fixed assets ,that means no other add-on installed ,you can completely Delete   the above files.
    o  Start SAP Business One.
    o  Log on to the appropriate company.
    o  Choose 'Administration' -> 'Add-ons' -> 'Add-on Administration'.
    o  Reassign the add-on(s) to the company.
    o  Choose 'OK'.
    o  Restart SAP Business One.
    Hope it could be helpful.
    Regards,
    Eleven

  • Unusually Slow after installing upgrades

    I upgraded my iMac this morning and ever since it would be so slow making it practically impossible to use. I rebooted and took 15 minutes to get all items in the monitor. Any ideas as to why? Has this issue been reported by other users?

    What do you mean you installed upgrades?
    I would recommend Repair Disk Permissions (Applications - Utilities - Disk Utility) and then doing a SMC reset. Please remember we are not in front of your computer so please be more descriptive when describing your issue. Also this is a iMac forum for Intel computers, your profile indicates you are using a G5 which is a PPC machine. The correct forum for G5 machines is:
    http://discussions.apple.com/category.jspa?categoryID=134
    Roger

  • Upgrade issues OBIEE 10g to 11g along with OBIA upgrade

    Hi,
    I have to upgrade OBIEE 10.1.3.4.1 to OBIEE 11.1.1.5 along with OBIA 7.9.6.1 to 7.9.6.5(Informatica 8.6.1 to 9.0.1) at my client location and I have very little knowledge on it. and want to know/have help documents for upgrade.
    And if anyone in the forums involved in upgrade please list the errors/issues occured during upgrade and after upgrade.
    1. OBIEE 10g to 11g upgrade issues??
    2. OBIA OBIA 7.9.6.1 to 7.9.6.5 upgrade issues along with 10g to 11g??
    3. Informatica 8.6.1 to 9.0.1 upgrade issues??
    4. DAC upgrade issues??
    any response for my questions is appreciated.
    Thanks
    Jay.
    Edited by: Jay on Apr 11, 2012 9:11 AM

    HI Jay,
    We cannot explained thread list here, If you get any errors plz post me,will try to help out.
    This is oracle document link - This document has given step by step with screen shots upgration for 10g to 11g ,Please refer the below link.
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi/bi11115/upgrade/upgrade_to_11g.htm
    http://obieemanu.blogspot.in/2011/05/rpd-upgration-from-10g-to-11g.html
    http://docs.oracle.com/cd/E21764_01/upgrade.1111/e10125/ua_command_line.htm#ASMAS149
    Award points it is useful.
    Thanks,
    satya

  • Report generation toolkit upgrade issues

    I have created multiple vi's in that utilize the previous report generation toolkits specifically using the Generate Report Get Data to Modify.vi and the Generate Report Set Modified Data.vi.  Obviously the report reference has now changed in 8.6's version of the report generation toolkit and these vi's do not exist in the 8.6 library anymore.  What vi's do I need to replace these functions with to make this code work.  Can anyone tell me what the work around is to solving this problem.  This is a picture of the code.
    BJD1613
    Lead Test Tools Development Engineer
    Philips Respironics
    Certified LV Architect / Instructor
    Attachments:
    code.JPG ‏92 KB

    Hi BJD1613,
    The Report Generation VIs on the LabVIEW Palettes mutate properly. However, you may run into upgrade issues if VIs distributed with LabVIEW, but not available in the Palettes are used in the code. Hence, I would caution against using them for the same reason.
    In this case, the specific references do exist in the report generation classes; however, since they are private, they cannot be accessed by VIs outside the respective classes. A temporary workaround for now is mentioned in the following KB 4OOCSJ4M Getting References in Report Generation Toolkit 1.1.3 with LabVIEW 8.6.  
    This was reported to R&D (CAR# 123064) for further investigation

  • Purch. & installed upgrade from iLife 2 to iLife 08, but I have questions..

    Hi ~
    _Purchased & installed upgrade from iLife 2 to iLife 08, but I have questions..._
    First I made sure I backed up my 5,500 photos in iPhoto to an external hard drive. (The only downfall to this backing-up process is that I haven't found an easy way to back-up the comments attached to each photo. Any advice on this? Part of the "horror" to losing one's photos is also losing the comments added to them over the years.)
    Back to the install... I installed iLife 08 and it installed correctly. I checked to see what version of the applications I have in the dock on my desktop - I figured it would just import existing data (photos, tunes, etc.) into the newer version and replace it in the dock - +it only did this for iDVD+, of course it wasn't that easy for the others.
    I can't find the newer version of iPhoto. My iPhoto in the dock still says version 2. iTunes in my dock is version 7 (7.4.2). iMovie is version 3 (3.0.3). But the new Garageband is there in the dock. And of course, iDVD is the newer version '08.
    I am most concerned with iPhoto and making sure all the photos AND their comments import correctly into the newer iPhoto 08. I am nervous about this so I want to make sure I do the process correctly.
    I also want to make sure my iTunes information imports correctly to the newer version as well.
    Thank you.
    Sincerely,
    Kathy

    (The only downfall to this backing-up process is that I haven't found an easy way to back-up the comments attached to each photo. Any advice on this? Part of the "horror" to losing one's photos is also losing the comments added to them over the years.)
    If you backed up the iPhoto Library Folder then you got everything - photos, albums, comments etc
    I can't find the newer version of iPhoto. My iPhoto in the dock still says version 2. iTunes in my dock is version 7 (7.4.2). iMovie is version 3 (3.0.3). But the new Garageband is there in the dock. And of course, iDVD is the newer version '08.
    The Dock is not important. Look in your Applications Folder for iPhoto 08. That's where it should be. The Dock is just a shortcut to that. What version is in your Apps folder?
    To upgrade a Library from v2 to iPhoto 08 all you do is open the Library with the newer version.
    Regards
    TD

  • EHP Upgrade Issue - Java Stack

    Hi,
    Our Source System at NW 7.0 SP13 and we are upgrading the system to EHP1 SP03.
    Upgrade failed at Downtime > DEPLOY_ONLINE_DEPL phase.
    Error log:
    Sep 9, 2009 10:11:51 PM [Error]:                       com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:863) [Thread[main,5,main]]: Exception has occurred during the execution of the phase.
    Sep 9, 2009 10:11:51 PM [Error]:             com.sap.sdt.jspm.unattended.RequestController.addContextInfo(RequestController.java:178) [Thread[main,5,main]]: Deployment of queue sapjup-queue completed with error
    JSPM version is 7.01.3.0.15. Current JSPM log directory is /usr/sap/XPD/JC00/j2ee/JSPM/log/log_2009_09_09_16_09_42.
    Sep 9, 2009 10:11:51 PM [Error]: com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.createAndLogRapiException(SAPJupJSPMRapiAdapter.java:698) [Thread[main,5,main]]: The deployment of the queue failed.
    Sep 9, 2009 10:11:51 PM [Error]: com.sap.sdt.sapjup.tools.sapjupjspm.deploy.SAPJupJSPMDeployer.deployList(SAPJupJSPMDeployer.java:68) [Thread[main,5,main]]: Could not execute deployment of stack file /usr/sap/trans/EPS/in/XPD.xml.
    Sep 9, 2009 10:11:51 PM [Error]:      com.sap.sdt.j2ee.phases.PhaseTypeDeploymentManager.execute(PhaseTypeDeploymentManager.java:519) [Thread[main,5,main]]: Error while executing DeploymentManager phase with action deploySlot. Check the log files for the specified action.
    Sep 9, 2009 10:11:51 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:906) [Thread[main,5,main]]: Phase UPGRADE/DEPLOYMENT_BASED_UPGRADE/DEPLOY_ONLINE_DEPL has been completed.
    Sep 9, 2009 10:11:51 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:907) [Thread[main,5,main]]: Start time: 2009/09/09 22:09:42.
    Sep 9, 2009 10:11:51 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:909) [Thread[main,5,main]]: End time: 2009/09/09 22:11:51.
    Sep 9, 2009 10:11:51 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:910) [Thread[main,5,main]]: Duration: 0:02:08.248.
    Sep 9, 2009 10:11:51 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:911) [Thread[main,5,main]]: Phase status is error.
    I went through the following link , proceeded with option 2, But still getting same error.  
    Portal Upgrade Issue
    Please advise the resolution for the issue I have.
    Thanks in advance
    Regards
    Srinivas
    Edited by: Srinivas Dasari on Sep 10, 2009 5:48 AM
    Edited by: Srinivas Dasari on Sep 10, 2009 5:48 AM

    Issue resolved

  • Upgrade issues list needed

    Hi,
    We're currently on 4.6b and going to upgrade to ECC6 with unicode I'm trying to compile a list point taken care converting to unicode from ABAP technical point of view. Does anyone have such a list?
    Some points i shortlisted are :
    1) Use GUI_UPLOAD and GUI_DOWNLOAD rather than WS_UPLOAD and WS_DOWNLOAD.
    2) Structures or table headers that contain non-character data need to be identical when moving, comparing, selecting into, updating from, etc.
    3) OPEN DATASET filename IN TEXT MODE FOR INPUT ENCODING DEFAULT.
    I know there are others. Any help would be appreciated.
    aRs

    Check the below links
    http://www.sapfans.com/forums/viewtopic.php?t=268386&highlight=upgrade+issues
    http://www.sapfans.com/forums/viewtopic.php?t=263434&highlight=upgrade+issues
    http://www.sapfans.com/forums/viewtopic.php?t=261051&highlight=upgrade+issues
    http://www.sapfans.com/forums/viewtopic.php?t=253316&highlight=upgrade+issues

  • After the install upgrade my imac wont load anymore i tried to do a safe mode load and wehn i do at the end of it it tells me that i have a "systemShutdown false" what does this mean

    after the install upgrade my imac wont load anymore i tried to do a safe mode load and wehn i do at the end of it it tells me that i have a "systemShutdown false" what does this mean

    If 10.7.0 or later...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partitirion & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    If that doesn't help Reinstall the OS.

  • Errors in Forte 3.5 -Upgrade issue

    hello ,
    We are having a frequent disruption in the communication SO which has an
    externalConnection Class. Did anything change in 3.5? We did not have
    these errors in 3L!
    After these erros, we have a mutex locking problem which leaves our
    application hanging.
    Any help will be greatly appreciated!
    thanks
    suma
    Here is an Excerpt of the log file
    Task 9: extConn4030a808.Write: 194 bytes written to 10
    INFORMATION: Network partner closed connection. This usually means the
    process at the other end of the wire failed. Please go look there and
    find
    out why.
    Class: qqsp_DistAccessException
    Error #: [501, 152]
    Detected at: qqcm_HoseFSM::ReceivedClose at 2
    Error Time: Thu May 24 09:16:29
    Exception occurred (locally) on partition "MerlinWindows_cl41_Part8",
    (partitionId = F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105, taskId =
    [F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105.7]) in application
    "MerlinWindows_cl41", pid 23406 on node laxrc2 in environment laxrc2.
    INFORMATION: Error parameters for Set:0 Msg:0:
    Class: qqsp_DistAccessException
    Detected at: qqcm_HoseFSM::ReceivedClose at 1
    Error Time: Thu May 24 09:16:29
    Exception occurred (locally) on partition "MerlinWindows_cl41_Part8",
    (partitionId = F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105, taskId =
    [F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105.7]) in application
    24-May-2001 09:16:47: VH.G.G..GUIT/GUI0/PLAXRC172.23.4.401/../..;PGYX;
    Task 9: extConn4030a808.Write: 233 bytes written to 10
    INFORMATION: Network partner closed connection. This usually means the
    process at the other end of the wire failed. Please go look there and
    find
    out why.
    Class: qqsp_DistAccessException
    Error #: [501, 152]
    Detected at: qqcm_HoseFSM::ReceivedClose at 2
    Error Time: Thu May 24 09:16:47
    Exception occurred (locally) on partition "MerlinWindows_cl41_Part8",
    (partitionId = F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105, taskId =
    [F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105.7]) in application
    "MerlinWindows_cl41", pid 23406 on node laxrc2 in environment laxrc2.
    INFORMATION: Error parameters for Set:0 Msg:0:
    Class: qqsp_DistAccessException
    Detected at: qqcm_HoseFSM::ReceivedClose at 1
    Error Time: Thu May 24 09:16:47
    regards,
    Suma Venkatesh

    -----Original Message-----
    From: Venkatesh, Suma
    Sent: Thursday, May 24, 2001 2:39 PM
    To: '[email protected]'
    Subject: Errors in Forte 3.5 -Upgrade issue
    hello ,
    We are having a frequent disruption in the communication SO which has an
    externalConnection Class. Did anything change in 3.5? We did not have
    these errors in 3L!
    After these erros, we have a mutex locking problem which leaves our
    application hanging.
    Any help will be greatly appreciated!
    thanks
    suma
    Here is an Excerpt of the log file
    Task 9: extConn4030a808.Write: 194 bytes written to 10
    INFORMATION: Network partner closed connection. This usually means the
    process at the other end of the wire failed. Please go look there and
    find
    out why.
    Class: qqsp_DistAccessException
    Error #: [501, 152]
    Detected at: qqcm_HoseFSM::ReceivedClose at 2
    Error Time: Thu May 24 09:16:29
    Exception occurred (locally) on partition "MerlinWindows_cl41_Part8",
    (partitionId = F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105, taskId =
    [F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105.7]) in application
    "MerlinWindows_cl41", pid 23406 on node laxrc2 in environment
    laxrc2.
    INFORMATION: Error parameters for Set:0 Msg:0:
    Class: qqsp_DistAccessException
    Detected at: qqcm_HoseFSM::ReceivedClose at 1
    Error Time: Thu May 24 09:16:29
    Exception occurred (locally) on partition "MerlinWindows_cl41_Part8",
    (partitionId = F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105, taskId =
    [F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105.7]) in application
    24-May-2001 09:16:47: VH.G.G..GUIT/GUI0/PLAXRC172.23.4.401/../..;PGYX;
    Task 9: extConn4030a808.Write: 233 bytes written to 10
    INFORMATION: Network partner closed connection. This usually means the
    process at the other end of the wire failed. Please go look there and
    find
    out why.
    Class: qqsp_DistAccessException
    Error #: [501, 152]
    Detected at: qqcm_HoseFSM::ReceivedClose at 2
    Error Time: Thu May 24 09:16:47
    Exception occurred (locally) on partition "MerlinWindows_cl41_Part8",
    (partitionId = F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105, taskId =
    [F2E11800-5003-11D5-BF99-AE145F2AAA77:0x105.7]) in application
    "MerlinWindows_cl41", pid 23406 on node laxrc2 in environment
    laxrc2.
    INFORMATION: Error parameters for Set:0 Msg:0:
    Class: qqsp_DistAccessException
    Detected at: qqcm_HoseFSM::ReceivedClose at 1
    Error Time: Thu May 24 09:16:47
    regards,
    Suma Venkatesh

  • R12 upgrade issue:Not able to login using forms:Please help****urgent

    We have recently upgraded our instance from 11.5.9 to 12.0.4 in Windows 2003 server.
    We are unable to login to forms after upgrade, however we are able access self service responsibilities without any issues.
    We are getting APP-FND-01496 when we access any forms responsibility. We have tried all possible metalink notes with no luck.
    Any help to resolve this issue will be appreciated.

    Duplicate thread ...
    R12 upgrade issue:Not able to login to forms**please help
    Re: R12 upgrade issue:Not able to login to forms**please help

Maybe you are looking for