Can't grant permissions

Hope somebody can help. I am building my first java applet which connects to a database but I can't get around the permissions problem. I have included the following policy file in the same directry as my applet but still no joy. (To be honest I am guessing a bit as tutorials tend to give you the policy file instead of explaining it.)
Can anyone suggest a good tutorial online or spot any obvious problems below??
900-0772 is my machine name - I'm running win 2k with IIS and trying to connect to MySQL (on same machine).
Thanks
Andy
/* AUTOMATICALLY GENERATED ON Thu Nov 01 15:09:44 GMT+00:00 2001*/
/* DO NOT EDIT */
grant codeBase "http://900-0772/" {
permission java.lang.RuntimePermission "accessClassInPackage.sun.jdbc.odbc";
permission java.net.SocketPermission "900-0772", "resolve";
permission java.net.SocketPermission "10.64.1.44:3306", "connect,resolve";
};

Are you planning for this to be available over the Internet? If it's just for your personal use, I would recommend writing an application instead of an applet. No security hassles to deal with.
Also, I notice from your error messages that you are trying to use the sun.jdbc.odbc.JdbcOdbcDriver class. You can't use that from an applet, because it requires installing a DLL on the applet's local machine. But you did say you were using MySQL, so you should probably get a JDBC driver that can access it (I'm not even sure if there's an ODBC driver form MySQL).

Similar Messages

  • Can't grant permissions to protection domains

    Hi, I'm trying to grant some permissions to a couple of protection domains using Visual Administrator (Security Provider item).
    I follow these steps:
    1) I select protection domain, for instance, a jar file
    2) I select the permission I want to grant
    3) I click the Grant button
    4) An error happens. "Unable to refresh protection domains panel!" states an error dialog, and
    SAPEngine_Application_Thread[impl:3]_36##0#0#Path#1#com.sap.engine.services.rmi_p4#
    Plain###> com.sap.engine.services.rmi_p4.DispatchImpl->throwException
    MSG:P4 Call execution: Exception in execute operation :
    <grantPermission(java.lang.String,java.lang.String,java.lang.String,java.lang.String)
    in the server.log file.
    What can be happening?
    Thanks,
    Juan Manuel

    Are you planning for this to be available over the Internet? If it's just for your personal use, I would recommend writing an application instead of an applet. No security hassles to deal with.
    Also, I notice from your error messages that you are trying to use the sun.jdbc.odbc.JdbcOdbcDriver class. You can't use that from an applet, because it requires installing a DLL on the applet's local machine. But you did say you were using MySQL, so you should probably get a JDBC driver that can access it (I'm not even sure if there's an ODBC driver form MySQL).

  • Granting permissions for JAVA STORED PROCS

    If I imported a java class file as user test and created a stored proc, how can I grant permissions to all the users in the DB? Do I have to grant permissions on JAVA CLASS itself when I load it or Do I have to grant permissions on the Stored proc or Both?
    Any help will be greatly appreciated.
    null

    Note: I can manually add the file with the command -
    loadjava -v -user user/password@sid sqljdbc.jar (pg 261 in Oracle Database Programming using Java and Web Services by Kuassi Mensah)
    Which is what I have done to get this to work. But the question still stands - How do I get the sqljdbc.jar file to be loaded when deployed using the deployment descriptor?
    Thanks, Ken

  • Removing and granting permissions - can item.systemupdate(false) be used

    Hi,
    When removing and granting permissions programmatically, can the item.systemupdate(false) be used?
    I have used the below code for removing permissions. Is this systemupdate(false) the right thing to use or item.update?
    oSPWeb.AllowUnsafeUpdates = true;
    CurrentlistItem.BreakRoleInheritance(false);
    oSPWeb.AllowUnsafeUpdates = true;
    using (DisabledItemEventsScope scope = new DisabledItemEventsScope())
    CurrentlistItem.SystemUpdate(false);
    //or is it better to use - CurrentlistItem.Update();
    Thanks

    you should not need the DisabledItemEventsScope.
    You do not need to use SsytemUpdate.
    You *probably* don't even need to use AllowUnsafeUpdates.
    just BreakRoleInheritance and then Update.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • ERROR: policy does not allow granting permissions at this level outlook

    Hi All,
    Our users are attempting to send sharing requests to each other via Right Click Calendar | Share | Share Calendar
    Availabilty only works fine but Limited and Full Access fails with the error: policy does not allow granting permissions at this level.
    I can see that the default sharing policy is set for availabilty only so I assume I need to add our internal SMTP addresses to the sharing policy with increased right's.
    But... From our testing in our LAB we found that if the exchange org does not have a connection to the federation setup it works fine straigh out of the box.
    Does this sound right or is my LAB just messing with me?
    Cheers
    Josh

    Hi VK, looks like these threads should resolve your problem:
    Assembly does not allow partially trusted
    callers                        
    "That assembly
    does not allow partially trusted callers."                        
    That assembly does not allow
    partially trusted callers                        
    Assembly does not allow partially
    trusted callers.                        
    WPF Assembly does not allow
    partially trusted callers
    cameron rautmann

  • Can I grant permission to write in specific attributes using security groups

    Hi
    I Created GPO that write the computer name in the one of the user attribute "comment attribute " when  he logged on
    then i went to OU and grant self delegate permissions to allow the users of that OU to write on "comment attribute
    but this did not work for the users how have been disabled form inheritance
    so instead of grant delegate permissions to the OU
    Can I grant permission to write in specific attribute "comment attribute " using security groups "Domain User "??

    Hi,
    Open Active Directory Users and Computers.
    On the View menu, select Advanced Features.
    Right-click the object for which you want to assign, change, or remove permissions, and then click Properties.
    On the Security tab, click Advanced to view all of the permission entries that exist for the object.
    To assign new permissions on an object or attribute, click Add.
    Type the name of the group, computer, or user that you want to add, and then clickOK.
    In the Permission Entry for ObjectName dialog
    box, on the Object and Properties tabs,
    select or clear the Allow or Deny check
    boxes, as appropriate.
    http://technet.microsoft.com/en-us/library/cc757520(v=ws.10).aspx
    Regards,
    Rafic
    If you found this post helpful, please give it a "Helpful" vote.
    If it answered your question, remember to mark it as an "Answer".
    This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion in a test environment before implementing!

  • No Grant Permissions Dialog Showing

    Hey guys, I am trying to write a simple applet that executes a file on the users local filesystem. I have signed the applet by first creating a keystore and then using jarsigner to self-sign the applet. However, when the applet is executed it throws an AccessControlException when trying to execute the file (a FilePermission error on the execute)
    The applet is compiled in 1.5.0_09 and run in the 1.5.0_09 JRE. I have tried running the applet from an HTML page both locally through the filesystem and remotely through my webserver on 2 separate machines.
    The problem is, it just throws an exception and doesn't even ask the user to grant it permissions which I imagine is what I need to do
    Here is the code:
    package Jim;
    import java.awt.*;
    import java.applet.*;
    import java.io.*;
    import java.util.*;
    import java.security.*;
    import netscape.javascript.*;
    public class WinampConnect2 extends Applet {
         private String msg;
         public void init()
                               GetWinampInfo();
         public void paint(Graphics g) {
              g.drawString("MSG: " + this.msg, 50, 60 );
         public void GetWinampInfo()
              String msg2 = (String) AccessController.doPrivileged(new PrivilegedAction()
                public Object run()
                       try
                            FilePermission MyPerm = new java.io.FilePermission( "c:\\WinampMagic.exe", "execute" );
                            Runtime runtime = Runtime.getRuntime();
                            Process process = null;
                            process = runtime.exec("c:\\WinampMagic.exe");
                              DataInputStream in = new DataInputStream(process.getInputStream());
                              // Read and print the output
                              String line = null;
                              return in.readLine();
                       catch (Exception e)
                            System.out.print(e);
                            System.out.flush();
                            return "error";
                this.msg = msg2;
    }If anyone could offer me any advice on what I am doing wrong or how to correct this I would be very appreciative. Thanks in advance guys.
    Jim.

    Thanks for the input but that seems a bit of a cop-out. I realise that Applets are by default limited in their abilities which is why there is the ability to sign them in the first place.
    I know permissions aren't a problem as other applets I have tried which request permissions pop up the grant permissions dialog which my applet does not.
    I need this applet to run from a webpage and communicate with the DOM/Javascript on the page from my website for an experiment I am working on. I have worked with applets before and not had this problem with security so am wondering if there is something wrong with my code or a known bug that I am encountering.
    Please don't get me wrong, Lion-O, I appreciate your response, I just would really like to learn from this problem by fixing it rather than giving in.
    Can anyone else help?

  • SP2013 Form to populate a list without granting permissions

    Hey All,
    I have someone who wants a way to populate specific fields in a list, without granting permissions to the site or list. I don't think it can be done, but I figured I would check with everyone anyways. Is it possible?
    Thanks for the help!
    J

    You are right. without permission it is not possible.
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Grant permissions dynamically in a applet

    I am try to write a java applet and wants it can the access the local disk...
    I know one way is modify the Security policy files in the JRE ( this method can support signed or unsigned applet ), but this need user manually modification before run the applet.
    Can any method support grant permissions dynamically in java applet.
    e.g
    prompt a dialog to ask the user do they allow the applet grant the permissions

    Just try to sign your applet , it's easy to do . if you want to know the process of how to sign your applet , i can give you some advise , my email address is :[email protected] . Best wishes !

  • Grant Permissions - Pop Up

    Grant Permission in SharePoint allows to select Permissions as well as groups in the drop down of pop window.
    Can we filter everything and only allow to select from groups in the grant permission pop up.
    Thanks
    Manu

    Hi Manuk
    In Grant Permissions block, two methods are provided for you to choose when granting permission to others. One is a drop-down list for you to add users into, the groups in the list are the groups in Site settings > people and groups. Another is to for you
    to grant permissions directly, it explains permission concept with actions could be done. Two methods are nearly the same.
    In fact, the page you would like to customize could be accessed by http://sitesname/_layouts/aclinv.aspx . It turns out you would like to customize your aclinv.aspx page, then you would turn to coding for help. The aspx file could be found in C:\Program
    Files\Common Files\Microsoft Shared\web server extensions\14\TEMPLATE\LAYOUTS folder. Here are some links that might help:
    http://blogs.msdn.com/b/sasohail/archive/2010/12/18/modifying-sharepoint-application-pages-in-the-right-way.aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/20bd902a-fd4a-43c9-8764-a4a12f626a63/extending-aclinvaspx?forum=sharepointdevelopmentlegacy
    Thanks,
    Chaitanya

  • Problem with granting permissions in the security policy file

    Hi,
    I have a security policy file. I am granting permissions to some files. Now even if I have given permissions explicitly it doesnt taking it and gives error. My code snippet is as follows:
    grant codeBase "file:${jboss.server.home.dir}/deploy/jboss-ws4ee.sar/-"{
         permission java.security.AllPermission;
    The stack-trace for the same is as follows:
    11:09:49,518 ERROR [MainDeployer] Could not initialise deployment: file:/C:/Java/jboss-4.0.2/server/all/deploy/jboss-ws4ee.sar/jboss-ws4ee.war
    java.security.AccessControlException: access denied (java.io.FilePermission C:\Java\jboss-4.0.2\server\all\tmp\deploy\tmp17221jboss-ws4ee.war read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:269)
         at java.security.AccessController.checkPermission(AccessController.java:401)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:524)
         at java.lang.SecurityManager.checkRead(SecurityManager.java:863)
         at java.io.File.lastModified(File.java:771)
         at org.jboss.deployment.MainDeployer.init(MainDeployer.java:866)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:765)
         at org.jboss.deployment.MainDeployer.addDeployer(MainDeployer.java:360)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:121)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy37.addDeployer(Unknown Source)
         at org.jboss.deployment.SubDeployerSupport.startService(SubDeployerSupport.java:111)
         at org.jboss.web.AbstractWebContainer.startService(AbstractWebContainer.java:600)
         at org.jboss.web.tomcat.tc5.Tomcat5.startService(Tomcat5.java:409)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
         at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:897)
         at $Proxy0.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:418)
         at org.jboss.system.ServiceController.start(ServiceController.java:440)
         at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy4.start(Unknown Source)
         at org.jboss.deployment.SARDeployer.start(SARDeployer.java:273)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
         at sun.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:121)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy8.deploy(Unknown Source)
         at org.jboss.deployment.scanner.URLDeploymentScanner.deploy
    Here I am giving all permission which in turn encapsulate FilePermission also. So this should work. But why it is bypassing this permission?
    Any clues?!
    Thanks.
    Jahnvi

    grant codeBase
    "file:${jboss.server.home.dir}/deploy/jboss-ws4ee.sar/-"{That's not a codebase, it's a specification for a FilePermission. A codebase is a list of one or more directories or JAR files expressed as URLs.

  • How can I give permissions like Contribute?

    Hello,
    Is there a way in Dreamweaver I can give certain permissions to pages if I have more than one user editing a website?
    Thanks,
    Tony

    Check in and Check out keeps users in a collaborative environment from overwriting each others work, and if that is what you need, great!  But keep in mind Dreamweaver will allow someone to overwrite a checked out file if they choose to - DW isn't 100% safe here.  Permissions implies more than just knowing who is working on what, in that you only give certain people the right to have access to certain files - Dreamweaver's check-in feature doesn't do anything about that. So proceed with caution.
    Lawrence Carmer - *Adobe Community Professional*
    http://www.Cartweaver.com
    Complete Shopping Cart Application for
    Dreamweaver, available in PHP and ColdFusion
    Stay updated - http://blog.cartweaver.com

  • Beehive Conferencing Java-based Client Error: Cannot grant permissions to unsigned jars

    Hi,
    When I start a Beehive online web conference via the Java-based client on Ubuntu 12.04, I get the following error:
    net.sourceforge.jnlp.LaunchException: Fatal: Initialization Error: Could not initialize application.
        at net.sourceforge.jnlp.Launcher.createApplication(Launcher.java:778)
        at net.sourceforge.jnlp.Launcher.launchApplication(Launcher.java:552)
        at net.sourceforge.jnlp.Launcher$TgThread.run(Launcher.java:889)
    Caused by: net.sourceforge.jnlp.LaunchException: Fatal: Application Error: Cannot grant permissions to unsigned jars. Application requested security permissions, but jars are not signed.
        at net.sourceforge.jnlp.runtime.JNLPClassLoader.setSecurity(JNLPClassLoader.java:289)
        at net.sourceforge.jnlp.runtime.JNLPClassLoader.<init>(JNLPClassLoader.java:209)
        at net.sourceforge.jnlp.runtime.JNLPClassLoader.getInstance(JNLPClassLoader.java:323)
        at net.sourceforge.jnlp.Launcher.createApplication(Launcher.java:770)
        ... 2 more
    Caused by:
    net.sourceforge.jnlp.LaunchException: Fatal: Application Error: Cannot grant permissions to unsigned jars. Application requested security permissions, but jars are not signed.
        at net.sourceforge.jnlp.runtime.JNLPClassLoader.setSecurity(JNLPClassLoader.java:289)
        at net.sourceforge.jnlp.runtime.JNLPClassLoader.<init>(JNLPClassLoader.java:209)
        at net.sourceforge.jnlp.runtime.JNLPClassLoader.getInstance(JNLPClassLoader.java:323)
        at net.sourceforge.jnlp.Launcher.createApplication(Launcher.java:770)
        at net.sourceforge.jnlp.Launcher.launchApplication(Launcher.java:552)
        at net.sourceforge.jnlp.Launcher$TgThread.run(Launcher.java:889)
    Thanks for your help

    We have an HTTP/HTTPS conflict when downloading the JavaFX client that we have not yet been able to resolve without breaking something else :-)
    We recommend you use the downloadable client - available from the https://beehiveonline.oracle.com/bcentral/action?page=downloadlanding&appId=Oracle+Beehive+Conferencing+Bootstrap%7Cwind…

  • Can't repair permissions

    Any ideas why I can't repair permissions? I've installed 10.5 on my 12" 1.33ghz Powerbook and since installing I haven't been able to repair permissions. I'm trying to use disk utility without having to reboot. It will start but it just spins for ever. It never does anything. Doesn't show progress and it never stops.

    I had the same problem. But I was stupid enough to hit the powerbutton when i thought my computer froze..
    The consequence was that when my mac restarted, and my keyboard didnt work anymore, except for the num-lock option, so i could type numbers..
    I dont know very much about computers, but i can tell you that repair permission doesnt work like it ought to. I had to do a leopard clean install after that and I haven't tried the repair permission after that.
    Think we'll have to wait untill apple comes with an update..

  • SAPCAR: can not set permissions for /EPS/in/SIGNATURE.SMF

    We are running SUM 1.0 SP10 on IBM i with V7R1 to put EHP6 and SP's on an ERP 6.0 system.  Phase PREP_PRE_CHECK/SCANDIR_EPS0 repeatedly ends with multiple errors that SAPCAR: can not set permissions for /EPS/in/SIGNATURE.SMF file.  We tried increasing the sidADM and R3GROUP authority to the file, but it changes them back and ends with a different number of errors each time, see example:
    SAPup> Starting subprocess with PID 4295601 in phase 'SCANDIR_EPS0' at 20140319101619
        ENV: DIR_LIBRARY=/usr/sap/Y60/SUM/abap/bin
        ENV: ILE_PATH=/usr/sap/Y60/SUM/abap/bin:/usr/sap/Y60/SYS/exe/run:/usr/bin:.
        ENV: LIBPATH=/usr/sap/Y60/SUM/abap/bin:/usr/sap/Y60/SUM/jvm/jre/lib/ppc64/server:/usr/sap/Y60/SUM/jvm/jre/lib/ppc64:/usr/sap/Y60/SUM/jvm/jre/../lib/ppc64:/usr/sap/Y60/SUM/jvm/jre/lib/ppc64/jli:/usr/sap/Y60/SUM/jvm/jre/../lib/ppc64/jli:/usr/sap/Y60/SYS/exe/run:/usr/sap/Y60/hdbclient:/sapdb/clients/Y60/lib/lib64:/sapdb/clients/Y60/lib:/sapdb/programs/lib/lib64:/sapdb/programs/lib
        ENV: PASE_LANG=en_US
        ENV: PASE_LC__FASTMSG=true
        ENV: PASE_LIBPATH=/usr/sap/Y60/SUM/abap/bin:/usr/sap/Y60/SYS/exe/run:/usr/sap/Y60/hdbclient:/sapdb/clients/Y60/lib/lib64:/sapdb/clients/Y60/lib:/sapdb/programs/lib/lib64:/sapdb/programs/lib
        ENV: PASE_LOCPATH=/usr/lib/nls/loc
        ENV: PASE_NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat:/usr/lib/nls/msg/en_US/%N:/usr/lib/nls/msg/en_US/%N.cat
        ENV: PASE_PATH=/usr/sap/Y60/SUM/abap/bin:/usr/sap/Y60/SYS/exe/run:/QOpenSys/usr/bin:/usr/ccs/bin:/QOpenSys/usr/bin/X11:/usr/sbin:/usr/bin:.:/usr/sap/Y60/hdbclient:/sapdb/clients/Y60/bin:/sapdb/programs/bin
        ENV: PASE_STDIO_ISATTY=N
        ENV: PASE_THREAD_ATTACH=Y
        ENV: PASE_TZ=<EST>5<EDT>,M3.2.0,M11.1.0
        ENV: PASE_USRGRP_LIMITED=
        ENV: PATH=/usr/sap/Y60/SUM/abap/bin:/usr/sap/Y60/SYS/exe/run:/QOpenSys/usr/bin:/usr/ccs/bin:/QOpenSys/usr/bin/X11:/usr/sbin:/usr/bin:.:/usr/sap/Y60/hdbclient:/sapdb/clients/Y60/bin:/sapdb/programs/bin
        ENV: SAPSYSTEMNAME=Y60
        ENV: dbms_type=db4
        ENV: dbs_db4_schema=R3Y60DATA
        ENV: ILE_DIR_LIBRARY=/usr/sap/Y60/SUM/abap/bin
        ENV: PASE_DIR_LIBRARY=/usr/sap/Y60/SUM/abap/bin
        ENV: DIR_LIBRARY_RMT=/usr/sap/Y60/SUM/abap/bin
        ENV: ILE_DIR_LIBRARY_RMT=/usr/sap/Y60/SUM/abap/bin
        ENV: PASE_DIR_LIBRARY_RMT=/usr/sap/Y60/SUM/abap/bin
        ENV: ILE_LIBPATH=/usr/sap/Y60/SUM/abap/bin
    EXECUTING /usr/sap/Y60/SUM/abap/bin/SAPCAR -flat -R /usr/sap/transD60/EPS/in -xvf /tmp/NO_SAVE/ERP_EHP6_Download/K-60609INECCDIMP.SAR
    SAPCAR: processing archive /tmp/NO_SAVE/ERP_EHP6_Download/K-60609INECCDIMP.SAR (version 2.01)
    x CSR0120031469_0080800.PAT
    x SIGNATURE.SMF
    SAPCAR: can not set permissions for /usr/sap/transD60/EPS/in/SIGNATURE.SMF (error 13). No such file or directory
    SAPup> Process with PID 4295601 terminated with status 13 at 20140319101623!
    Has anyone lse exprienced this and can share a fix?
    Thank you,
    -Margie

    Hi,
    We had the same issue, and in my opinion it is caused by the parallelisation of sapcar during SUM phase PREP_PRE_CHECK/SCANDIR_EPS0
    I did see several parallel SAPCAR jobs running during this phase.
    So what happens when one job extracts SIGNATURE.SMF at the same time another job tries to finalize its extraction by setting the permissions for /usr/sap/trans/EPS/in/SIGNATURE.SMF?
    It can happen that permissions are being set at the same time another sapcar yust deletes this file to begin extracting.
    Since we had 146 SAR archives that needed to be extracted, a retry allways ended up in 4 to 12 conflicts.
    What did do the trick was adding
    /sapcar/extrcact_parallel = 0
    to the file
    ../SUM/abap/bin/SAPup.par
    Just as Christoph Langer suggested.
    We had to restart the whole phase, a repeat was not enough to solve the problem.

Maybe you are looking for

  • Using a variable to vary the WHERE clause in a statement

    I have an int column that has values >= 0. Depending on a variable I want to select all the rows of the table or only the rows where the int column is 0. How do I do this? Your help would be much appreciated. Thanking you in anticipation. Roger roger

  • Hidden Characters Displaying Wrong

    So ever since I started using CS4 my InDesign will sometimes show my hidden characters improperly. There doesn't seem to be any consistency in when it happen. The only common thing I can think of is that it sometime happens after I open an Illustrato

  • Music from I Pod to Compter

    My computer hard drive was wiped clean, yet all my music is on my I Pod. Is there a way to return my music to my computers hard drive without installing all my CD's again. I have neealy 30 gb of music on my I Pod, hence hours of reloading.

  • Video content freezes for a certain amount of time on Lion

    After upgrading to Lion, I have noticed that video content freezes (though the voice is heard, but the picture is frozen for some seconds) for a certain amount of time when its starts playing (eg youtube videos) on Lion. I have observed this on my fr

  • Replication (dbremote) between SA12 and ASA9

    I get a lot of syntax error while replicationg between a SA12 and ASA9 database. The consolidated db (SA12) sends SQL through passthrough to a ASA9 Remote db. It seems that the SQL Syntax sent from SA12 is not compatible with the syntax that ASA9 exp