Permission Denied Error when RWD auto playback file is published in portal

Hi All,
We are trying to Publish RWD Auto play back file link in Portal Environment. While doing so, we getting error Permission Denied" error(Java script error which comes on the status bar)
Following are the steps been followed so far for enabling this RWD file
1. We have uploaded an entire folder consisting of  RWD Document say a HTML file which is of size say 15 MBwhich makes use of many other image files,GIF files, HTML files which are all present inside the folder into KM content of SAP EP Portal
2. We have created a KM document iview out of the HTML file(flash file)
Regards,
Sowmya

Hi,
Its not related to Work flow.Its just related to KM upload in the portal but the problem is the file will play only when the entire folder is uploaded.But after creating the KM document iview out of the link to the file,its not opeining.Its giving a blank screen with the "permission denied" error in the status bar
Regards,
Sowmya

Similar Messages

  • Permission Denied error when attempting NW2004s Testdrive on SUSE Linux

    1) I downloaded the 7 .iso images for NW2004s testdrive and concatenated the files as described in the download page.
    2) I wrote an image of the concatenated file onto a DVD.
    3) Installed the 64 bit 1.4.2 JRE SLES 11 installation media. Had to "search" in YaST
    4) executed the command /media/D50077575/install.sh as suggested in the instruction I get the following error
                  bash: /media/D50077574/install.sh: Permission denied
    hence not able to even start the first step in the installation process.
    Kindly help to resolve this installation issue.
    Thanks,
    Ashok
    Edited by: Ashok* on May 22, 2009 11:39 PM

    The problem of Permission seem to be solved when I invoked the command as follows
    bash /media/D50077574/install.sh (i.e. I invoked the shell and passed the install.sh as a parm)
    However I see the following errors thrown out on the terminal window but the installation moves on to next file.
    can the suggested method of bzip2recover be a good idea?
    out from installation
    unpacking /media/D50077574/server/TAR/x86_64/SAPDB_I.tar.bz2
    unpacking /media/D50077574/server/TAR/x86_64/SAPDB_II.tar.bz2
    bzip2: Data integrity error when decompressing.
         Input file = (stdin), output file = (stdout)
    It is possible that the compressed file(s) have become corrupted.
    You can use the -tvv option to test integrity of such files.
    You can use the `bzip2recover' program to attempt to recover
    data from undamaged sections of corrupted files.
    tar: Unexpected EOF in archive
    tar: Unexpected EOF in archive
    tar: Error is not recoverable: exiting now
    unpacking /media/D50077574/server/TAR/x86_64/SAPDB_III.tar.bz2

  • Permission Denied Error when calling Matlab script from LabWindows​/CVI

    Hello,
    I am reading in data from a DAQ and am writing it to a .csv file in LabWindows/CVI.  I am then sending this data to Matlab to be filtered.  I would like the filtered data to be accessed by LabWindows/CVI so that I can display it as a strip chart.  I have gotten everything to work except the writing to a file in a Matlab script that is called from LabWindows/CVI.  I am basically using the shipped example in found in the activex demo. (http://zone.ni.com/devzone/cda/epd/p/id/2994). I select the script that I want to run and each time it tries to open a file with write permissions I get a "Permission Denied" error.  This occurs when using fopen() in Matlab.  I have also tried using csvwrite() as well as dlmwrite().  Each one gives me a similar error.  The script currently does not try to do any data processing.  It just opens the file, if it is successful it then prints "hello" and then closes it.  The script works well when it is run in Matlab, just not when it is called in LabWindows/CVI.  Below is the script.  Any thoughts, comments or suggestions are greatly appreciated.  I am also open to using other approaches for sending data between Matlab and LabWindows/CVI.  Thanks in advance!!
    fclose('all');
    [file, errmsg] = fopen('out.txt', 'w');
    if(file<0)
        disp(errmsg)
    else
        fprintf(file, 'hello');
        fclose('all');
    end;
    [file, errmsg] = fopen('out.txt', 'w');
    if(file<0)    
    disp(errmsg)
    else  
     fprintf(file, 'hello');    
    fclose('all');
    end;

    I am using Windows 7.  I am running CVI as an administrator and was able to get rid of the "Permission Denied" error by going into the User Account Controls in windows and changing it to "Never Notify".  However, this did not fix the problem of Matlab not being able to write to a file when the script is run from CVI.  In the Matlab code below, It now gets in to the "else", suggesting that fopen() returns a good file handle.  After getting in to the else statement, it will not actually write to the file, nor does it create it.  However, I can make changes to the plot settings and those appear.  Everything is functional when run from Matlab but when run from CVI, things get screwy with opening the file for writing.  It handles the read well.  It seems like there would have to be some file permission errors but, in the CVI program, I open and write to the file "in.csv".  Any help is greatly appreciated.
    clear;
    fclose('all');
    t = zeros(1000);
    t = csvread('in.csv');
    for i=1:1000
        t(i) = t(i)*4;
    end;
    [file, errmsg] = fopen('out.txt', 'w');
    if(file<0)
        disp(errmsg)
    else
        fprintf(file, 'goodbye');
        for i=1:1000
            %t(i) = t(i)*3;
            fprintf(file, '%f,', t(i));
        end;
        fclose(file);
        plot(t/3, t);
        ylabel('t');
        xlabel('Time (s)');
        title('Is this really working?!?');
    end;
    Thanks,
    Chris

  • ADT packaging with native extensions : permission denied error when running remote build.

    Hi Team,
    We are facing the following error when running the nightly ant build script on Mac machine for our air mobile application. We are using iOS native extensions and package with ADT. This works fine when we run the build as local user in the Mac machine. Earlier we faced some issues due to headless build and we have added the <headless-server>true</headless-server> in corresponding config files (flex-config.xml, airmobile-config.xml). After that we are facing the following error, even when we run the ant build in headless mode using the following command.
    ant -Djava.awt.headless=true -f build.xml buildPackage
    When running this build as local user in the Mac build machine, we see a window opening with com.adobe.air.ADT while packaging. This is the issue when running nightly build as there is no graphics window.
    Can anybody please help how to get rid of this issue for nightly build using adt,jar?
    Here is the error from build log:
    buildiOSPackageWithNativeExtensionMac:
         [echo] Export the iOS package with Native extension for ApprovalsMobile in Mac
         [java] Exception in thread "main" java.lang.InternalError: Can't connect to window server - not enough permissions.
         [java]  at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         [java]  at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1827)
         [java]  at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1724)
         [java]  at java.lang.Runtime.loadLibrary0(Runtime.java:823)
         [java]  at java.lang.System.loadLibrary(System.java:1045)
         [java]  at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
         [java]  at java.security.AccessController.doPrivileged(Native Method)
         [java]  at java.awt.Toolkit.loadLibraries(Toolkit.java:1605)
         [java]  at java.awt.Toolkit.<clinit>(Toolkit.java:1627)
         [java]  at java.awt.Dimension.<clinit>(Dimension.java:70)
         [java]  at com.adobe.air.validator.ApplicationDescriptorValidator.validateImageUri(ApplicationDescri ptorValidator.java:183)
         [java]  at com.adobe.air.validator.ApplicationDescriptorValidator20.validateElement(ApplicationDescr iptorValidator20.java:121)
         [java]  at com.adobe.air.validator.ApplicationDescriptorValidator25.validateElement(ApplicationDescr iptorValidator25.java:65)
         [java]  at com.adobe.air.validator.ApplicationDescriptorValidator26.validateElement(ApplicationDescr iptorValidator26.java:62)
         [java]  at com.adobe.air.validator.ApplicationDescriptorValidator30.validateElement(ApplicationDescr iptorValidator30.java:52)
         [java]  at com.adobe.air.validator.ApplicationDescriptorValidator31.validateElement(ApplicationDescr iptorValidator31.java:46)
         [java]  at com.adobe.air.validator.DescriptorValidator.endElement(DescriptorValidator.java:239)
         [java]  at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(AbstractSAXParser .java:601)
         [java]  at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(XML DocumentFragmentScannerImpl.java:1782)
         [java]  at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDri ver.next(XMLDocumentFragmentScannerImpl.java:2939)
         [java]  at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImp l.java:648)
         [java]  at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(XMLNSDocumentScanne rImpl.java:140)
         [java]  at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDo cumentFragmentScannerImpl.java:511)
         [java]  at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.ja va:808)
         [java]  at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.ja va:737)
         [java]  at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:119)
         [java]  at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java :1205)
         [java]  at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(SAXParserImpl.j ava:522)
         [java]  at javax.xml.parsers.SAXParser.parse(SAXParser.java:395)
         [java]  at javax.xml.parsers.SAXParser.parse(SAXParser.java:198)
         [java]  at com.adobe.air.Descriptor.validateXML(Descriptor.java:182)
         [java]  at com.adobe.air.Descriptor.<init>(Descriptor.java:56)
         [java]  at com.adobe.air.ApplicationDescriptor.<init>(ApplicationDescriptor.java:84)
         [java]  at com.adobe.air.ApplicationPackager.validateApplicationDescriptor(ApplicationPackager.java: 101)
         [java]  at com.adobe.air.ApplicationPackager.createPackage(ApplicationPackager.java:64)
         [java]  at com.adobe.air.ipa.IPAPackager.createPackage(IPAPackager.java:217)
         [java]  at com.adobe.air.ADT.parseArgsAndGo(ADT.java:557)
         [java]  at com.adobe.air.ADT.run(ADT.java:414)
         [java]  at com.adobe.air.ADT.main(ADT.java:464)
    Thanks,
    Swathi.

    Note: Before the above error that were two other errors .
    1) The build complained that the adt-bundle-linux toolchain could not be found and required that it be added to .mozconfig. This was done.
    2) The build complained that dx could not be found.
    The configure file was edited and the values $DX, $AAPT and $AIDL were all set to the adt-bundle-linux/sdk/build-tools/android-4.4 path.
    The instructions given on the Mozilla Wiki did not work right for Android and several modifications were made to move it along. But this permission error is tough to figure out.

  • "Permission denied" error when trying to open Time Machine sparse backup image

    Hello,
    After a hard drive failiure, I'm trying to access my Time Machine backup from a different computer, but when double-clicking on the sparsebackup file I get the following error:
    The Time Machine backup was done wirelessly, to a hard drive plugged in via USB to an AirPort Extreme router. I've now connected the hard drive (via FireWire) to my backup computer.
    I suppose I could plug the drive back into the router and see if that works, but restoring via WiFi will take FOREVER — the sparsebundle is 750 GB.
    I've tried repairing permissions and rebooting, but that did not solve the problem.
    Any ideas?

    I think you will need to connect to the USB attached to the airport..
    But you can use ethernet not wireless.
    If you are using a Mac without an ethernet port then get a thunderbolt to ethernet or if no thunderbolt, then usb to ethernet adapter.. that is the second best by a long way.
    I have always been able to open the sparsebundle on disks .. So unfortunately the sparsebundle could be corrupt.. you can try to repair it.
    http://pondini.org/TM/A5.html
    Permissions problems.
    http://pondini.org/TM/E10.html

  • Permission denied error while CBS is building DCs

    Hi,
    from time to time we get an permission denied error when activating changes. The CBS server tries to check out files into the temporary build folders at the server and cannot do that for one file (see following error message).
    As already said this happens only sometimes and only for single files.
    Does anyone have the same experience and/or a suggestion how to solve this problem?
    When deleting the folder and activating again the error has gone.
    Build number assigned: 5843
    Change request state from QUEUED to PROCESSING
    ACTIVATION request in Build Space "CMS_EBYASZ_D" at Node ID: 9.611.151
         [id: 2.568; parentID: 0; type: 4]
         [options: NO OPTIONS]
    REQUEST PROCESSING started at 2005-09-30 12:53:00.074 GMT
    ===== Pre-Processing =====
    List of activities to be activated:
         1 activity in compartment "eon.com_EON_EBY_ASZ_R_1"
              Recherche Splitting Nachtrag 7 (30.09.05, 14:51)
                   [seq. no 23][created by H15430J at 2005-09-30 12:52:46.0][ID 4e1a116731af11daa5b00003ba1edce1]
    Analyse activities... started at 2005-09-30 12:53:00.172 GMT
         Synchronizing component "eon.com/eby/asz/recherch/util" from repository... finished at 2005-09-30 12:53:01.414 GMT and took 824 ms
              Component "eon.com/eby/asz/recherch/util" is to be CHANGED by this activation.
         1 component to be build in compartment "eon.com_EON_EBY_ASZ_R_1"
    Analyse activities... finished at 2005-09-30 12:53:01.574 GMT and took 1 s 402 ms
    Calculate all combinations of components and variants to be built...
         "eon.com/eby/asz/recherch/util" variant "default"
    Prepare build environment in the file system... started at 2005-09-30 12:53:02.173 GMT
         Synchronize development configuration... finished at 2005-09-30 12:53:02.176 GMT and took 2 ms
         Synchronize component definitions... finished at 2005-09-30 12:53:02.274 GMT and took 97 ms
         Synchronize sources...
    12:53:06.831  SYNC  (FAILED: Failed to create/open file:
    /usr/sap/D16/JC00/j2ee/cluster/server1/temp/CBS/39/.CACHE/228/DCs/eon.com/eby/asz/recherch/util/_comp/src/packages/de/isenergy/eby/zaehlerwesen/recherche/util/UtilComp.wdcontroller
    (<b><u>Permission denied</u></b>))  UtilComp.wdcontroller   (/usr/sap/D16/JC00/j2ee/cluster/server1/temp/CBS/39/.CACHE/228/DCs/eon.com/eby/asz/recherch/util/_comp/src/packages/de/isenergy/eby/zaehlerwesen/recherche/util/UtilComp.wdcontroller)
    Prepare build environment in the file system... finished at 2005-09-30 12:53:08.555 GMT and took 6 s 382 ms
    ===== Pre-Processing =====  finished at 2005-09-30 12:53:08.560 GMT and took 8 s 411 ms
    Change request state from PROCESSING to FAILED
    ERROR! The following problem(s) occurred  during request processing:
    ERROR! The following error occurred  during request processing:Failed to synchronize
    /usr/sap/D16/JC00/j2ee/cluster/server1/temp/CBS/39/.CACHE/228/DCs/eon.com/eby/asz/recherch/util/_comp/src/packages
    REQUEST PROCESSING finished at 2005-09-30 12:53:08.563 GMT and took 8 s 489 ms
    Thanks for any hint
    Helmut

    Hi Sidharth,
    good to hear that we are not the only company with this problem.
    We also do have this problem since months, from SP9 to SP11.
    First we thought that it would have been a CBS configuration or an OS problem but this cannot be the reason because as you already mentioned it works after serveral attempts. We also analysed the temporary CBS folders and noticed that only one file (the one that causes the error) does have other attributes than the others.
    That sounds very strange and I hope that someone from SAP will read this task.
    At the moment we are collecting all the problems and errors that appear with the JDI and the Netweaver Developeer Studio to present SAP this list in bulk. We cannot write an OSS note for every error we discover as suggested by SAP.
    Stability mainly of the NWDS plugins is the biggest problem we have at the moment. Did you make the same experience?
    Regards
    Helmut

  • I get an error stating cc cookies dir: cannot make folder / cookies: Permission denied (error 13) when I attempted to download the creative cloud installer on my Mac. Can anyone help with similar pop up window?

    I get an error stating cc cookies dir: cannot make folder / cookies: Permission denied (error 13) when I attempted to download the creative cloud installer on my Mac. Can anyone help with similar pop up window?  I'm trying to get a trial version of CS5. 

    You do not need to involve Creative Cloud to install/try the trial version of CS5...
    You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    CS5: http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • DB13 jobs cancelled due to "Permission denied" error.

    Hi all,
    DB13 jobs are cancelled due to "Permission denied" error. I pasted the error log below. Actually we have upgraded database from Oracle 9 to 10, then after these jobs are cancelling before that this was fine. What could be the problem cousing to cancell these jobs in DB13. Please help me to resolve this issue.
    Please let me know if you need any more information.
    Current Database:- ORACLE, Release:- 10.2.0.2.0
    SAP Component version:- SRM 4.0 , Release 640
    Job log
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000080, user ID sridharm)
    Execute logical command BRCONNECT On host aaebp0us
    Parameters: -u / -c -f check
    BR0801I BRCONNECT 7.00 (26)
    BR0252W Function fopen() failed for '/oracle/PRD/102_64/dbs/initPRD.ora' at location BrInitOraCopy-2
    BR0253W errno 13: Permission denied
    BR0252E Function fopen() failed for '/oracle/PRD/sapcheck/cdyeuiqp.chk' at location main-11
    BR0253E errno 13: Permission denied
    BR0121E Processing of log file /oracle/PRD/sapcheck/cdyeuiqp.chk failed
    BR0806I End of BRCONNECT processing: cdyeuiqp.chk2008-06-21 22.00.15
    BR0280I BRCONNECT time stamp: 2008-06-21 22.00.16
    BR0804I BRCONNECT terminated with errors
    External program terminated with exit code 3
    BRCONNECT returned error status E
    Job finished
    Thanks for your help....
    Sridhar M

    Hello,
    Please check the SAP Note 113747 - Permissions for DBA tools BR*Tools and SAPDBA
    The following settings are required for calling the BRTools and SAPDBA correctly, in particular when calling the BRTools from sapgui:
    (1)
    ora<sid> and <sid>adm on DB server have a search path on /sapmnt/<SID>/exe. (All br* and sapdba are contained in this directory.)
    ora<sid> belongs to the dba group,
    <sid>adm belongs to the sapsys group,
    (2)
    <sid>adm on the database server has the rhosts entry: "+ <sid>adm".
    (3)
    The ops$<sid>adm Oracle user must be created in the DB and must have the sapdba role (not DBA!) (refer to Note 134592 for more information about the role).
    (4)
    brarchive, brbackup, brconnect, brtools have permission 4775:
    -rwsrwxr-x   ora<sid>   sapsys   ...
    These can be started by the ora<sid> or the <sid>adm OS user.
    brrestore, brrecover, brspace, and sapdba have permission 755:
    -rwxr-xr-x   <sid>adm   sapsys   ...
    These can only be started by the ora<sid> OS user.
    <<
    Problem is due to authorization, so correct it and it will work.
    Peter

  • Permission Denied error launching content in SumTotal 7.2

    I’m testing the trial version of Presenter 7 with SumTotal 7.2. I’m running into an inconsistent Permission Denied error that sometimes occurs when the lesson is launched and the lesson will not load/display. It doesn’t happen every time, even on the same computer. I may get the error message when trying to launch the Presenter lesson and then it may launch as expected on the second attempt. This has happened on three different computers and with each one it seems to happen sporadically. I believe, when it does happen, it will occur the first time a new lesson is launched, but then it may or may not happen again.
    The error message appears in a pop-up labeled Internet Explorer with the following details:
    Problems with this Web page might prevent it from being displayed properly or functioning properly. In the future, you can display this message by double-clicking the warning icon displayed in the status bar.
    Line: 15
    Char: 3
    Error: Permission denied
    Code: 0
    The error points to the SCORM.HTM file. Here's the code its referring to:
      <script type="text/vbscript" language="VBScript">
       Sub SlideContent_FSCommand(ByVal command, ByVal args)
        select case command
         case "putHREF" location.href = args
         case "putTitle" document.title = args
         case else call SlideContent_DoFSCommand(command, args)
        end select
       end sub
      </script>
    I tried to comment out the vbscript, but the error occured with the next script on the page.
    Currently I'm using Breeze 5.1 on SumTotal 7.2 and eveything works as expected. I checked a copy of a SCORM.HTM file created with Breeze 5 and it appears to have the same script in that spot and it's never caused a problem.
    Workstation configuration:
    WinXP SP2
    IE6
    Presenter 7 (trial version)
    Flash Player 9
    Thank you in advance for your help!

    Hi Sandeep,
    looks like your CBS has no permission in the filesystem where it tries to build your DC.
    The prefix "/usr/sap/trans_D30/CBS" looks a bit suspicious to me. Is it really intentional that CBS should work in some (probably publicly visible) transport directory?
    Regards,
    Marc

  • Permission denied (error 13)  - trying to use goodsync to backup contents?

    Hi all
    I use Goodsync to sync files.
    I'm trying to copy the contents of one 2TB partition (a) to an identical 2TB partition (b). (a) and (b) are both on seperate identical freecom mybook hard drives, They're both chained together with a firewire cable. (a) is attached to my macbook pro via the firewire port. (b) is connected through the chain.
    This is the error I get when I try to sync: ( FYI Part 2 [MAC] is drive (a) ):
    Cannot read folder /Volumes/Part 2 [MAC]/.Spotlight-V100/Store-V1/Stores/A2B518A5-EAA8-437B-AE14-720C356E3834: cannot open folder /.Spotlight-V100/Store-V1/Stores/A2B518A5-EAA8-437B-AE14-720C356E3834: Permission denied (error 13)
    Cannot read folder /Volumes/Part 2 [MAC]/.Trashes: cannot open folder /.Trashes: Permission denied (error 13)
    Very stumped so greatly appreciate some advice from someone who may know the resolution to this one
    Many thanks to you!

    Contact the developer of Goodsync at http://www.goodsync.com/mac/support/

  • JSP calling a shell script (permission denied error)

    HI there,
    I am trying to execute a shell script command from JSP, and I am pretty close to getting it done. The actual shell comnmand I am trying to run
    "scp test.txt somebody@somedomain:~/directory1/test.txt"
    is working fine when I run it from the shell command line (when I am logged in as that somebody)
    However, when I try to execute this script with the following JSP code (by accessing the JSP file from the browser, I get a permission denied error). The JSP file is set to 777 permission, and I have been trying lots of stuff with not much luck for a few days now .....
    any input is much appriciated
    <%@page language="java"%>
    <%@page import="java.io.BufferedReader"%>
    <%@page import="java.io.File"%>
    <%@page import="java.io.InputStreamReader"%>
    <%@page import="java.io.StringReader"%>
    <%@page import="java.io.File"%>
    <%@page import="java.io.FileInputStream"%>
    <%@page import="java.io.FileReader"%>
    <%@page import="java.io.Writer"%>
    <html>
    <body>
    <%
    String osName = System.getProperty("os.name");
    out.write(osName+"<br>");
    String s = null;
    String cmd1 = "scp test.txt somebody@somedomain:~/directory1/test.txt";
    out.write("Execing \"" + cmd1 + "\"<br>");
    File workDir = new File("/export/home/web/admintool/web/javatest");
    try {
        Process p1 = Runtime.getRuntime().exec(cmd1, null, workDir);
        int exitValue = p1.waitFor();
        if (exitValue == 0){
            BufferedReader stdInput = new BufferedReader(new InputStreamReader(p1.getInputStream()));
            while ((s = stdInput.readLine()) != null) {
                out.write(s + "<br>");
        else {
            BufferedReader stdErr = new BufferedReader(new InputStreamReader(p1.getErrorStream()));
            while ((s = stdErr.readLine()) != null)
                out.write(s + "<br>");
        out.write("exit value is" + exitValue + "<br>");
    catch (Exception e) {
        System.out.println(e);
    } %>
    </body></html>

    Doesn't matter what perms the JSP has.
    The servlet container and web server must allow it to runtime.exec, for one, which is insecure and dangerous. Talk to your admin if you want that and they may sandbox it for you.
    The next thing is that the JSP will run as the web server -- so the file to exec must be set as 777 or 755 with the web server uid in the same group as the owner (share gid).

  • Permission denied error while checking in

    I am working on webdynpro DC. While i try to checkin the DC, the following permission denied errror pops up. I have seen a blog with similar problem, but no answer. Will someone from SAP help solve this issue?
    <b><u>The related link with similar problem is</u></b>
    Permission denied error while CBS is building DCs
    <u><b>My Log is as follows:</b></u>
    Build number assigned: 7900
    Change request state from QUEUED to PROCESSING
    ACTIVATION request in Build Space "D30_ESSJAVA_D" at Node ID: 7,433,150
         [id: 7,756; parentID: 0; type: 4]
         [options: IGNORE COMPONENT INTERSECTION]
    REQUEST PROCESSING started at 2007-05-22 15:55:22.138 GMT
    ===== Pre-Processing =====
    Waiting 5 ms
    List of activities to be activated:
         1 activity in compartment "com.swiss_XSSswiss_1"
              Model_KA_22022007_1735
                   [seq. no 1129][created by INDIA at 2007-05-22 17:55:14.0][ID 4db56227087911dcb96f0013217ca473]
    Analyse activities... started at 2007-05-22 15:55:22.155 GMT
    Analyse dependencies to predecessor activities... finished at 2007-05-22 15:55:23.704 GMT and took 1 s 400 ms
              SKIP  : Development Component "com.swiss/xss/glbmr"
         1 component to be build in compartment "com.swiss_XSSswiss_1"
    Analyse activities... finished at 2007-05-22 15:55:23.777 GMT and took 1 s 622 ms
    Change request state from PROCESSING to PROCESSING
    Calculate all combinations of components and variants to be built...
         "com.swiss/xss/glbmr" variant "default"
    Prepare build environment in the file system... started at 2007-05-22 15:55:23.876 GMT
         Synchronize development configuration... finished at 2007-05-22 15:55:23.877 GMT and took 0 ms
         Synchronize component definitions... finished at 2007-05-22 15:55:23.892 GMT and took 14 ms
         Synchronize sources...
    17:55:36.481  SYNC  (FAILED: Failed to create/open file: /usr/sap/trans_D30/CBS/65/.CACHE/437/DCs/com.swiss/xss/glbmr/_comp/src/packages/com/swiss/glbmr/trainmodel/types/Bapiqualif.dtstructure <b>(Permission denied (errno:13)))  Bapiqualif.dtstructure  </b> (/usr/sap/trans_D30/CBS/65/.CACHE/437/DCs/com.swiss/xss/glbmr/_comp/src/packages/com/swiss/glbmr/trainmodel/types/Bapiqualif.dtstructure)
    17:55:36.702  SYNC  <b>(FAILED: Failed to create/open file: /usr/sap/trans_D30/CBS/65/.CACHE/437/DCs/com.swiss/xss/glbmr/_comp/src/packages/com/swiss/glbmr/trainmodel/types/Plstx.dtsimpletype.xlf (Permission denied (errno:13)))</b>  Plstx.dtsimpletype.xlf   (/usr/sap/trans_D30/CBS/65/.CACHE/437/DCs/com.swiss/xss/glbmr/_comp/src/packages/com/swiss/glbmr/trainmodel/types/Plstx.dtsimpletype.xlf)
    17:55:36.714  SYNC  (FAILED: Failed to create/open file: /usr/sap/trans_D30/CBS/65/.CACHE/437/DCs/com.swiss/xss/glbmr/_comp/src/packages/com/swiss/glbmr/trainmodel/types/Syuname.dtsimpletype (Permission denied (errno:13)))  Syuname.dtsimpletype   (/usr/sap/trans_D30/CBS/65/.CACHE/437/DCs/com.swiss/xss/glbmr/_comp/src/packages/com/swiss/glbmr/trainmodel/types/Syuname.dtsimpletype)

    Hi Sandeep,
    looks like your CBS has no permission in the filesystem where it tries to build your DC.
    The prefix "/usr/sap/trans_D30/CBS" looks a bit suspicious to me. Is it really intentional that CBS should work in some (probably publicly visible) transport directory?
    Regards,
    Marc

  • Access Denied Error when Installing Suitcase

    I am encountering an Access Denied Error when installing Suitcase X1 on a 600 MHz G3 ibook running 10.4.3 with all updates and it gets to 2 items remaining to be installed and I get access denied error and then another screen pops up and says "You do not have enough access privileges for this installation". I am logged in as an administrator, I tried creating a new Administrator account, I have repaired permissions, I have tried downloading a new file, all with no luck and now I am stuck. Any ideas?
    G3 Pismo, G4 Desktop   Mac OS X (10.4.3)  

    Hi,
    Firstly, please let us know if it is a workgroup or domain environment.
    Also, please let us know more details about the configurations of the server and clients.
    Meanwhile, you can check the settings by referring to the following:
    Allow someone to connect to your computer using Remote Desktop Connection
    http://windows.microsoft.com/en-HK/windows7/allow-someone-to-connect-to-your-computer-using-remote-desktop-connection
    Remote Desktop Connection: frequently asked questions
    http://windows.microsoft.com/en-hk/windows/remote-desktop-connection-faq#1TC=windows-8
    If issue persists, please provide us the unedited error message or screenshot for further research.
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • BUG:? "permission denied" error in generated javascript of af:table!

    Hi,
    In a JSF page with frames, the generated javascript event handlers (_tableSort and _navSubmit) of a af:table component raise a "permission denied" error in Internet Explorer.
    After this error is raised, nothing work... links, command, etc. do not respond.
    For example:
    1.- Frameset page:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces">
      <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
                  doctype-system="http://www.w3.org/TR/html4/loose.dtd"
                  doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <afh:html>
          <afh:frameBorderLayout id="ttt">
            <f:facet name="center">
              <afh:frame source="http://myserver/myapp/faces/Welcome.jspx" height="500" width="500"
                         id="xxx" name="xxx"/>
            </f:facet>
          </afh:frameBorderLayout>
        </afh:html>
      </f:view>
    </jsp:root>2.- And this is the http://myserver/myapp/faces/Welcome.jspx page (with af:table component):
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces">
      <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
                  doctype-system="http://www.w3.org/TR/html4/loose.dtd"
                  doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <afh:html>
          <afh:head title="Resultado Operacion">
            <meta http-equiv="Content-Type"
                  content="text/html; charset=windows-1252"/>
          </afh:head>
          <afh:body>
            <h:form>
              <af:table emptyText="No items were found"
                        value="#{MBDummy.listaPolizas}" var="row" rows="25">
                <af:column sortable="false" headerText="Pol Prefijo"
                           formatType="text">
                  <af:outputText value="#{row.polPrefijo}"/>
                </af:column>
                <af:column sortable="false" headerText="Pol Secuencia"
                           formatType="text">
                  <af:outputText value="#{row.polSecuencia}"/>
                </af:column>
              </af:table>
            </h:form>
          </afh:body>
        </afh:html>
      </f:view>
    </jsp:root>When I try to navigate through table pages, Interner Explorer raise the "Permission Denied" error

    Hi,
    Did you ever get any reply to this? I'm now running into the exact same problem, for the exact same reason (app works fine--unless a containing window is being served off another host--then we get Permission Denied). Changing the hosting configuration is, unsurprisingly, not an option. Is there a way around this problem? This is a really critical piece for us.
    Best,
    Avrom
    [edit: I have more information. This Javascript error is raised by a Javascript security feature and is intended to prevent cross-site scripting. If a frame's contents are served by a different server than the surrounding window, the contents of the frame are not allowed access to the other contents of the surrounding window.
    Apparently, a number of ADF Faces components (including the table) have Javascript that attempts to access the top-level window...which means that you *cannot* run ADF faces in a situation like the one you described. Personally, I think that's an ADF Faces bug.
    Our workaround is to abandon the idea of putting the app in a frame...we're going with either a popup or allowing the app to take over the window.]
    Message was edited by:
    Avrom

  • I receive the below error when imprting an .eex file .... please help

    I receive the below error when imprting an .eex file .... please help
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Business Area with identifier 'WFS_Fixed_Assets'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Business Area with identifier 'WFS_Fixed_Assets'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Business Area with identifier 'WFS_Fixed_Assets'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Business Area with identifier 'WFS_Fixed_Assets'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Business Area with identifier 'WFS_Fixed_Assets'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Folder with identifier 'XXWFS_FA_ASSETS_V'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Item with identifier 'ASSET_NUMBER'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Item with identifier 'DATE_PLACED_IN_SERVICE'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Item with identifier 'DEPRECIATION_AMT'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Item with identifier 'DEPRECIATION_METHOD'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Item with identifier 'DESCRIPTION'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Item with identifier 'LIFE_IN_MONTHS'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Item with identifier 'ORIGINAL_COST'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Item with identifier 'PERIOD_NAME'
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex:Access is denied trying to modify the Item with identifier 'YTD_DEPERIATION_AMT'
    Import completed, but with warnings. Please check the result.
    File(s) imported partially :
    C:\Documents and Settings\skarnam\Desktop\WFS Fixed Assets BA.eex

    Hi,
    You don't say what components you are trying to import into the EUL. But it could be that you are importing a business area which has security access granted to a user that is not defined on the target system. It could also be that the user you are using to do the import does not have admin access to all the components you are importing.
    Rod West

Maybe you are looking for

  • Error in Posting of Vendore Excise Inv.

    Hi, I have been facing one error while posing of Vendor Excise Inv. against incoming materials using T.Code: J1IEX. When I try to post Excise Inv. against 'Vendor Excise Inv. / Internal Excise Inv.' I am getting Error msg "All Part I entries have bee

  • Customer fields problem

    Hi experts I inserted a customer field in shopping cart item structure INCL_EEW_PD_ITEM_CSF_SC and now I am able to see it in shopping cart creation, the problem is when insert some information in this customer field it is imediately cleared, and I c

  • Problem with field standard ship-to  in delta extraction

    Hi developers, I have a problem because using in infosource 2lis_11_vascl the field MCVBAP  PKUNWE Ship-to this is correctly filled in init procedure, but when I effectued the procedure delta, also when the sales order is not modified, I lose this in

  • Wired 802.1x With Static IP on endopoints

    Hi all Someone know if a 802.1x implementation with Cisco ISE, works with static IP in the endpoints or there are any issue in this deployment? I have a lab deployment but does not work fine with a static IP in the client (laptop) but when i work wit

  • Stacked charts

    I want to create a stacked column chart with both negative and posotive values. but i m not able to plot it. Can anybody suggest something on this. how shud i <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx=" http://www.adobe.com/2006