Could Not Open Service Order as Draft

Hi All,
               I have set approval procedure for purchase order (Both Items and Servie Type). when we make service purchase order, system is sending messges to approval person, but appproval person could not see that draft, whenever he trid to open that draft, SAP is getting closed.This is happening for all the service order's.But Item type orde is working fine. I have tried in sales module also, same thing is happening. Kindly help me to fix this issue.
Notes: We are using SAPB1 2005B PL5 Version.
Thanks & Regards
PothalRaj.P

PothalRaj,
Please check if the Approving Person has the correct license setting.  This apart I cannot think of an authorization specifically for this since Item Orders approval works
Suda

Similar Messages

  • OAF : Could not open PDF from Self Service Page or Jdeveloper.

    Hi Friends,
    We are on R12 Applications.
    Appreciate any help.
    Requirement :
    1. Open the PDF from Self Service Page.
    Error :
    Adobe Reader Could Not Open the PDF because it is either not a supported file type or the file is damaged.
    Below is my Controller and AM code
    ======================
    Controller Code
    ==========
    /*===========================================================================+
    | Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
    | All rights reserved. |
    +===========================================================================+
    | HISTORY |
    +===========================================================================*/
    package XXX.oracle.apps.ak.xml.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.xml.parser.v2.XMLNode;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.server.OADBTransactionImpl;
    import oracle.apps.xdo.XDOException;
    import oracle.apps.xdo.oa.schema.server.TemplateHelper;
    import oracle.cabo.ui.data.DataObject;
    import oracle.jbo.XMLInterface;
    * Controller for ...
    public class XMLIntegrationCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    public static final int DEPTH = 4;
    public static final int APP_ID = 20003;
    public static final String APP_NAME = "XBOL";
    public static final String TEMPLATE_CODE ="Emp_Template";
    public static final int BUFFER_SIZE = 32000;
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModuleImpl am= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
    am.invokeMethod("initEmpVO");
    am.invokeMethod("getEmpDataXML");
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModuleImpl am= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
    String event = pageContext.getParameter("event");
    System.out.println("XXX : Event "+event);
    if("GenerateReport".equals(event))
    // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    try {
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=EmpReport.pdf";
    response.setHeader("Content-Disposition",contentDisposition);
    response.setContentType("application/PDF");
    // Get the Data XML File as the XMLNode
    XMLNode xmlNode = (XMLNode) am.invokeMethod("getEmpDataXML");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    xmlNode.print(outputStream);
    ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    //Generate the PDF Report.
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    APP_NAME,
    TEMPLATE_CODE,
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    // Write the PDF Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    catch(Exception e)
    response.setContentType("text/html");
    throw new OAException(e.getMessage(), OAException.ERROR);
    pageContext.setDocumentRendered(true);
    AM CODE
    ======
    package subba.oracle.apps.ak.xml.server;
    import java.io.ByteArrayOutputStream;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.apps.fnd.framework.test.inputscanner.server.EmpVOImpl;
    import oracle.help.common.xml.*;
    import oracle.jbo.XMLInterface;
    import oracle.xml.parser.v2.XMLDocument;
    import oracle.xml.parser.v2.XMLElement;
    import oracle.xml.parser.v2.XMLNode;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class testXMLAMImpl extends OAApplicationModuleImpl {
    /**This is the default constructor (do not remove)
    public testXMLAMImpl() {
    /**Sample main for debugging Business Components code using the tester.
    public static void main(String[] args) {
    launchTester("XXX.oracle.apps.ak.xml.server", /* package name */
    "testXMLAMLocal" /* Configuration Name */);
    public void initEmpVO()
    EmployeeVOImpl vo = getEmployeeVO1();
    if(vo == null)
    MessageToken errTokens[] = {
    new MessageToken("OBJECT_NAME", "EmployeeVO1")
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", errTokens);
    } else
    vo.executeQuery();
    public void getEmpDataXML()
    try {
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    OAViewObject vo = (OAViewObject)findViewObject("EmployeeVO1");
    ((XMLNode) vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS)).print(outputStream);
    System.out.println(outputStream.toString());
    catch(Exception e)
    throw new OAException (e.getMessage());
    /**Container's getter for EmployeeVO1
    public EmployeeVOImpl getEmployeeVO1() {
    return (EmployeeVOImpl)findViewObject("EmployeeVO1");
    }

    Try the OA Framework Forum

  • TS3299 Upgade error: Could not open key: HKEY_CURRENT_USER\SOFTWARE\Apple Inc.\Internet Services. Any advice?

    During a standard iTunes upgrade to the latest version (11.1.4 for Windows Vista), the installation failed with the following error message: Could not open key: HKEY_CURRENT_USER\SOFTWARE\Apple Inc.\Internet Services. Does anyone have any advice as to how I can fix this and reinstall iTunes? When I try to open iTunes I get the following message: iTunes.exe. This application has failed to start because MSCVR80.dll was not found. Re-installing the application may fix this problem. When I try to run the installer I get the above error so I'm going round in circles!

    Solved: I had somehow lost permission to access the HKEY above (or rather, its parent key HKEY_CURRENT_USER\SOFTWARE\Apple Inc.) so I went to the registry editor and checked the 'Full Control' box for the key and the installer now works.
    I used this site to fix the MSCVR80.dll error: http://pcsupport.about.com/od/findbyerrormessage/a/msvcr80-dll-not-found-missing -error.htm

  • Reporting Services 2008 R2 configuration error: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server

    Hi, I am using SQL Server 2008 R2 and on one of our dev boxes I am trying to setup ReportServer using ReportingServices Configuration manager. This is was installed longtime back and during installation they created a service account for reporting services.
    When I try to configure the service account I do not get the service account created during the installation in the pull down and if I were to use something different I get this "Named Pipes Provider, error: 40 - Could not open a connection to SQL Server"
    error.
    Thanks in advance...........
    Ione

    Hi,
    Take a look at this blog - http://blogs.msdn.com/b/sql_protocols/archive/2007/03/31/named-pipes-provider-error-40-could-not-open-a-connection-to-sql-server.aspx
    I hope it will help.

  • Named pipes provider : could not open a connection to a SqL server . . . . .

    Hey all, i need help 
        I have a job which was running quite peacefully for the last EVER, but since last Saturday it keeps failing  and then run successfully and then fails. . . . .and gives me the below error.
       Executed as user: Sx\xxx. Microsoft (R) SQL Server Execute Package Utility  Version 10.0.5500.0 for 64-bit  Copyright (C) Microsoft Corp 1984-2005. All rights reserved.    Started:  9:00:00 PM  Progress: 2014-03-11
    21:00:02.16     Source: {122F32F1-F99F-4A5A-BA70-F5426B2747DA}      Executing query "DECLARE @Guid UNIQUEIDENTIFIER      EXECUTE msdb..sp...".: 100% complete  End Progress  Progress: 2014-03-11 21:00:02.19
        Source: Manually replicate tables      Executing query "  USE DBNAME  ".: 50% complete  End Progress  Error: 2014-03-11 21:00:22.35     Code: 0xC002F210     Source: Manually replicate
    tables Execute SQL Task     Description: Executing the query "          exec usp_ReplicateEsourceTable 'Ebase'; ..." failed with the following error: "Named Pipes Provider: Could not open a connection to SQL
    Server [53].   OLE DB provider "SQLNCLI10" for linked server "ServerName" returned message "Login timeout expired".  OLE DB provider "SQLNCLI10" for linked server "ServerName" returned message "A
    network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information
    see SQL Server Books Online.".". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.  End Error  Progress: 2014-03-11
    21:00:22.45     Source: Notify on failure      Executing query "exec msdb.dbo.sp_notify_operator   @profile_name =...".: 100% complete  End Progress  DTExec: The package execution returned DTSER_FAILURE (1).
     Started:  9:00:00 PM  Finished: 9:00:23 PM  Elapsed:  22.25 seconds.  The package execution failed.  The step failed.
    I have already tested the linked server connection between those servers and its fine. And what is weird is that when i run the job manually it runs successfully. 
      Any ideas? 

    Hi,
    How often does the job run? Does the query fail intermittently?
    I suggest you check the following configuration on both servers:
    1. In SQL Server Configuration Manager, expand SQL Server Native Client Configuration, right-click
    Client Protocols, and then click Properties. What’s the order of protocol?
    2. Check if the default port of TCP/IP  is set to 1433.
    By default, the top protocol is to use TCP/IP and then Named Pipes. There are two possible situations:
    1. Connection fails and client protocol is using TCP/IP 1433.
    When server A remotes to server B, it will use TCP/IP connection. If it encounters some issue during connecting (such as network issues), it will use Named Pipes instead. If the Name Pipes 445 still fails, thus the above error message will
    be thrown out. It will use Name Pipes afterwards until the SQL Server service is restarted.
    2. The port number is not 1433.
    However, the remote machine is listening 1433. Then, the linked server will trying to use TCP/IP first. Because of the port error, it will change to Name Pipes.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Listener_scan1  could not find service name

    Hi All,
    I have installed 11203 on 2 node RAC cluster. I have created 1 scan listener. when i give lsnrctl status LISTENER_SCAN1, I am getting below error
    TNS-01101: Could not find service name LISTENER_SCAN1
    Please give your suggestions and help on this issue.
    Thanks,
    NR

    HI,
    Try to configure the tnsnames.ora in this format and let me know
    if you are using load balancing , try
    TBESTDB =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = node1_vip)(PORT = 1531))
    (ADDRESS = (PROTOCOL = TCP)(HOST = node2_vip)(PORT = 1531))
    (LOAD_BALANCE = yes)
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = TBESTDB)
    And you can add below if you would like to  connect to specific instance
    RAC1 =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = rac1-vip)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = rac.oracle.com)
          (INSTANCE_NAME = rac1)
    RAC2=
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = rac2-vip)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = rac.oracle.com)
          (INSTANCE_NAME = rac2)
    Note: Replace the SID, Servicename, hostname, port etc according to your environment, And also make sure that the tnsnames.ora should be in a proper format(eg : even the opening and closing bracket should be in correct order. If u add additional space also it will throw error..)
    Regards,
    Pradeep. V

  • Could not open the ICU common library

    Dear all,
    I’ve done heterogeneous OS migration on our Solution Manager system release ver. 7.0 Ehp1, from HP-UX 11.31 to RedHat 6.5. Then we need to perform the system upgrade to version 7.1
    Kernel version is SAP Kernel :  720_EXT_REL.
    Database Client Library : OCI_112, 11.2.0.3.0, V1, default.
    created in  :  Linux GNU SLES-11 x86_64 cc4.3.4 use-pr121116
    ICU Version : 4.0.1 Unicode Version 5.1
    Everything is working fine. EarlyWatch reports are prepared. But when I checked the SLD http://saptst:54000/sld I’ve got the error “Internet
    Explorer cannot display the webpage”. I also checked with IP address and it’s the same error.
    With Chrome browser the error is “Oops! Google Chrome could not connect to saptst:54000”
    I checked the SLDCHECK and got:
    Exchange Infrastructure: Test LCR Connection
    Properties of RFC destination SAPSLDAPI RFC host:
    %%RFCSERVER%%
    program id: SAPSLDAPI_SMP gateway host: saptst
    gateway service: sapgw40
    Testing the RFC connection to
    the SLD java client...
    RFC ping was successful
    SLD server access
    settings:
    host name: saptst
    port number: 54000
    user : SLDAPIUSER
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function
    LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code 3
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    SAPSLDAPI RFC is working fine.
    But on the putty connection with the server I’ve got “Unknown function module: Function SLDJAVA_ACCESSOR_REQUEST not found”.
    I’ve checked the std_server0.out file in the work directory:
    Could not open the ICU common library. The following files must be in the path described by the environment variable
    "LD_LIBRARY_PATH":
    libicuuc.so.30, libicudata.so.30, libicui18n.so.30
    [nlsui0_mt.c 1620] pid = 3079
    LD_LIBRARY_PATH is well set in environment of the smpadm user.
    The RFC libraries in the /sapmnt/SMP/exe, /usr/sap/SMP/SYS/exe/run, /usr/sap/SMP/SCS01/exe
    and also in /usr/sap/SMP/DVEBMG40/exe are
    libicudata.so.34
    libicudata.so.40
    libicudecnumber.so
    libicui18n.so.34
    libicui18n.so.40
    libicuuc.so.34
    libicuuc.so.40
    There is no libicuuc.so.30, libicudata.so.30, libicui18n.so.30.
    I’ve also downloaded the last kernel patches, unpacked and checked the RFC libraries, but there were no libicuuc.so.30… with number 30.
    Why the system is searching for these libraries with 30, but not 34 or 40?
    Can you please help how to solve the error “Could not open the ICU common library”?
    Is this the problem why I can’t open the browser http://saptst:54000/sld and I got the error “Internet Explorer cannot display the webpage”?
    Thank you in advance.
    Best regards,
    Ruzica

    Dear all,
    I've tried to deployed Java with:
    SAPJEE10P_5-10003469.SCA
    SAPJEECOR10P_19-10003466.SCA
    SAPJTECHF10P_21-10003468.SCA,
    but the file for the SAPJTECHS, SAPJTECHS10P_26-10003467.SCA finished with the
    error again for "Could not open the ICU common library.
    The following files must be in the path described by
    the environment variable
    "LD_LIBRARY_PATH":
    libicuuc.so.30, libicudata.so.30, libicui18n.so.30
    The deployment failed with the following error:
    Starting Deployment of SQLTrace
    The SDM will now start SAP Web AS Java instance processes in order to perform online
    deployment. After that the deployment will proceed.
    It could take some time, so please be patient.
    Aborted:
    development component 'SQLTrace'/'sap.com'/'SAP AG'/'7.0010.20061103144726.0000'/'0', grouped by :SDM could not start the J2EE cluster on the host saptst! The online deployment is terminated. A timeout occured during the cluster running verification. (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).STARTUP_CLUSTER)
    Deployment of SQLTrace finished with Error (Duration 1801206 ms)
    Starting Deployment of SAP_JTECHS
    Aborted:
    software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.10.26.20121031152700''/'0':Failed deployment of SDAs:development
    component 'SQLTrace'/'sap.com'/'SAP AG'/'7.0010.20061103144726.0000'/'0' :
    aborted
    Please, look at error logs above for more information!
    Deployment of SAP_JTECHS finished with Error (Duration 918 ms)
    I've tried:
    #cd /usr/sap/SMP/DVEBMGS40/SDM/program/
    #./StopServer.sh
    #./sdm.sh jstartup mode=standalone
    #./sdm.sh j2eeenginestartstop timeoutmillisec=1800000
    #./sdm.sh jstartup mode=integrated
    #./StartServer.sh
    But still the error "SDM could not start the J2EE cluster on the host saptst" appeared again.
    Can you please advice what should I do to deploy the SAPJTECHS10P_26-10003467.SCA ?
    Thank you in advance,
    BR,
    Ruzica

  • I could not open iPhoto on my mac pro ...clicking on it report generates with just ok button enable

    i could not open iPhoto application tried to uninstall and install it again still same problem....
    Error message comes up like this :
    Process:               iPhoto [1365]
    Path:                  /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:            com.apple.iPhoto
    Version:               ???
    Build Info:            iPhotoProject-910029000000000~1
    App Item ID:           408981381
    App External ID:       729712666
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           iPhoto [1365]
    User ID:               501
    Date/Time:             2015-01-04 15:09:44.980 +1100
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        3D91453B-A9AC-9C65-61B6-B0E5F96324D5
    Time Awake Since Boot: 4600 seconds
    Crashed Thread:        0
    Exception Type:        EXC_BREAKPOINT (SIGTRAP)
    Exception Codes:       0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
      Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto
      Reason: image not found
    Binary Images:
        0x7fff6625c000 -     0x7fff66292837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
    Model: MacBookPro11,1, BootROM MBP111.0138.B11, 2 processors, Intel Core i5, 2.4 GHz, 8 GB, SMC 2.16f68
    Graphics: Intel Iris, Intel Iris, Built-In
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463531323634485A2D314736453120
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463531323634485A2D314736453120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x112), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 19 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0256F, 251 GB
    USB Device: Internal Memory Card Reader
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.2
    please help me out.....!!!!!!

    Thanks LarryHN for replying me I tried that as well but finally I got the solution, I have by mistake deleted one of the iTunes library framework file while removing the virus.
    Following steps are done by me to solve the problem:
    1) I have removed the iPhoto by dragging it into the trash from applications
    2) I have empty the trash
    3) I have shutdown the laptop
    4) while starting it back, press and hold the command and r button until the apple symbol goes off , after which you can select the reinstall OS option -> that will rebuilt your OS if something has been removed without removing your files or data.
    5) after completion, install the iPhotos from app store
    Now, its working perfectly

  • Can't access CD Drive: Could not open CD handler, 32.

    My CD drive isn't showing up in iTunes, so I ran the diagnostic tool.  Everything checked out except that I got "Unable to access audio CD" with a red dot next to it.
    This is the output of the diagnostic tool, has anyone else encountered this Could not open CD handler, 32 issue?
    Microsoft Windows 7 x64 Business Edition Service Pack 1 (Build 7601)
    LENOVO 4313CTO
    iTunes 11.2.2.3
    QuickTime not available
    FairPlay 2.6.12
    Apple Application Support 3.0.3
    iPod Updater Library 11.1f5
    VoiceOver Kit 1.4.2 (222093/222742)
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.1.1.3
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0040B50812948A28
    Current user is not an administrator.
    The current local date and time is 2014-06-13 12:19:35.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA NVS 3100M         
    Intel Corporation, Intel(R) HD Graphics
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: 2c11483344b4160ef38c549044196dd7
    iPodService 11.2.2.3 (x64) is currently running.
    iTunesHelper 11.2.2.3 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.3.0),
    E: HL-DT-ST DVDRAM GT30N, Rev LT10
    Audio CD in drive.
    Could not open CD handler, 32. There is a problem with the installation of the drive in Windows or the drive contains a copy protected CD.
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are:   10 16 24.
    The drive CDRW speeds are:   10.
    The drive DVDR speeds are:   10.
    The drive DVDRW speeds are:   10.
    Error Correction is turned on for importing audio CDs.
    Writing CD text is turned on in the preferences. If you’re having problems burning CDs, try turning this preference off.
    Force Optical Power Calibration before burn is turned on in the preferences.

    Hi, Mathew -
    Here is a method that should work provided your G4 is an (AGP) model or later -
    Restart. Immediately press the Option key, keep it held down until Startup Manager displays.
    Article #106178 - Startup Manager: How to Select a Startup Volume
    Once Startup Manager is up, press the Command-. (Command-period) keys. That should open the tray for the optical drive.
    If the drive has a disk in it now, there's an additional technique - boot the machine, immediately press and hold down the mouse button, keep it held down. That's a hardware-based command to eject all removable media.
    If the drive has a button on the door, you can also try restarting, then immediately begin pushing the button - there's a point during the first part of startup where the drive is energized but has not yet begun to spin up, and it should respond to the button push at that time.
    If all attempts fail, it's time to consider whether the drive has failed, or if its cable connections have worked loose.

  • Could not open key UNKNOWN

    I am having a problem upgrading from iTunes 9.0.07 to 9.0.2. I've been trying to use the 64-bit installer and have tried disabling my anti-virus software.
    I had this same problem when I was running Windows Vista Home Premium SP2 64-bit on this same computer.
    At first, when I would download, I had to Download Only and then install.
    When I tried to install iTunes manually, it would load very slowly at Copying Files and then say it was Rolling Back Action. After that, it would say that, "The installer encountered errors before iTunes could be configured."
    I tried everything people suggested on help forums, the discussions here, and the Trouble installing iTunes or QuickTime for Windows help article in Support.
    After uninstalling iTunes, making a backup of my iTunes music from Documents and getting rid of anything else iTunes, QuickTime or Apple related, I tried downloading again from the website (using Firefox). I had the problem that iTunes said it couldn't be downloaded without QuickTime. Okay, easy fix, right? I tried downloading and installing QuickTime and these errors came up:
    Could not open key:
    UNKNOWN\Components\69413F169B198734FA40BC8B73511DB0\108B43C0CEA676640B35306AE7D2 4051.
    Verify that you have sufficient access to that key, or contact your support personnel.
    and
    Could not open key:
    UNKNOWN\Components\9C4307835821FFF47864EE6DABC09AA9\EA2C92A1FBE18F42A12C111C5AAD DDA.
    Verify that you have sufficient access to that key, or contact your support personnel.
    So then I tried doing what jnd73 said in a different discussion: http://discussions.apple.com/thread.jspa?threadID=2151409&tstart=0&messageID=102 87668#10287668
    And I found I couldn't do half of what jnd73 said. Either because it already knows I'm the admin, or because I don't have sufficient access to the key. I can't even get another admin user to download iTunes successfully. I don't know if it's a permissions issue.
    The "The installer encountered errors before iTunes could be configured." problem started when I moved from Windows XP Home Edition SP3 32-bit to Windows Vista Home Premium SP1 (Had to update to SP2) 64-bit. I moved from a separate computer (Toshiba Satellite L35-S2151) to this one. I had to move all of my files from my last backup and re-download applications. I think what I did was I moved all of my old iTunes Program Files along with everything instead of just the iTunes folder in My Documents. So, when I downloaded the new iTunes, it didn't make new folders and used the old ones. I was able to make iTunes recognize all of the music I didn't buy through iTunes after I manually found the files, but iTunes never updated correctly.
    I'd think now that I got rid of all of the old folders that now I'd be able to install without any problems.
    Can anyone help?

    I was having the same problem, but I found the solution to the problem.
    First, click on Start and search "regedit" without the quotations. Open it up, click on "Edit: in the drop down menu. Next, click "Find" and search for your folder components, not the key component, which is in your case: 69413F169B198734FA40BC8B73511DB0
    and
    9C4307835821FFF47864EE6DABC09AA9
    They should be folders, and inside the folders, there should be a key with the name of that 2nd key. Example, inside the 69413F169B198734FA40BC8B73511DB0 folder should be a key named 108B43C0CEA676640B35306AE7D24051, and the same for the other folder.
    Now, to gain permissions for these keys, right-click on the folders, and select "Permissions". Where it says "Groups or User Names", click "Add". Then select "Advanced". Next, select "Find Now" and select the "Everyone" user. Click OK, then OK again, and you should be on the permissions window. For "Groups of User Names", select Everyone and select the "Full Control" check box for Everyone. Then click OK.
    Do the same for the other folder. Be careful; for me, there was 3 folders with the same key name, and I repeated the steps above for all 3 in order to make it work. Just check the folders under your folder to see if it has the same name, and if it does, repeat the steps on that folder.
    This method worked for me after trying a million different solutions. Hopefully, it works for you too. If it doesn't work, feel free to reply back. And if does work, please reply back, just so I know it did work.
    Good luck =]

  • Telnet not working i need help : Could not open connection to the host !!

    hello all im back today with big problem with telnet i dont know why !!
    i have to computers one of them in my home and the other one in my office both of them use windows 7 so 
    home PC internet IP : 82.205.100.161
    office PC internet IP : 82.102.237.175
    so i go to control panel and then to windows features and i check Telnet Client and Telnet server 
    then i turn off my firewall 
    then i start telnet service 
    then i execute netstat -ab to know telnet port : 
    [tlntsvr.exe]
     TCP    [::]:135               Hacker-HP:0            LISTENING
    is there anythink i need to do to get that damn connection over internet NOT LAN !! pleaze help me i still get this sucks error : Could not open connection to the host
    peace 
    Dr.BL@CKDeaTH

    Hi,
    Telnet server use TCP port 23 by default.
    Here is a screenshot of my lab server,
    To verify if the TCP port 23 has been opened, we can use the portqry tool.
    Here is the download link,
    http://www.microsoft.com/en-us/download/details.aspx?id=17148
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Could not open DVD with libdvdcss

    I installed vlc, xine-lib, xine-ui, mplayer, libdvdcss, libdvdnav, libdvdread.
    I also installed "codecs" with packer.
    I'm trying to play two different DVDs and the following is what I get (even putting the disk into /dev/sr0 or using another DVD won't change):
    $ vlc /dev/sr1
    VLC media player 2.1.5 Rincewind (revision 2.1.4-49-gdab6cb5)
    [0x95b1220] pulse audio output error: PulseAudio server connection failure: Connection refused
    [0x952a8f8] main libvlc: VLC wird mit dem Standard-Interface ausgeführt. Benutzen Sie 'cvlc', um VLC ohne Interface zu verwenden.
    libdvdnav: Using dvdnav version 4.2.1
    libdvdread: Could not open /dev/sr1 with libdvdcss.
    libdvdread: Can't open /dev/sr1 for reading
    libdvdnav: vm: failed to open/read the DVD
    [0xb20a5e48] filesystem access error: read error: Input/output error
    [0xb39a6e10] main stream error: cannot pre fill buffer
    libdvdnav: Using dvdnav version 4.2.1
    libdvdread: Could not open /dev/sr1 with libdvdcss.
    libdvdread: Can't open /dev/sr1 for reading
    libdvdnav: vm: failed to open/read the DVD
    libdvdread: Could not open /dev/sr1 with libdvdcss.
    libdvdread: Can't open /dev/sr1 for reading
    [0xb1abe3f8] dvdread demux error: DVDRead cannot open source: /dev/sr1
    [0xb5a03700] main input error: open of `dvd:///dev/sr1' failed
    $ mplayer /dev/sr1
    MPlayer SVN-r37224 (C) 2000-2014 MPlayer Team
    210 audio & 441 video codecs
    Playing /dev/sr1.
    File not found: '/dev/sr1'
    Failed to open /dev/sr1.
    Exiting... (End of file)
    $ xine /dev/sr1
    Dies ist xine (X11 gui) - Ein freier Video-Player v0.99.8-[DEBUG].
    (c) 2000-2010 The xine Team.
    videowin: display is using xinerama with 1 screens
    videowin: going to assume we are using the first screen.
    videowin: size of the first screen is 1024x768.
    videowin: Xinerama fullscreen parameters: X_origin=0 Y_origin=0 Width=1024 Height=768
    pixel_aspect: 0.997627
    Failed to open VDPAU backend libvdpau_nouveau_vieux.so: Kann die Shared-Object-Datei nicht öffnen: Datei oder Verzeichnis nicht gefunden
    vo_vdpau: Can't create vdp device : No vdpau implementation.
    xv_set_property: property=1, value=0
    xine: could not connect to socket
    xine: Datei oder Verzeichnis nicht gefunden
    this is my video card
    01:00.0 VGA compatible controller: NVIDIA Corporation NV11 [GeForce2 MX200] (rev b2) (prog-if 00 [VGA controller])
    Subsystem: CardExpert Technology Device 0001
    Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 16
    Memory at d6000000 (32-bit, non-prefetchable) [size=16M]
    Memory at d8000000 (32-bit, prefetchable) [size=128M]
    Expansion ROM at d7ff0000 [disabled] [size=64K]
    Capabilities: [60] Power Management version 2
    Capabilities: [44] AGP version 2.0
    Kernel driver in use: nouveau
    Kernel modules: nouveau
    these commands were asked me on freenode's #archlinux channel:
    $ stat /dev/sr0
    Datei: „/dev/sr0“
    Größe: 0 Blöcke: 0 EA Block: 4096 blockorientierte Spezialdatei
    Gerät: 5h/5d Inode: 6351 Verknüpfungen: 1 Gerätetyp: b,0
    Zugriff: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 93/ optical)
    Zugriff : 2014-07-12 22:52:20.959057344 +0200
    Modifiziert: 2014-07-12 22:52:20.959057344 +0200
    Geändert : 2014-07-12 22:52:20.959057344 +0200
    Geburt : -
    $ getfacl /dev/sr0
    # file: dev/sr0
    # owner: root
    # group: optical
    user::rw-
    user:christian:rw-
    group::rw-
    mask::rw-
    other::---
    $ loginctl show-session $XDG_SESSION_ID -p Active
    Active=yes
    I feel like some other driver is missing...
    Last edited by leonixyz (2014-07-12 21:58:01)

    dodo3773 wrote:Can you test a regular video file and it works fine in vlc?
    ok, one step toward the solution:
    I've scp-ed an .mp4 and an .mpg from my laptop, chmod 777 them and finally I can play them
    dodo3773 wrote:
    Also, do you get any output from this command?:
    dmesg | grep CD
    $ dmesg | grep CD
    [ 1.227637] scsi 0:0:0:0: CD-ROM HL-DT-ST CD-RW GCE-8320B 1.02 PQ: 0 ANSI: 5
    [ 1.238061] scsi 0:0:1:0: CD-ROM LG DVD-ROM DRD8160B 1.01 PQ: 0 ANSI: 5
    [ 1.458996] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.459461] sr 0:0:0:0: Attached scsi CD-ROM sr0
    [ 1.471069] sr 0:0:1:0: Attached scsi CD-ROM sr1
    [ 1286.396790] sr 0:0:1:0: [sr1] CDB:
    [ 1286.426850] sr 0:0:1:0: [sr1] CDB:
    $ pacman -Qi vlc
    Name : vlc
    Version : 2.1.5-1
    Beschreibung : A multi-platform MPEG, VCD/DVD, and DivX player
    Architektur : i686
    URL : http://www.videolan.org/vlc/
    Lizenzen : LGPL2.1 GPL2
    Gruppen : Nichts
    Stellt bereit : Nichts
    Hängt ab von : a52dec libdvbpsi libxpm libdca qt4 libproxy sdl_image libdvdnav libtiger
    lua libmatroska zvbi taglib libmpcdec ffmpeg faad2 libupnp libshout libmad
    libmpeg2 xcb-util-keysyms libtar libxinerama
    Optionale Abhängigkeiten: avahi: for service discovery using bonjour protocol[Installiert]
    libnotify: for notification plugin[Installiert]
    ncurses: for ncurses interface support[Installiert]
    libdvdcss: for decoding encrypted DVDs[Installiert]
    lirc-utils: for lirc plugin[Installiert]
    libavc1394: for devices using the 1394ta AV/C
    libdc1394: for IEEE 1394 plugin
    kdelibs: KDE Solid hardware integration
    libva-vdpau-driver: vdpau back-end for nvidia[Installiert]
    libva-intel-driver: back-end for intel cards
    libbluray: for Blu-Ray support[Installiert]
    flac: for Free Lossless Audio Codec plugin[Installiert]
    portaudio: for portaudio support
    twolame: for TwoLAME mpeg2 encoder plugin
    projectm: for ProjectM visualisation plugin
    libcaca: for colored ASCII art video output[Installiert]
    libgme: for libgme plugin
    librsvg: for SVG plugin[Installiert]
    gnome-vfs: for GNOME Virtual File System support
    libgoom2: for libgoom plugin
    vcdimager: navigate VCD with libvcdinfo
    aalib: for ASCII art plugin[Installiert]
    libmtp: for MTP devices support
    smbclient: for SMB access plugin[Installiert]
    libcdio: for audio CD playback support[Installiert]
    ttf-freefont: for subtitle font
    ttf-dejavu: for subtitle font
    opus: for opus support[Installiert]
    libssh2: for sftp support[Installiert]
    lua-socket: for http interface
    Benötigt von : Nichts
    Optional für: Nichts
    Konflikt mit : vlc-plugin
    Ersetzt : vlc-plugin
    Installationsgröße: 44319,00 KiB
    Packer : Giovanni Scafora <[email protected]>
    Erstellt am : Mi 09 Jul 2014 15:14:36 CEST
    Installiert am : Sa 12 Jul 2014 21:15:04 CEST
    Installationsgrund : Ausdrücklich installiert
    Installations-Skript : Ja
    Verifiziert durch: Signatur

  • Users could not open Public Folders in Outlook 2007 SP3.

     
    Is anybody had this issue or probably know how to fix it?
    We have Exchange 2013 server and users workstations with XP SP3 and Office 2007 SP3 installed. Exchange has users’ mailboxes and public folders. Public folders work OK until last week. Issue probably happened after latest CU update for Exchange 2013 installation.
    Now users could not open Public Folders in their Outlook. The error is:
    "Cannot expand the folder. Your profile is not configured. (/o=First Organization/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=[email protected])"
    And this "[email protected]" is public folder ContentMailboxGuid.
    And this error message appears when user click on Public Folders \All Public Folders in Outlook. So company public folders do not even appear in All Public Folders folder. Users have Owner permissions for all Public Folders and Root Public folders.
    Also one more error in Outlook about it:
    “Cannot display the folder. Microsoft Office Outlook cannot access the specified folder location.”
    One more issue is that previous Exchange 2007 server died (RAID died) so we had to delete it from AD and clean its records in ADSIEdit (CN=configuration,DC=.domainname,DC=.COM > CN=Services > CN=Microsoft Exchange > CN=Organization > CN= Administrative
    Groups > CN=(Groupname) > CN=Servers >) and install new server with Exchange 2013, and import all users mailboxes from backup. Public folders were not migrated from the old server because of its death. We create new public folders in Exchange and
    then manually import all folders from latest .pst backup using user Outlook.
     And it work OK more than a month till last week.
    Thanks,
    Andrey

    Hi Mavis,
    Thank you for your answer.
    I check permissions couple of times for both public folder and its root and both are granted for users as “Owner” and applied to public folder and its subfolders.
    This server has 2 mailbox stores and both are currently mounted.
    [PS] C:\Windows\system32>Get-MailboxDatabase -Status |fl name,mounted
    Name    : Mailbox Database 2104233799
    Mounted : True
    Name    : MBDB1
    Mounted : True
    But when I check homeMDB property for Microsoft System Attendant in ADSIEdit I found that it is empty.
    And it looks like System Attendant mailbox & service have been removed from Exchange 2013.
    http://howexchangeworks.com/2013/05/cannot-open-microsoft-system-attendant-mailbox-error-during-exchange-2013-mailbox-move.html
    and even from Exchange 2010.
    http://blogs.msdn.com/b/dvespa/archive/2009/10/06/say-so-long-to-the-system-attendant-mailbox.aspx
    Also I check arbitration mailboxes and all are looks to be in default database “Mailbox Database 2104233799” which is currently mounted.
    [PS] C:\Windows\system32>Get-Mailbox -Arbitration |fl name,data*
    Name     : FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042
    Database : Mailbox Database 2104233799
    Name     : SystemMailbox{1f05a927-77cc-4f5d-b5ca-667ea4256ff9}
    Database : Mailbox Database 2104233799
    Name     : SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c}
    Database : Mailbox Database 2104233799
    Name     : SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9}
    Database : Mailbox Database 2104233799
    Name     : Migration.8f3e7716-2011-43e4-96b1-aba62d229136
    Database : Mailbox Database 2104233799
    Thanks,
    Andrey

  • Adobe Reader could not open a pdf file - either not supported file type or file damaged

    On March 5th, I started getting the Adobe Reader error message "Adobe Reader could not open a pdf file because it is either not supported file type or the file has been damaged.
    I get this when I try to open the pdf file as an attachment in Outlook 2013 from my G-Mail account.  If I save the attachment and then try to open the pdf document, I get the same error4.
    I get this error message with every pdf file that now comes to me in Outlook.
    If I log on to my G-Mail I am able to open the pdf document.  If I also save the attachment to my computer, I do not get the error message when I open the pdf file. This would suggest the file is okay
    This would lead me to believe the problem maybe with Outlook.
    I'm using Adobe Reader XI v11.0.10
    I'm using Windows 8.1
    Is anyone encountering this same issue with outlook?

    I copied it again.  Do you see it?  BTW, how do I set privacy?  (I'm new at this)
    I opened with two different notepads and got different information.here it is from Windows Notepad.  First few lines are:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
    >
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">td img {display: block;}</style>
    </head>
    Here it is from MS Notepad:
    <HTML><HEAD><style>.ending {font-family: Calibri; font-size: 18px;}</style><BODY><TABLE><TR><TD colspan=100%><a href="http://www.trulynolen.com/questionnaire?l=14115468&o=141050070&z=85087-7515"><img src=http://newsletter.tnolen.com/email/service.png border=no></a></TD></TR><TR><TD align=center class="ending">If you would not like to receive email communication from Truly Nolen in the future, please <a href="http://newsletter.tnolen.com/unsubstart.asp?b=14115468&z=85087-7515&e=[email protected]/unsubstart.asp?b=14115468&z=85087-7515&e=[email protected]">click here</a></TD></TR></TABLE></BODY></HTML>

  • Could not open error log file ''. Operating system error = 5(failed to retrieve text for this error. Reason: 15105).

    Hello
    When I try to start the SQl server service i get the following error:
    Event id 17058
    Could not open error log file ''. Operating system error = 5(failed to retrieve text for this error. Reason: 15105).
    As a test I have made sure the errorlog file ,and the entire drive it is, has everyone full control permissions, but to no avail. Does anyone have any ideas to resolve this issue?
    Thank you

    Hi,
    Try running:
    SELECT SERVERPROPERTY('ErrorLogFileName')
    Then verify that the account being used to run the SQL Server service account has access to the path output above.  If possible, you could try logging onto the server with the same account used to run SQL Server then navigate to the errorlog folder.
    Thanks,
    Andrew Bainbridge
    SQL Server DBA
    Please click "Propose As Answer" if a post solves your problem, or "Vote As Helpful" if a post has been useful to you

Maybe you are looking for

  • Nat/pat asa 5505 asdm ver 8.4

    hi all, i have a problem with portfoarwarding on asa 5505. i have this situation: internet ---> pubblic ip address-> router albacom -- 10.0.0.15 ---> -nat farward port 80--10.0.0.1 -outside -firewall asa -inside - 192.168.0.1------------server web 19

  • In Badi -- In Methods --- Parameters

    Hi All, I have badi in Header there is a method and having  parameters I_MKPF TYPE MKPF HEAD TYPE J_3RM4_HEAD J_3RM4_HEAD structure contains these fields      MBLNR OKPO NOTICE BUKRS BUDAT LAND1 CC_NAME SUBDIV BWART LGORT LGOBE MBLNR NOTICE BUKRS SUP

  • Populating Street2 and Street3 through Idoc CREMAS

    Hi Is there a way to populate the fields Street2 and Street3 while creating a vendor through the idoc CREMAS05? Thanks Nag

  • Disappearing User Dictionary after 4.2 update.

    Hello All, Ever since updating my iPhone 4 to iOS 4.2, the option to edit my user dictionary has disappeared. As far as I know, its supposed to be under Settings->General->Keyboard->Edit User Dictionary. It is not.

  • Error while sending PO email as PO is in smartform

    As my PO is in smartform so when I am sendin the email of PO using SAP standard Program  'SAPFM06P', FORM routine ENTRY_NEU'  the processing routines,system is giving the error to open PO form. So is there any way to send the email of smartform. Than