Permission denied reading from SuperDrive

Hi, I have an MacPro4,1 and I'm having a weird issue. I have two Superdrives and one of them seems to be acting up. My top drive has no problem reading any disks but the bottom one keeps giving me a "Permission Denied" when reading. I'm reading the exact same disk in both drives, the top one works perfectly, the bottom one gives me the error. Both drives are identical, here are the specs:
HL-DT-ST DVD-RW GH41N:
Firmware Revision: PQ06
Interconnect: ATAPI
Burn Support: Yes (Apple Shipping Drive)
Cache: 2048 KB
Reads DVD: Yes
CD-Write: -R, -RW
DVD-Write: -R, -R DL, -RW, +R, +R DL, +RW
Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
Any clue would be highly appreciated.
Thanks!
Simon

Anyone else ever experienced the same thing or something similar?

Similar Messages

  • NQSError: 66013 Permission Denied message from agent

    Hello all-
    I have an issue where an agent that I previously had working was converting from tab delimited file to CSV and placing it on a file system. Now since I have moved the location where the file system resides the new machine is giving me a problem and doesn't allow the agent complete. The exact message is
    [nQSError: 66013] [Line:75 Column 1]
    Permission Denied
    I am guessing this is an issue with the saving to the file system and perhaps some permissions.
    This is the syntax of Line 75 column 1
    objFSO.CopyFile Parameter(0), sFileName, True
    Here is the complete file
    '###======================================================================
    '## Purpose:
    '## 1. This script takes a file from OBIEE and saves to the file system
    '## 2. Creates a reporting subdirectory if not already present
    '## 3. Creates a further subdirectory with name based on current date
    '## 4. Converts .tsv file to true .csv
    '## 5. Deletes .tsv file used in conversion process
    '## Inputs (specified in Actions tab of OBIEE Delivers Agent):
    '## 1. Parameter(0) - This actual file to be exported
    '## 2. Parameter(1) - The filename specified within OBIEE
    '## 3. Parameter(2) - Report sub directory name specified within OBIEE
    '###=========================================================================
    Const ForReading = 1
    Const ForWriting = 2
    Const Unicode = -1
    Dim sBasePath
    sBasePath = "\\NZWLGFP01\Shared\NAV_Warehouse\RetailPro"
    'NZWLGFP01\Shared\NAV_Warehouse\RetailPro"
    '\\iblocal\global\integration\production\retailpro"
    '"\\usesfil01\integration\production\retailpro"
    Dim sMasterPath
    sMasterPath = sBasePath & "\" & Parameter(2)
    Dim objFSO
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    'check whether master directory exists, if not create
    'Dim objMasterDir
    'If Not objFSO.FolderExists(sMasterPath) Then
    '     Set objMasterDir = objFSO.CreateFolder(sMasterPath)
    'End If
    'Set objMasterDir = Nothing
    'build string to get date in yyyy-mm-dd format
    Dim sDate, sDateFull
    sDate = Now
    sDateFull = DatePart("yyyy", sDate) & "-"
    'setting the month
    If Len(DatePart("m", sDate))=1 Then sDateFull = sDateFull & "0" End If
    sDateFull = sDateFull & DatePart("m", sDate) & "-"
    'setting the day
    If Len(DatePart("d", sDate))=1 Then sDateFull = sDateFull & "0" End If
    sDateFull = sDateFull & DatePart("d", sDate) & "_"
    'setting the hour
    If Len(DatePart("h", sDate))=1 Then sDateFull = sDateFull & "0" End If
    sDateFull = sDateFull & DatePart("h", sDate) '& "-"
    'setting the minute
    If Len(DatePart("n", sDate))=1 Then sDateFull = sDateFull & "0" End If
    sDateFull = sDateFull & DatePart("n", sDate)
    'setting the second
    If Len(DatePart("s", sDate))=1 Then sDateFull = sDateFull & "0" End If
    sDateFull = sDateFull & DatePart("s", sDate)
    'Not needed for this script
    'Dim sDir
    'sDir = sMasterPath & "\" & sDateFull
    'Dim objDir
    'If Not objFSO.FolderExists(sDir) Then
    '     Set objDir = objFSO.CreateFolder(sDir)
    'End If
    'Set objDir = Nothing
    Dim sFileName
    sFileName = sMasterPath & "\" & Parameter(1) & "_" & sDateFull &".tsv"
    objFSO.CopyFile Parameter(0), sFileName, True
    sFileName1 = sMasterPath & "\" & Parameter(1) & "_" & sDateFull & ".csv"
    'Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objFileIN = objFSO.OpenTextFile(sFileName, ForReading, False, Unicode)
    Set objFileOUT = objFSO.CreateTextFile(sFileName1, True, True)
    While Not objFileIN.AtEndOfStream
    strText = objFileIN.ReadLine
    strNewText = Replace(strText, vbTab, ",")
    objFileOUT.WriteLine (strNewText)
    Wend
    objFileIN.Close
    objFileOUT.Close
    objFSO.DeleteFile sFileName
    Set objFile = Nothing
    Set objFSO = Nothing
    Set objFileIN = Nothing
    Set objFileOUT = Nothing
    How can I resolve this issue? Do I need to look into windows permission? Do I need to change the syntax? Can someone please help?

    Hello Grzegorz, try next:
    1.Enter the Integration Framework
    2.Go to Section SLD
    3.Check if the database appears in the section B1iServer
              - If so, check the configuration fields for the database
              - If not, add it and configure it
    4.If you did changes
               - Go to Section Scenarios->Setup
               - Select sap.B1Mobile Scenario
               - Deactivate and Activate
               - Restart Integration Service
    Regards, Borja.

  • Cfcollection action='create' permission denied "read" (what???)

    Hello, everyone.
    I'm working on a script that will delete specific SOLR collections, re-create them, index them, then optimize them.
    The delete portion succeeds. The create, however, is failing with a permissions issue:
    access denied ("java.io.FilePermission" "X:\www\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\collections\xyz" "read")
    What the heck is it trying to "read" when creating a collection with a CFCOLLECTION tag??
    <cfcollection action="create" collection="xyz" 
       categories="no" path="X:\www\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\collections\xyz" 
       language="English" engine="solr">
    It runs fine if sandbox is disabled. This is not an option. Can anyone, please, help fix this?
    Sandbox gives the CF account Read,Write,Execute on EVERYTHING.
    ^_^

    It is NOT related to Java 7.  I uninstalled Java 7 from my dev machine and tested.  The issue still remains.
    I thought there might be a possibility that Tomcat didn't have the permissions, but this is also not the issue.
    Still looking for a solution.
    ^_^

  • Startx: xf86OpenConsole: Cannot Open /dev/tty0 (Permission Denied)

    running startx as normal user gives me the following error:
    xf86OpenConsole: Cannot Open /dev/tty0 (Permission Denied)
    it seems to run ok as root... but I obviously don't want to be doing that all the time. I guess that means its a permission issue, but what, where, when and how?
    I searched the forums and found one article from last year with similar errors after an updated Xorg package, apparently that was fixed and it gave me no insight as to how to manually fix this error.
    I'm just starting with Arch and its my first 'advanced' distro (been mostly running ubuntu up until now)... hence, I've never had to set up Xorg etc before.

    $ groups
    users
    $ls -l /dev/tty0
    lrwxrwxrwx 1 root root 4 2007-10-17 08:54 /dev/tty0 -> vc/0
    I've already tried adding the group 'users' to /dev/tty0 but when I restart it just goes back to 'root'
    When I do add the group 'users', it seems to get past the problem with /dev/tty0 and it gives me this error:
    xf86OpenConsole: Cannot open virtual console 7 (Permission Denied)

  • Adgrants.sql O/S permission denied

    HI All,
    after applying patch 5989593 - AD: 11i: Remove "REVOKE ALL FROM PUBLIC" from ADGRANTS.SQL
    Running adgrants.sql gives
    SQL>@adgrants.sql
    O/S Message: Permission denied
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.8.0 - Production
    Please suggest
    Rgds,
    SK

    Hi,
    Arnoud -
    the ownership/permissions on adgrants.sql are the same
         -rwxr-xr-x 1 oradev dba 21648 Jan 01 2002 adgrants.sql
    Fadi -
    i ran the script as mentioned
    sqlplus "/as sysdba"
    @adgrants.sql APPLSYS
    i am still getting the same error
    SQL> @adgrants.sql APPLSYS
    O/S Message: Permission denied
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.8.0 - Production
    Please suggest.
    Rgds,
    SK

  • PowerPivot 2012 Error: BaseWorkbook.CacheStream: Failed to read from stream. Error was: System.Data.SqlClient.SqlException: The EXECUTE permission was denied on the object 'proc_FetchChunkFromDocStreams', database 'SharePoint_AdminContent'

    Hi, I have setup PowerPivot 2012 for SharePoint, but when I access'PowerPivot Management Dashboard' in Central Admin I get error message 'An error has occured'
    Below is the error in the ULS,
    Background file fill operation caught exception: System.Data.SqlClient.SqlException: The EXECUTE permission was denied on the object 'proc_FetchChunkFromDocStreams', database 'SharePoint_AdminContent_ca021d58-ef1f-4f30-9aeb-6f24db24862b', schema 'dbo'.  
     at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)    
     at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)    
     at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)    
     at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()    
     at System.Data.SqlClient.SqlDataReader.get_MetaData()    
     at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)    
     at System.Data.SqlClient.SqlCommand.CompleteAsyncExecuteReader()    
     at System.Data.SqlClient.SqlCommand.InternalEndExecuteReader(IAsyncResult asyncResult, String endMethod)    
     at System.Data.SqlClient.SqlCommand.EndExecuteReader(IAsyncResult asyncResult)    
     at Microsoft.SharePoint.CoordinatedStreamBuffer.AsyncSqlSession.EndExecuteReader(IAsyncResult ar)    
     at Microsoft.SharePoint.CoordinatedStreamBuffer.SPBackgroundSqlFileFiller.OnReadComplete(IAsyncResult result)
    BaseWorkbook.CacheStream: Failed to read from stream. Error was: System.Data.SqlClient.SqlException: The EXECUTE permission was denied on the object 'proc_FetchChunkFromDocStreams', database 'SharePoint_AdminContent_ca021d58-ef1f-4f30-9aeb-6f24db24862b',
    schema 'dbo'.    
     at Microsoft.SharePoint.CoordinatedStreamBuffer.SPBackgroundFileFiller.Fill()    
     at Microsoft.SharePoint.CoordinatedStreamBuffer.SPCoordinatedStreamBuffer.WaitForIntervalFill(SPInterval i)    
     at Microsoft.SharePoint.CoordinatedStreamBuffer.SPCoordinatedMemoryStream.Read(Byte[] array, Int32 offset, Int32 count)    
     at Microsoft.SharePoint.SPFileStream.Read(Byte[] buffer, Int32 offset, Int32 count)    
     at Microsoft.Office.Excel.Server.CalculationServer.BaseWorkbookManager.CacheStream(CachedFile cachedFile, FileLoader loader)
    Regards,
    Ayaz
    SharePoint Architect

    Hey Ayaz,
    I do had the same error message when I click on "PowerPivot Management Dashboard". After few research I resolved this issue.
    You need to provide the dbReader and dbWriter permission to powerpivot app pool account at "SharePoint_AdminContent_ca021d58-ef1f-4f30-9aeb-6f24db24862b"
    Have a great day :-)
    Santosh sethi

  • Pages downloaded from the App-store refuses to save: Permission denied. How can I download a new one?

    Pages downloaded from the App-store refuses to save: Permission denied. How can I download a new one? Please Advice .

    Is the computer yours, and are you the Administrator or a user with administrator rights? Are you allowed to install software on the computer?
    Check your "purchased" list. Pages should show there, and if it's not installed it should read "install" next to it.
    Have you tried another mac? You can install the purchased software on another Mac by using your AppleID that you purchased the software with on the first mac.
    And yes, kerropas se viesti

  • Access Denied error while reading from filestream

    Hi Everyone.
    I have an intranet application that stores files in SQL filestream.
    On my dev machine, everything works like a charm.
    I'm able to upload and store files into SQL filestream (AjaxUpload) and able to downlaod them.
    On the live server, I'm able to upload files, delete them, but when I try to download the file from filestream, I get the following error:
    Access is denied
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.ComponentModel.Win32Exception: Access is denied
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [Win32Exception (0x80004005): Access is denied]
    System.Data.SqlTypes.SqlFileStream.OpenSqlFileStream(String path, Byte[] transactionContext, FileAccess access, FileOptions options, Int64 allocationSize) +1465594
    System.Data.SqlTypes.SqlFileStream..ctor(String path, Byte[] transactionContext, FileAccess access, FileOptions options, Int64 allocationSize) +398
    System.Data.SqlTypes.SqlFileStream..ctor(String path, Byte[] transactionContext, FileAccess access) +27
    quotes_GetFileStream.quotes_GetFileStream_Load(Object sender, EventArgs e) +740
    System.Web.UI.Control.LoadRecursive() +71
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3048
    The application pool is set to integrated, V.4.0,  and I use a domain user for the identity authentication back to SQL.
    I gave that user DB_Owner rights to the SQL Database for that application.
    Even tried giving it all the SQL Server Roles, though i still get the above error.
    When I change the Identity username to mine (I have Domain Admin rights), everything works flawlessly on the live server.
    What rights am I missing to give that user so he can read from SQL filestream properly.
    Here is the block of code that gets the file from filestream and pushes it to the browser, maybe I'm missing something here (though once i modify the user it works great).
    Dim RecId As Integer = -1
    If Not IsNothing(Request.QueryString("ID")) And IsNumeric(Request.QueryString("ID")) Then
    RecId = CType(Request.QueryString("ID"), Integer)
    End If
    Dim ConString As String = ConfigurationManager.ConnectionStrings("ConnectionString").ToString
    Using Con As SqlConnection = New SqlConnection(ConString)
    Con.Open()
    Dim txn As SqlTransaction = Con.BeginTransaction()
    Dim Sql As String = "SELECT FileData.PathName() , GET_FILESTREAM_TRANSACTION_CONTEXT() as TransactionContext, [FileName], [FileExtension] FROM [QAttach] where RecId = @RecId"
    Dim cmd As SqlCommand = New SqlCommand(Sql, Con, txn)
    cmd.Parameters.Add("@RecID", Data.SqlDbType.Int).Value = RecId
    Dim Rdr As SqlDataReader = cmd.ExecuteReader()
    While Rdr.Read()
    Dim FilePath As String = Rdr(0).ToString()
    Dim objContext As Byte() = DirectCast(Rdr(1), Byte())
    Dim fname As String = Rdr(2).ToString()
    Dim FileExtension As String = Rdr(3).ToString()
    Dim sfs As SqlFileStream = New SqlFileStream(FilePath, objContext, FileAccess.Read)
    Dim Buffer As Byte() = New Byte(CInt(sfs.Length) - 1) {}
    sfs.Read(Buffer, 0, Convert.ToInt32(Buffer.Length))
    Response.Buffer = True
    Response.Charset = ""
    Response.Cache.SetCacheability(HttpCacheability.NoCache)
    Response.ContentType = FileExtension
    Response.AddHeader("content-disposition", "attachment;filename=" & fname)
    Response.BinaryWrite(Buffer)
    Response.Flush()
    Response.End()
    sfs.Close()
    End While
    End Using
    Thanks.
    Oren

    @William Bosacker:
    Please accept our apologies for any mistreatment.  While there's certainly no legal recourse for posts on an open forum like this, we do take steps to try to keep the forums a pleasant and friendly place to visit, and toward this end, two other moderators
    have already cleaned the thread and have begun to address the abuse.
    Not to defend the manner in which it was addressed, I must still point out that necro posting to a thread (this thread is from late 2013) and proposing your post as an answer are both generally discouraged. Again, I cannot condone the way in which it was
    presented, but I can understand why the other contributors thought something should be said.
    The recommended way to contribute information like this would be to create a new Discussion thread with content something like:
    "I was experiencing XYZ issue and while searching for a resolution I found this thread [link to old thread].  But after trying A, B, and C, I found that the following actually resolved my problem [code snippet].  I thought this might be helpful
    for anyone else with this issue... yada yada"
    In the case of this original thread, the issue was most certainly permission related.  While the underlying network permissions would certainly need to allow that user to access the server, the root problem may well have been within the SQL table permissions
    themselves.  The OP of the original thread really didn't provide enough context to know if they had the internal database permissions set correctly.
    The information you've provided essentially shows one way to set the table permissions, but it isn't necessarily the only way.  Its also possible that the issue could be resolved by modifying permission entries within the SQL manager rather than through
    a particular script file.  So while this information may indeed be helpful to someone in the future, it does not necessarily answer the question of this thread.  Only the OP has enough information to know if this can be applied to their situation;
    and since the thread is several years old and was originally closed by a moderator, there is very little chance that the OP will be back to respond.
    Hopefully this clears the air a little and will allow us all to get back to trying to help the VB development community within the guidelines of the forum.
    Reed Kimble - "When you do things right, people won't be sure you've done anything at all"

  • Executing window.opener.FunName from Web IC pop-up = Permission Denied

    Hello,
    I have modified a copy of the BuPaCreate view and controller.  When the user hits save, I open a child window to perform some validation using an external system.  I want to write the corrected values back to the form on the BuPaCreate view and then submit the form.  I created a JavaScript function within BuPaCreate to do this.  I'm running into problems when I try to execute this function from the pop-up window.   It is giving a permission denied error.  I made certain my domain and server names are the same. 
    Has anyone else been able to execute a function within a Web IC view in this manner before?  Is there an alternate method for returning the corrected values.
    Thank you for any help you may be able to provide.  I promise to reward all usefull answers.
    Thank you,
    John

    <i>If I leave the method setting out completely, it defaults to POST.</i>
    -->Yes if you dont use anything, then default value will be "Post". But it will give error when you mention explicitly in case of child window usage.
    -->In your code instead of using "element.innerText = val;", you can use
    "element.innerHTML = val;
    --> You need to use the below code get the value from child to main window:
                <script language="javascript" event="onLoad()">
                       opener.document.htmlb_form_1.fieldID.value = <%= your_value %>;
                       window.self.close();
          </script>
    Here is the sample code which handles the child & parent window..Have a look..
    Here is the similar example. I used MVC concept:
    <b>Note:</b> But instead of Model class i used APplication class. You can change ito MODEL Class where ever applicaable.
    Let me know if you have any issue:
    <b>Main.htm:</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2002+design2003" >
      <htmlb:page title="Add Employee Details " >
        <htmlb:form action="POST" >
          Account Number:
          <htmlb:inputField id          = "Account"
                            showHelp    = "true"
                            value       = "<%= Account %>"
                            onValueHelp = "javascript:window.open('acctpop.do?showppopup=true', '_blank', 'Account Details','width=100,height=300');" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Page attribute:</b>
    account TYPE string
    <b>Acctpop.htm</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2003" >
      <htmlb:page title="Test" >
        <htmlb:form id="my_window" >
          <%
      data TV_ITERATOR Type Ref To zcl_itr." - Iterator Function
      data iterator type ref to IF_HTMLB_TABLEVIEW_ITERATOR.
      create object tv_iterator exporting appl_cons = application.
      iterator = tv_iterator.
          %>
          <htmlb:tableView id               = "pop"
                           width            = "200"
                           headerVisible    = "true"
                           design           = "alternating"
                           visibleRowCount  = "10"
                           fillUpEmptyRows  = "true"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= row_index %>"
                           onRowSelection   = "MyEventRowSelection"
                           showNoMatchText  = "true"
                           filter           = "server"
                           sort             = "server"
                           onHeaderClick    = "MyEventHeaderClick"
                           table            = "<%= it_account %>"
                           iterator         = "<%= iterator %>" >
          </htmlb:tableView>
          <%
      if account is not initial.
          %>
          <htmlb:inputField id      = "checked"
                            visible = "FALSE"
                            value   = "<%= lv_checked %>" />
                <script for="checked" language="javascript" even="onLoad()">
                       opener.document.htmlb_form_1.account.value = <%= account %>;
                       window.self.close();
          </script>
          <%
      endif.
          %>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Controller Class:</b>
    METHOD DO_INIT.
      CREATE OBJECT APPL.
      SELECT * FROM SFLIGHT INTO TABLE APPL->ITAB.
    ENDMETHOD
    METHOD DO_REQUEST.
      DATA: POPVIEW TYPE REF TO IF_BSP_PAGE.
      DISPATCH_INPUT( ).
      DATA: LV_FIELD TYPE STRING.
    * Get the value of Page level variables.
      LV_FIELD = REQUEST->GET_FORM_FIELD( 'showppopup' ).
      IF LV_FIELD IS NOT INITIAL .
        APPL->VIEW_NAME = 'acctpop.htm'.
      ENDIF.
      IF APPL->VIEW_NAME IS INITIAL.
        APPL->VIEW_NAME = 'main.htm'.
      ENDIF.
      POPVIEW = CREATE_VIEW( VIEW_NAME = APPL->VIEW_NAME ).
      IF APPL->VIEW_NAME = 'acctpop.htm'.
        POPVIEW->SET_ATTRIBUTE( NAME = 'it_account' VALUE = APPL->ITAB ).
        POPVIEW->SET_ATTRIBUTE( NAME = ' accout' VALUE = APPL->account ).
      ENDIF.
      CALL_VIEW( POPVIEW ).
    ENDMETHOD.
    METHOD DO_HANDLE_DATA.
    data: FIELD TYPE IHTTPNVP.
      READ TABLE FORM_FIELDS WITH TABLE KEY
      NAME = ' Account ' INTO FIELD.
      ME-> Account = FIELD-VALUE.
    ENDMETHOD.
    METHOD DO_HANDLE_EVENT.
      DATA: IND TYPE I.
      DATA: TV TYPE REF TO CL_HTMLB_TABLEVIEW.
      DATA: EVENT1 TYPE REF TO CL_HTMLB_EVENT.
      EVENT1 = CL_HTMLB_MANAGER=>GET_EVENT( RUNTIME->SERVER->REQUEST ).
      TV ?= CL_HTMLB_MANAGER=>GET_DATA(
      REQUEST = RUNTIME->SERVER->REQUEST
      NAME = 'tableView'
      ID = 'pop' ).
      IF TV IS NOT INITIAL.
        DATA: TV_DATA TYPE REF TO CL_HTMLB_EVENT_TABLEVIEW.
        TV_DATA = TV->DATA.
        IF TV_DATA->SELECTEDROWINDEX IS NOT INITIAL.
          DATA: ROW LIKE LINE OF APPL->ITAB.
          READ TABLE APPL->ITAB INDEX TV_DATA->SELECTEDROWINDEX INTO ROW.
          DATA VALUE TYPE STRING.
          APPL-> Account = ROW- Account.
        ENDIF.
      ENDIF.
    ENDMETHOD.
    Hope this will help you.
    Let me know if you have any queries.
    Raja T

  • Permission denied error in whstart.js after generating from RH10

    I am running a very small (1 topic) project to test out RH10. After generating and getting the yellow bar warning at the top, I added Mark of the Web and re-generated. Then my IE8 page just flashed over and over again until I hit Cancel and looked at the errors:
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)
    Timestamp: Thu, 5 Sep 2013 18:00:49 UTC
     Message: Invalid character
    Line: 1
    Char: 1
    Code: 0
    URI: file:///C:/Users/forbesh/Documents/rh10generate/desktop/whver.js
    Message: Invalid character
    Line: 1
    Char: 1
    Code: 0
    URI: file:///C:/Users/forbesh/Documents/rh10generate/desktop/whutils.js
    Message: Invalid character
    Line: 1
    Char: 1
    Code: 0
    URI: file:///C:/Users/forbesh/Documents/rh10generate/desktop/whmsg.js
    Message: Invalid character
    Line: 1
    Char: 1
    Code: 0
    URI: file:///C:/Users/forbesh/Documents/rh10generate/desktop/whstub.js
    Message: Permission denied
    Line: 47
    Char: 1
    Code: 0
    URI: file:///C:/Users/forbesh/Documents/rh10generate/desktop/whstart.js
    The first four are repeated many times until I hit Cancel on the page. In whver, whutils, whmsg  and whstub, Line 1, Char 1 is a / to start a comment // and is greyed out in the code reader in Dreamweaver. Line 47, Char 1 in whstart is v from the word var.
    I took out and then reinserted Mark of the Web, the page now loads properly but takes a very long time to do so: it has been loading already for over a minute and just loaded.
    Can anyone tell me why I got those messages? And secondly, why is it loading so slowly?
    Thanks in advance!

    I'm about to convert a much larger project from RH9 to RH10. The big one is working well with the same IE8 settings, I don't want to trade that for being able to take advantage of HTML5 output if my desktop output is going to suffer as that is still the largest part of my target audience. That's why I would really like to find out why these two things are happening.
    Chrome even loads the page much faster than IE.
    Thanks for the help.
    Helen

  • 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

  • Permission Denied when calling a method from VB using WebLogic 8.1.2 JCOM

    Hi,
    We are calling an java/ejb methods from VB using WebLogic JCOM 8.1 SP2. But
    using JCOM, we are getting a error Permission denied when called from VB. We think
    that we should update pathch jintegra 2.0 or 2.1 in WebLogic 8.1.2 the to solve
    this issue, because we faced the same problen "permission denied" when we used
    JINTEGRA(third party software). Once we installed the JINTEGRA 2.1 it solved the
    issue.
    So, can anyone help on regard to this issue of "Permission denied" in WebLogic
    JCOM 8.1 SP2.
    Thanks & Regards
    Raghu

    I too am experiencing the jCOM error: "Run-time error '70': Permission Denied". The problem appears to be related to a Microsoft Security Patch KB835732 (MS04-011 which, as you indicated, has been fixed in J-Integra v2.1 (FYI, jCOM 8.1 is based on J-Integra 1.5.4, see J-Integra/jCOM versions.
    Did you ever get a resolution concerning 8.1 SP2? 8.1 SP3 is available now but I don't see any mention of jCOM updates in the WebLogic 8.1 What's New documention. I can't immediately upgrade (trying to stay on same version as a few other developers I work with) but I am hoping it is resolved in SP3.

  • Find gives permission denied on files when executed from bash script.

    I've written a really basic script just to check what new music was added to my library over the past n days:
    #!/bin/bash
    echo "Check for days?"
    read days
    `find /home/tom/Music/ -iname "*.*" -type f -mtime -$days -print`
    If I run the find from the shell it runs fine but the script always gives this error:
    ./listNewMusic.sh: line 7: /home/MrGone/Music/Smod/SModcast-19.mp3: Permission denied
    Anyone know why?
    Thanks.

    It is because you're running the find command in a sub-shell.  What is returned by the sub-shell is being run by your script.
    Change:
    `find /home/tom/Music/ -iname "*.*" -type f -mtime -$days -print`
    to
    find /home/tom/Music/ -iname "*.*" -type f -mtime -$days -print
    Last edited by steve___ (2010-07-10 12:50:38)

  • Error connecting from Mac to Linux via SSH (Permission denied (publickey...

    Hello together,
    I have a perfectly working setup with my XP machine, Putty and my Suse Linux server that allow for remote login via SSH. I use Public Key authentication.
    However, when I try to login from my Mac, all I get from the Mac side is a
    "Permission denied (publickey,keyboard-interactive)."
    And I can't establish the connection. On the server in 'messages' I get:
    "sshd{6046}: Accepted publickey for {userName} from {myHomeIP} port 38335 ssh2"
    What could be wrong here?
    I would like to use the same keys on my PC and my Mac so I just copied the key files into the .ssh directory on the Mac, did a chmod 600 on them and then tried to remote log-on with the follwoing from the terminal:
    "ssh -l {userName} {host} -i {keyFile}"
    My questions are:
    1) How am I sure that the Mac uses the right key files? (or uses them at all)
    2) How come my server says "accept publickey" and no connection is established?
    3) Do you have any other idea on how I might get this to work? What I need is a method to copy files (not via FTP) to my server and let the process run without supervision / user interaction.
    Thanks a lot for all your help!
    Cheers
    Message was edited by: Sebastian_R (some typos)

    If you copied your files from Windows, I would check to make sure your lines are <LF> terminated. I have not played with Putty so I do not know the way it line terminates its ssh key files, but Windows has a long tradition of using <CR><LF> to terminate its lines.
    cat -v ~/.ssh/id_rsa # or whatever your file names are
    If there are <CR> characters in the file, they will show up as ^M
    Next get more diagnostic information from ssh using an *ssh -v -v -v*
    If you know how to tell Putty to do the same thing, do it from Putty as well.
    Now compare the debug output from the working vs the non-working ssh commands. The differences will tell you a lot.
    If you look at *man ssh* and search for permissions it will tell you what files need restrictive permissions. You can get a permissions denied error if your home directory allows Group or Other write access. The $HOME/.ssh directory needs to be set so ONLY the Owner is allowed to access it. And some of the files in $HOME/.ssh require specific permissions. The ssh man page details this.

  • Permission denied in calling ssh file from job

    hello
    i tried to create program and a job to execute ssh file using sql i am using oracle 10g R2
    as following :
    begin
    DBMS_SCHEDULER.create_program (
       program_name => 'START_SCRIPT_INVOIC',
       program_type => 'EXECUTABLE',
       program_action => 'root/[email protected]:/home/admin/services/fd_listener/INVOICStart.sh',
       number_of_arguments => 0,
       enabled => TRUE,
       comments => 'COMMENTS ABOUT THE SCRIPT ROLE');
    dbms_scheduler.create_job 
      (job_name => 'START_SERVICE_INVOIC', 
       program_name=> 'START_SCRIPT_INVOIC', 
       enabled=>true, 
       auto_drop=>false, 
       comments=>'Job used to run the program START_SCRIPT');
    end;
    then i tried to start to exec the job as follow
    BEGIN
    dbms_scheduler.RUN_JOB('START_SERVICE_INVOIC');
    END;
    and give me this error :
    >[Error] Script lines: 1-4 --------------------------
    ORA-27369: job of type EXECUTABLE failed with exit code: Permission denied
    ORA-06512: at "SYS.DBMS_ISCHED", line 150
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 441
    ORA-06512: at line 2 
    please help me i need to execute  this urgently 

    user11114041 wrote:
    hello
    i tried to create program and a job to execute ssh file using sql i am using oracle 10g R2
    as following :
    begin
    DBMS_SCHEDULER.create_program (
       program_name => 'START_SCRIPT_INVOIC',
       program_type => 'EXECUTABLE',
       program_action => 'root/[email protected]:/home/admin/services/fd_listener/INVOICStart.sh',
       number_of_arguments => 0,
       enabled => TRUE,
       comments => 'COMMENTS ABOUT THE SCRIPT ROLE');
    dbms_scheduler.create_job 
      (job_name => 'START_SERVICE_INVOIC', 
       program_name=> 'START_SCRIPT_INVOIC', 
       enabled=>true, 
       auto_drop=>false, 
       comments=>'Job used to run the program START_SCRIPT');
    end;
    then i tried to start to exec the job as follow
    BEGIN
    dbms_scheduler.RUN_JOB('START_SERVICE_INVOIC');
    END;
    and give me this error :
    >[Error] Script lines: 1-4 --------------------------
    ORA-27369: job of type EXECUTABLE failed with exit code: Permission denied
    ORA-06512: at "SYS.DBMS_ISCHED", line 150
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 441
    ORA-06512: at line 2 
    please help me i need to execute  this urgently
    This is a forum of volunteers.  There is no "urgent" here.

Maybe you are looking for

  • Unable to update iphoto to 9.4.3. - error

    Hi, I am unable to update iphoto (update to 9.4.3.) on my imac with OSX 10.8.3. Every time it starts to download but after a minute or so I get a message 'an error has occured'. What should I do?  thanks in advance

  • Down payment request without PO possible?

    Hello, Is it possible to create a down payment request without having to use a PO. This concerns financial postings for services. Thank you for sharing your experience. Kind regards, Linda

  • A/R Aging query

    Hello Guys, I am trying to understand the structure of SAP BI A/R aging query. I have a question about the definition of the monthly buckets. In one of the selections, we have Item status - open Net due date - 1 - 30 Days Document Date <= net due dat

  • How to derive/generate Revenue only wth Project costing?Burdening possible?

    Hello Experts / Dina, I am doing a implementation to customer where only Project costing is in scope and customer wanted to derive / generate revenue for few of the revenue generated project using oracle project costing. Currently this customer is us

  • How do you send a basic support email to adobe?

    What is the Adobe tech support email address for some like the free Flash Player?