AST Version Unknown Issue

I have AST installed on my Snow Leopard Server.  The Gateway Manager reports everything in order except the Apple Service Toolkit Version as " Unknown (Update Available)".  I have Diagnotic OS 8,9,10, and 11 installed.  Any clues?

Here is the final story on this one. Apparently, I had a partial installation of AST on another server and this was the root of the problem.  Earlier versions of AST were more forgiving but version 1.5.3 not so much.  I had to manually remove the partial installation of AST, install 1.5.3 on my main server and everything was working. 
I found that the AST utilities and the uninstall Gateway apps didn't work very well on the partial installation server.  Manual removal was the only way.

Similar Messages

  • Agent Status Reports OMS Version : (unknown)

    I upgraded our 11g OEM installation to 12.1.0.1 and just completed patching to 12.1.0.3. Some of the 11g agents were on platforms not supported by 12.1.0.1 (part of the motivation fro the 12.1.0.3 upgrade, now complete).
    Following the instructions in Chapter 7, Installing Oracle Management Agent in the Oracle Enterprise Manager Cloud Control Basic Installation Guide 12c Release 3 (12.1.0.3) I was able to get the agent installed and started on one of the servers I was not able to upgrade during the upgrade process. The new agent is up and running but reports OMS Version : (unknown) -
    cmspweb:app/agent12g/agent_inst/bin->./emctl status agent
    Oracle Enterprise Manager Cloud Control 12c Release 3
    Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
    Agent Version     : 12.1.0.3.0
    OMS Version       : (unknown)
    Protocol Version  : 12.1.0.1.0
    Agent Home        : /usr/local/oracle/app/agent12g/agent_inst
    Agent Binaries    : /usr/local/oracle/app/agent12g/core/12.1.0.3.0
    Agent Process ID  : 3821
    Parent Process ID : 3767
    Agent URL         : https://garmin.ucdavis.edu:3872/emd/main/
    Repository URL    : https://oracle-emrep1.ucdavis.edu:4904/empbs/upload
    Started at        : 2013-10-08 11:56:26
    Started by user   : oracle
    Last Reload       : (none)
    Last successful upload                       : (none)
    Last attempted upload                        : (none)
    Total Megabytes of XML files uploaded so far : 0
    Number of XML files pending upload           : 0
    Size of XML files pending upload(MB)         : 0
    Available disk space on upload filesystem    : 69.43%
    Collection Status                            : Collections enabled
    Heartbeat Status                             : OMS is unreachable [bad response]
    Last attempted heartbeat to OMS              : 2013-10-08 14:30:13
    Last successful heartbeat to OMS             : (none)
    Next scheduled heartbeat to OMS              : 2013-10-08 14:30:43
    Agent is Running and Ready
    and the upload fails with the error EMD upload error:full upload has failed: uploadXMLFiles skipped :: OMS version not checked yet. If this issue persists check trace files for ping to OMS related errors. (OMS_DOWN) which makes sense. Searching the web I found a number of suggestions including securing the agent, which I was able to do and resynching the agent from the console which I am *not* able to do as the agent and targets are not showing in the console.
    The targets.xml file on the agent host has one line -
    <Targets AGENT_TOKEN="CB22F0CA441C8CDECF3CA3ABA0D8C02C9AACFF98A41D653CFB2F41B7BC41EE0D"/>
    and I realize that is not at all a complete file. In the gcagent.log file I see ping errors -
    2013-10-08 14:29:43,596 [319:8C08BF97] INFO - attempting initial heartbeat
    2013-10-08 14:29:43,805 [319:8C08BF97] WARN - improper ping interval (EM_PING_NOTIF_RESPONSE: ERROR- Failed to update Target type Metadata)
    2013-10-08 14:29:43,810 [319:8C08BF97] WARN - Ping protocol error
    o.s.gcagent.ping.PingProtocolException [OMS sent an invalid response: "ERROR- Failed to update Target type Metadata"]
    The firewall is open and the agent is using the correct port and I am stumped. If anyone has any suggestions I would certainly appreciate them.
    Thank you.
    Bill Wagman

    Is this a newly installed agent?
    Did it work before? What has changed since it last worked?
    Anything in the emagent.trc file?
    $emctl upload
    EMD upload error: uploadXMLFiles skipped :: OMS
    version not checked yet..
    this is emctl status agent[dev01/AixAgentOracleHome/agent10g]$emctl status agent
    Oracle Enterprise Manager 10g Database Control Release 10.1.0.4
    Copyright (c) 1996, 2004 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.4.0
    OMS Version : UnknownThe agent does not connect successfully with the OMS, no version there.

  • Unknown issue while loading .dbf file by sql loader

    Hi guys,
    I am having a unknown issue while loading .dbf file by sql loader.
    I need to load .dbf data into oracle table.for this I converted .dbf file by just changing its extension as .csv . file structure after changing .dbf to .csv --
    C_N_NUMBER,COMP_CODE,CPT_CODE,C_N_AMT,CM_NUMBER
    1810/4,LKM,30,45,683196
    1810/5,LKM,30,45,683197
    1810/6,LKM,30,45,683198
    1810/7,LKM,30,135,683200
    1810/8,LKM,30,90,683201
    1810/9,LKM,1,45,683246
    1810/9,LKM,2,90,683246
    1810/10,LKF,1,90,683286
    2810/13,LKJ,1,50.5,680313
    2810/14,LKJ,1,50,680316
    1910/1,LKQ,1,90,680344
    3910/2,LKF,1,238.12,680368
    3910/3,LKF,1,45,680382
    3910/4,LKF,1,45,680395
    7910/5,LKS,1,45,680397
    7910/6,LKS,1,90,680400
    7910/7,LKS,1,45,680401
    7910/8,LKS,1,238.12,680414
    7910/9,LKS,1,193.12,680415
    7910/10,LKS,1,45,680490
    then I am loading it by sql loader.but I am getting always error below ...
    Record 1: Rejected - Error on table C_N_DETL_TAB, column CPT_CODE.
    ORA-01438: value larger than specified precision allowed for this column
    Record 2: Rejected - Error on table C_N_DETL_TAB, column CPT_CODE.
    ORA-01438: value larger than specified precision allowed for this column
    table structure-
    create table C_N_DETL_tab
    "C_N_NUMBER" VARCHAR2(13),
    "COMP_CODE" VARCHAR2(3),
    "CPT_CODE" NUMBER(4),
    "C_N_AMT" NUMBER(20,18),
    "CM_NUMBER" NUMBER(7)
    control file-
    options(skip=1)
    load data
    infile '/softdump/pc/C_N_DETL.csv'
    badfile '/softdump/pc/C_N_DETL.bad'
    discardfile '/softdump/pc/C_N_DETL.dsc'
    into table C_N_DETL_tab
    truncate
    FIELDS TERMINATED BY ","
    OPTIONALLY ENCLOSED BY '"'
    TRAILING NULLCOLS
    C_N_NUMBER CHAR,
    COMP_CODE CHAR,
    CPT_CODE INTEGER,
    C_N_AMT INTEGER,
    CM_NUMBER INTEGER
    but guys when I am increasing size of all columns of tabel upto its max value then data is loaded but when I am checking column max length after data loaded then its very less..
    changed table structure-
    create table C_N_DETL_tab
    "C_N_NUMBER" VARCHAR2(130),
    "COMP_CODE" VARCHAR2(30),
    "CPT_CODE" NUMBER(32), ---- max value of number
    "C_N_AMT" NUMBER(32,18), ---- max value of number
    "CM_NUMBER" NUMBER(32) ---- max value of number
    now i ma running ...
    sqlldr express/express control=C_N_DETL.ctl log=C_N_DETL.log
    o/p-
    Table C_N_DETL_TAB, loaded from every logical record.
    Insert option in effect for this table: TRUNCATE
    TRAILING NULLCOLS option in effect
    Column Name Position Len Term Encl Datatype
    ---------- ---- ---- C_N_NUMBER FIRST * , O(") CHARACTER
    COMP_CODE NEXT * , O(") CHARACTER
    CPT_CODE NEXT 4 INTEGER
    C_N_AMT NEXT 4 INTEGER
    CM_NUMBER NEXT 4 INTEGER
    Table C_N_DETL_TAB:
    20 Rows successfully loaded.
    0 Rows not loaded due to data errors.
    0 Rows not loaded because all WHEN clauses were failed.
    0 Rows not loaded because all fields were null.
    select max(length( CPT_CODE))from C_N_DETL_tab ---> 9
    can u tell me why I need to increase size of table columns upto max value?although length of data is soo much less.
    kindly check it..thnx in advance...
    rgds,
    pc

    No database version of course. Unimportant.
    If I recall correctly, it is 'integer external ' and you would best double quoting the alphanumerics (which you didn't ).
    Try changing integer in integer external in the ctl file.
    Sybrand Bakker
    Senior Oracle DBA

  • No phone service after a new iTunes version is issued

    I tried to use my phone yesterday and the call didn't go through. When I connected to my computer I saw that a new iTunes version (9.0.2.25) had been issued, and when I synched with iTunes it restored my connectivity. The same thing happened the previous time a new version was issued. There was no message on the phone saying it needed to connect to iTunes. I rely on the phone for continuous service in case of emergency, and don't sync it every day. If I were out of town I would be out of luck. Does Apple (or AT&T) de-activate the service each time a new version is issued, and rely on customers to re-sync when their phone goes dead?

    I have not experienced the same - not with any iTunes update when released.

  • [New SAP NetWeaver 7.01 ABAP Trial Version] - Installation issues

    Hi community
    thanks to SAP for this trial release with MaxDB 7.7
    Unfortunately the installation failed on my laptop. This is an extract of the error log:
    (Aug 26, 2008 1:29:15 AM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Aug 26, 2008 1:29:15 AM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Aug 26, 2008 1:30:15 AM), Install, com.sap.installshield.CheckServicesAction, err, An error occurred and product installation failed.  Look at the log file D:sapnwNSPlog.txt for details.
    (Aug 26, 2008 1:30:15 AM), Install, com.sap.installshield.CheckServicesAction, err, ProductException: (error code = 601; message="Services failed to start (see the log for details)")
    STACK_TRACE: 12
    ProductException: (error code = 601; message="Services failed to start (see the log for details)")
    (Aug 26, 2008 1:30:16 AM), Install, com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct, err, An error occurred and product uninstallation failed.  Look at the log file D:sapnwNSPlog.txt for details.
    (Aug 26, 2008 1:30:16 AM), Install, com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles, err, ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
    STACK_TRACE: 15
    ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
    My problem is not completely new, there are some hint in the Troubleshooting Guide for NW2004s ABAP Trial Version (step 4)
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/6055f523-df6e-2910-f0bf-acccbb0a7d37
    and on this post another user had a problem similar to mine
    NW04s installation errors
    I have jdk 1.6 installed on my machine but there are no environment variables for java executables.
    Is my problem caused but the java previously installed on the machine? If so, I can remove the jdk and retry installation
    In this case it could be useful in my opinion to include this issue in the FAQ, it can be helpful for other users too.
    Best Regards,
    Valerio

    I have problems installing..in windows vista business
    I get this error
    (Oct 10, 2008 8:02:36 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, An error occurred and product installation failed.  Look at the log file C:\sapdb\NSP\log.txt for details.
    (Oct 10, 2008 8:02:36 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/Users/Ariel/AppData/Local/Temp/MaxDBSAPNWPREV.log")
    STACK_TRACE: 22
    ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/Users/Ariel/AppData/Local/Temp/MaxDBSAPNWPREV.log")
         at com.sap.installshield.maxdb.maxdb_call_sdbinst.install(maxdb_call_sdbinst.java:193)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProduct(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(Unknown Source)
         at com.installshield.wizard.service.AbstractService.invokeImpl(Unknown Source)
         at com.installshield.product.service.product.GenericProductService.installProduct(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installAssembly(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.access$900(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

  • Adobe Reader appears as Product Version Unknown

    I tried to list the installed Adobe Reader Versions on all of our PCs.
    It produces a lot of "Unknown" versions. I assume it is a subverison specific Version 9.0. It is installed within directory C:\Programme\Adobe\Reader 9.0\Reader but on other PCs the Version 9.0.0 is displayed in the list.
    How can I solve such an inconsistancy?
    Klaus

    BachmannK,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • ORA-12514 & Listener Status Instance status Unknown issue

    Dear All,
    Database Version - 10.2.0.5.0
    Operating System - Windows XP
    I am using Oracle 10g version, which has two services (bit10g and ora10g) installed on it.
    Service ora10g was working before upgradation of Database to 10.2.0.5.0 and it was fine.
    On upgradation I was unable to start and connect using ora10g so I created another that is bit10g.
    Service bit10g was working fine for quite a long time. The last I worked and connected was on thu and it was connecting with no issues.
    Now when I am trying to connect to database today I am unable to connect as I am getting
    ORA12514 - TNS:listener does not currently know of service.
    Secondly I tried to search forums which guided me to check the Listener Status.
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\Admin>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 10.2.0.5.0 - Production on 12-JAN-2013 11:42
    :54
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=toshiba-arif)(PORT=1521)
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 10.2.0.5.0 - Produ
    ction
    Start Date                12-JAN-2013 11:18:12
    Uptime                    0 days 0 hr. 24 min. 43 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   C:\ora10g\product\10.2.0\db_1\network\admin\listener.o
    ra
    Listener Log File         C:\ora10g\product\10.2.0\db_1\network\log\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=toshiba-arif)(PORT=1521)))
    Services Summary...
    Service "Oracle8" has 1 instance(s).
      Instance "bit10g", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfullyFollowing is my listener.ora file
    # listener.ora Network Configuration File: C:\ora10g\product\10.2.0\db_1\NETWORK\ADMIN\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (GLOBAL_DBNAME = Oracle8)
          (SID_NAME = bit10g)
    LISTENER =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = toshiba-arif)(PORT = 1521))
      )Please note that I am a developer with no DBA exposure.
    So please guide me so that I will be able to resolve my issue.
    Thanks & Regards
    Arif Khadas

    Once again Thanks Paul for your quick response.
    I also have Oracle 9i installed on my machine but the service and Listener for 9i is stopped.
    Following is the tnsnames.ora for 9i
    # TNSNAMES.ORA Network Configuration File: C:\oracle\ora92\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    BIT10G =
    (DESCRIPTION =
    (ADDRESS =
    (PROTOCOL = TCP)
    (HOST = toshiba-arif)
    (PORT = 1521)
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = bit10g)
    BIT_ORA9I =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = IAS)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ORA9I)
    ORA10G =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = toshiba-arif)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ora10g)
    ORA9I =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = toshiba-arif)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ora9i)
    INST1_HTTP =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = AH-IBM)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    CRCPROD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.1.1.185)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = bridges)
    IAS_ORA10G =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = IAS)(PORT = 1522))
    (CONNECT_DATA =
    (SID = ORA10G)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    BIT_ORA10G =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = IAS)(PORT = 1522))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ORA10G)
    )

  • SAP NW CE 7.1 EHP1 NWDS Preview Version Installation issue

    I am running into follow error message when trying to install NWDS of SAP NW CE 7.1 EHP1 Preview Version
    Error Message:
    Unable to complete action for feature "SAP NetWeaver Developer Studio Java EE" due to errors
    Error Details:
    Unable to complete action for feature "SAP NetWeaver Developer Studio Java EE" due to errors.
      Unable to complete action for feature "SAP NetWeaver Developer Studio Facades" due to errors.
        Execution failed! Commmand: "msiexec.exe /norestart /qb /i librfc32.msi /lvx C:DOCUME1PEdalaLocal SettingsTempcom.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log ALLUSERS=2 REBOOT=ReallySuppress". Exit value: "1639". Working directory: "C:SAPCE-EPH1NWDSIDENWDS_platformeclipse eaturescom.sap.netweaver.developerstudio.facades_7.1.0.081107100357". Log file: "C:DOCUME1PEdalaLocal SettingsTempcom.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log".
        Execution failed! Commmand: "msiexec.exe /norestart /qb /i librfc32.msi /lvx C:DOCUME1PEdalaLocal SettingsTempcom.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log ALLUSERS=2 REBOOT=ReallySuppress". Exit value: "1639". Working directory: "C:SAPCE-EPH1NWDSIDENWDS_platformeclipse eaturescom.sap.netweaver.developerstudio.facades_7.1.0.081107100357". Log file: "C:DOCUME1PEdalaLocal SettingsTempcom.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log".
      Unable to complete action for feature "SAP NetWeaver Developer Studio Facades" due to errors.
        Execution failed! Commmand: "msiexec.exe /norestart /qb /i librfc32.msi /lvx C:DOCUME1PEdalaLocal SettingsTempcom.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log ALLUSERS=2 REBOOT=ReallySuppress". Exit value: "1639". Working directory: "C:SAPCE-EPH1NWDSIDENWDS_platformeclipse eaturescom.sap.netweaver.developerstudio.facades_7.1.0.081107100357". Log file: "C:DOCUME1PEdalaLocal SettingsTempcom.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log".
        Execution failed! Commmand: "msiexec.exe /norestart /qb /i librfc32.msi /lvx C:DOCUME1PEdalaLocal SettingsTempcom.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log ALLUSERS=2 REBOOT=ReallySuppress". Exit value: "1639". Working directory: "C:SAPCE-EPH1NWDSIDENWDS_platformeclipse eaturescom.sap.netweaver.developerstudio.facades_7.1.0.081107100357". Log file: "C:DOCUME1PEdalaLocal SettingsTempcom.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log".
      Execution failed! Commmand: "msiexec.exe /norestart /qb /i librfc32.msi /lvx C:DOCUME1PEdalaLocal SettingsTempcom.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log ALLUSERS=2 REBOOT=ReallySuppress". Exit value: "1639". Working directory: "C:SAPCE-EPH1NWDSIDENWDS_platformeclipse eaturescom.sap.netweaver.developerstudio.facades_7.1.0.081107100357". Log file: "C:DOCUME1PEdalaLocal SettingsTempcom.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log".
    Before error message is displayed, I get Windows Pop message with Windows Installer message as below:
    Windows ® Installer. V 3.01.4000.1823
    msiexec /Option 
    Install Options
              i - Status messages
              w - Nonfatal warnings
              e - All error messages
              a - Start up of actions
              r - Action-specific records
              u - User requests
              c - Initial UI parameters
              m - Out-of-memory or fatal exit information
              o - Out-of-disk-space messages
              p - Terminal properties
              v - Verbose output
              x - Extra debugging information
              + - Append to existing log file
              ! - Flush each line to the log
    - Log all information, except for v and x options
         /log
              Repairs a product
              p - only if file is missing
              o - if file is missing or an older version is installed (default)
              e - if file is missing or an equal or older version is installed
              d - if file is missing or a different version is installed
              c - if file is missing or checksum does not match the calculated value
              a - forces all files to be reinstalled
              u - all required user-specific registry entries (default)
              m - all required computer-specific registry entries (default)
              s - all existing shortcuts (default)
              v - runs from source and recaches local package
    Setting Public Properties
    Consult the Windows ® Installer SDK for additional documentation on the
    command line syntax.
    Copyright © Microsoft Corporation. All rights reserved.
    Portions of this software are based in part on the work of the Independent JPEG Group.
    Please advice?
    Best regards,
    Sridhar

    Hi,
    Although I have not encountered this error in my installation copy - you can try the following:
    Take the zip file for NWDS to another machine and install it. If you do get the same error - then the zip file was damanged in the transfer - if not then probably it is an issue with the Microsoft Installer files that you are using. If you are using a legal version of Windows then upgrade to the latest updates and then try again. You can try the same steps after shutting down and restarting your PC.
    Most probably the zip file is damaged since the MSI has run successfully.for the CE WAS.
    p256960.

  • Version management issue

    I am two issues with Version Management in PR and POs:
    - New version can only be added onces the PR or PO is release by final authority. Below is the scenario:
    I have created a PR and have it release by the two approving authorities. Now I want make changes in the PR. I have it cancelled from the both approving authorities and make the required changes. Now logically the system should allow the initiator to add the new version so that requisition so that the approving authrities must know that the second version of requisition is being released. But the system doez not let the initiator add the version prior to release. Do we have any solution to this?
    - second issue is that once the second version is added in the PR and we need to make some more changes and create a thrid version, system doznot let user to revoke the release.

    Dear ABC,
    For your issue 1, please check if version already set to completed and an message output already sent to vendor.
    This is the prerequisites for the new version to be created. A new version will only be created when the information
    had sent to vendor.
    Regards,
    ian, Wong Loke Foong

  • SAP NetWeaver 7.02 ABAP Trial Version Installation issues

    I have been trying to install 7.02 trial version for a while but I keep running into issues. At present I am stuck, the install has been at the same load for the past 6 hours with no indication of an error or progress. Below is the last part of the program starter output screen and the logs. Please help
    INFO       2011-02-28 21:16:35.505 [synxccuren.cpp:775]
               CSyCurrentProcessEnvironmentImpl::setUser() lib=syslib module=syslib
    Switched to user: cfm\nspadm.
    INFO       2011-02-28 21:16:35.661
               CJSlibModule::writeInfo_impl()
    Output of "C:\Program Files\Java\j2re1.4.2\bin\java.exe" -classpath migmon.jar -showversion -Xmx1024m com.sap.inst.migmon.imp.ImportMonitor -sapinst is written to the logfile import_monitor.java.log.
    Logs:
    Import Monitor jobs: running 2, waiting 1, completed 34, failed 0, total 37.
    Loading of 'SAPDFACT' import package: OK
    Import Monitor jobs: running 1, waiting 1, completed 35, failed 0, total 37.

    The install finally progressed but I am now getting the following error -from C:\usr\sap\NSP\DVEBMGS00\work\dev_disp-please help if you know th issue
    Memory usage of all processes
    PID
    Image
    Instance
    Work.Set
    WS Peak
    Priv.Pages
    PP Peak
    Pg Fault
    7080
    sapstartsrv.exe
    19532 K
    27284 K
    54172 K
    106692 K
    8
    5852
    conhost.exe
    384 K
    2312 K
    556 K
    32188 K
    0
    5056
    msg_server.EXE
    [MS] NSP_00
    7932 K
    7932 K
    8592 K
    8592 K
    1
    6976
    conhost.exe
    2336 K
    2336 K
    560 K
    560 K
    0
    8864
    disp+work.EXE
    27872 K
    27872 K
    66672 K
    67484 K
    6
    6684
    conhost.exe
    2332 K
    2332 K
    556 K
    556 K
    0
    Sum
    60388 K
    131108 K
    Error 11 while initializing OS dependent part.
    ERROR => DpEmInit: EmInit (1) [dpxxdisp.c   10357]
    ERROR => DpMemInit: DpEmInit (-1) [dpxxdisp.c   10271]
    DP_FATAL_ERROR => DpSapEnvInit: DpMemInit
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 01 18:20:26 2011
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Wed Mar 02 02:20:26 2011
    ========================
    No Type  Pid    Status  Cause Start Rstr  Err Sem Time Program          Cl  User         Action                    Table
    Dispatcher Queue Statistics               Wed Mar 02 02:20:26 2011
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    0
    2000
    0
    0
    --------++++--
    +
    DIA
    0
    0
    2000
    0
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          0
    wake_evt_udp_now     0
    wake events           total     0,  udp     0 (  0%),  shm     0 (  0%)
    since last update     total     0,  udp     0 (  0%),  shm     0 (  0%)
    Dump of tm_adm structure:               Wed Mar 02 02:20:26 2011
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Wed Mar 02 02:20:26 2011
    =============================
    Slots: 500, Used: 0, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 01 18:20:31 2011
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >cfm_NSP_00                              < (normal)
    DpJ2eeDisableRestart
    DpHalt: switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    DpHalt: stop work processes
    DpHalt: terminate gui connections
    DpHalt: wait for end of work processes
    DpHalt: not attached to the message server
    DpHalt: cleanup EM
    EsCleanup( )
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 8864) [dpxxdisp.c   11177]
    DpHalt: Good Bye .....

  • AD-Exchange Connector versions Incompatibility Issues : Extremely URGENT

    Hi,
    We have tested our code in dev environment (AD, Exchange versions 2003). But in production env, the root context for the two are different from those of dev environment.
    In dev env: root context are: DC=company,DC=devxyz for ADITResource,Exchange
    In prod env: root context are: DC=company,DC=devxyz for ADITResource ; DC=devxyz for Exchange.
    Exchange being dependent on AD, when AD is provisioned, Exchange fetches the ObjectGUID of AD User, and searches in parent root context (DC=devxyz) which return some garbage value -50 corresponding to null value. SInce ObjectGUID is not fetched, Exchange cannot be provisioned.
    Please give some pointers for this issue. It is very critical at this stage as we cannot do any changes in the existing configurations.
    Regards,
    Deepika

    Exchange fetches the ObjectGUID of AD User, and searches in parent root context (DC=devxyz) which return some garbage value -50 corresponding to null value. SInce ObjectGUID is not fetched, Exchange cannot be provisioned.If it is facing issue only with objecrGUID then You can write your custom JNDI code to fetch this value and update in some field.
    Just make a task in Exchange Process Definition which will do this thing.

  • SQL Developer 2.1 version migration issue

    Hello Everyone,
    Since I was unable to find a similar topic on the forum, I'm posting now the problem I'm facing: I have downloaded release 2.1 for Windows 32 bit (without JDK) and I unzipped it in an empty 'sqldeveloper' folder on a Windows XP machine.
    Upon starting it up, there is no migration wizard popping up to allow me to import the existing settings from release 1.2.1 residing in a parallel folder 'sqldeveloper.1.2.1'. If it works, does it import anything more than connections?
    I tried to use the tools tab and explore various documentation sources (readme, help, forum, internet search) with no luck so far.
    I would guess there is something wrong in my deployment procedure since nobody else has complained of similar issues.
    Any hints or suggestions you may want to share would be greatly appreciated.
    Thank you,
    Dan

    The original poster mentioned that he was migrating from 1.2.1, a really old version. That version did/does not store user settings under "Application Data", but in "sqldeveloper/system" in its' own installation directory. Unfortunately, SQL Dev. 2.1 will (apparently) not let you import settings from anything prior to 1.5; at least I was not able to do it when I tried just now (I have all of my previous SQL Developer installations still on my hard drive). It looks to me like what he will have to do is first upgrade from 1.2.1 to 1.5.5 (which will allow him to import his old 1.2.1 settings), and then upgrade from 1.5.5 to 2.1.
    Ed. H.

  • Version incompatibility issue with Interop.SAPbobsCOM.dll in SBO 2004

    Hi,
    I have encountered an incompatibility issue in DI API 2004 across different patch level-versions. Originally, I developed an application in SBO 2004 pl4 environment. Now, some of the customers who were installing the application, notified me that the application has a login problem. It turned out that the CompanyClass.connect() method returns an error message "object reference not set to an instance of an object", when the DI API version installed in the production environment is higher (in this case, pl7) than the DI API version which was used in the development environment.
    I figured out that the problem can be fixed by replacing the Interop.SAPbobsCOM.dll file in the application directory by a newer version that reflects the DI API that is installed in the system. However, it seems a rather lousy workaround, if the customer needs to manually replace the dll. Maybe the installer could be customized to "sniff" the correct DI API level, but this too would be a pretty kludgy solution.
    Does anyone know a better solution to this problem ?
    Regards,
    Henry

    normally this is not a problem as long as they don't change the signatures on the DI-API (which they said they wouldn't) but it appears in P5 they changed that signature... we noticed some enums that got added and a few minor changes.

  • Adobe professional version 8 issue

    I am in a document that I want to change my font type
    and I get the following error message"no avail system fonts
    can not add or delete text"
    Evidently the font I need is helvecchia condensed font
    my version of office is 2003 so I am not sure if it is an
    adobe issue or microsoft word problem
    any ideas

    Thank you for your advises but I have the impression my initial question is still not being answered.
    I have tried to create the fields in Adobe Pro 8 version, via forms, text field tool and named all the fields.
    Than I saved it and enabled the usage rights for Adobe Reader but opening this file from another computer in Adobe Reader, it allows me only to add comments and markups in the document, not filling out the form in the form fields I thought I created before?
    Now what to do? Did I do something wrong with the creation of form fields, can you please describe the exact path/steps to take?
    Appreciate your prompt reply.

  • Elements 12 version set issue in Organizer

    The inclusion of edited versions in the Elements 12 Organizer inexplicably stopped working with in the last 3 weeks (I've had the software since June 2014). If I navigate to the edited photo in Windows Explorer, it is there but I cannot see it in the Organizer media window or folder view. It's as if it is invisible to the Elements 12 program.  I have tried importing into the Organizer but it tells me the file all ready exist. To which I say, duh? I know that. I have not downloaded any new software, only standard updates, and to my knowledge, nothing has changed on my PC. Any suggestions as to what the issue is?

    Thank you for the reply, MichelBParis.
    I have done as suggested. Adobe Application Manager says my "applications are all up-to-date as of 1 minute ago."
    Below is a copy of system info.
    Elements Organizer 12.0.0.0
    Core Version: 12.1 (20140303.12.1.49334)
    Language Version: 12.0 (20130903.r.43239)
    Important Drivers / Plug-ins / Libraries:
    Microsoft DirectX Version: 9.0
    Apple QuickTime Version: Not installed
    Adobe Reader Version: Not installed
    Adobe Acrobat Version: Not installed
    Are there any other suggestions as to what could cause version set feature to stop working properly?

Maybe you are looking for

  • Mountain Lion Desktop crash? Randomly it returns me to the login screen and I have restart all my apps

    So after install of Mountain Lion (never happened before) my desktop crashes and it returns me to the login screen.  After I login I have to restart all my apps. One morning this happened 5+ times in under an hour.  So my productivity has gone down :

  • When i send to idvd, how good is the quality?

    when i send my video to idvd, is it full quality then idvd compresses it or what?

  • MuseJAssert:Error calling selector function: Error:Invalid argument

    Some people are reporting this error on one page of a site I am building.  Those users are all using IE for a browser. The site is www.shermanoaksstreetfair.org and it comes up with the main stage schedule page.  I took out all questionable links, bu

  • Red Eye Malfunction

    Help! I was using the red eye function, and a black spot appeared on my daughter's white dress. Initially, I fixed the red eye problem, but in the process didn't notice a black spot (caused by the red eye function) on her dress before clicking apply

  • Extraction Checker RSA3

    Hi, I created a generic DataSource  using a function module and i'm testing it using RSA3. I'm trying to extract the records by specifying a range of values for a field in the DataSource , but RSA3 extracts all the records without considering the spe