9.2.0.4.0 OracleParameterCollection protection level changed so breaks code

We've just installed 9.2.0.4.0 to find it breaks our code. The OracleParameterCollection class has had its access level changed which means we cannot instantiate a new OracleParameterCollection.
Is this is a bug ? Or can we create an OracleParameterColection in some other way ??
Incidentally the documention still shows the class as public.

It looks like you're just using OracleParameterCollection as a concrete implementation of IDataParameterCollection.
If so, since ODP no longer has a public, creatable class implementing this interface,you will have to roll your own implementation of IDataParameterCollection.
Your other option is to switch from using an IDataParameterCollection to an array of IDataParameter, or a paramarray or some such.
Anyway, were's an example in VB of a simple class implementing IDataParameterCollection.
  Public Class ParameterCollection
    Implements IDataParameterCollection
    Private params As ArrayList
    Public Sub New()
      params = New ArrayList
    End Sub
    Public Sub CopyTo(ByVal array As System.Array, ByVal index As Integer) Implements System.Collections.ICollection.CopyTo
      params.CopyTo(array, index)
    End Sub
    Public ReadOnly Property Count() As Integer Implements System.Collections.ICollection.Count
      Get
        Return params.Count
      End Get
    End Property
    Public ReadOnly Property IsSynchronized() As Boolean Implements System.Collections.ICollection.IsSynchronized
      Get
        Return params.IsSynchronized
      End Get
    End Property
    Public ReadOnly Property SyncRoot() As Object Implements System.Collections.ICollection.SyncRoot
      Get
        Return params.SyncRoot
      End Get
    End Property
    Public Function GetEnumerator() As System.Collections.IEnumerator Implements System.Collections.IEnumerable.GetEnumerator
      Return params.GetEnumerator
    End Function
    Public Function Add(ByVal value As Object) As Integer Implements System.Collections.IList.Add
      Dim p As IDataParameter = DirectCast(value, IDataParameter)
      params.Add(p)
    End Function
    Public Sub Clear() Implements System.Collections.IList.Clear
      params.Clear()
    End Sub
    Public Overloads Function Contains(ByVal value As Object) As Boolean Implements System.Collections.IList.Contains
      Return params.Contains(value)
    End Function
    Public Overloads Function IndexOf(ByVal value As Object) As Integer Implements System.Collections.IList.IndexOf
      Return params.IndexOf(value)
    End Function
    Public Sub Insert(ByVal index As Integer, ByVal value As Object) Implements System.Collections.IList.Insert
      params.Insert(index, value)
    End Sub
    Public ReadOnly Property IsFixedSize() As Boolean Implements System.Collections.IList.IsFixedSize
      Get
        Return params.IsFixedSize
      End Get
    End Property
    Public ReadOnly Property IsReadOnly() As Boolean Implements System.Collections.IList.IsReadOnly
      Get
        Return params.IsReadOnly
      End Get
    End Property
    Default Public Overloads Property Item(ByVal index As Integer) As Object Implements System.Collections.IList.Item
      Get
        Return params(index)
      End Get
      Set(ByVal Value As Object)
        params(index) = Value
      End Set
    End Property
    Public Sub Remove(ByVal value As Object) Implements System.Collections.IList.Remove
      params.Remove(value)
    End Sub
    Public Overloads Sub RemoveAt(ByVal index As Integer) Implements System.Collections.IList.RemoveAt
      params.RemoveAt(index)
    End Sub
    Public Overloads Function Contains(ByVal parameterName As String) As Boolean Implements System.Data.IDataParameterCollection.Contains
      Return (IndexOf(parameterName) <> -1)
    End Function
    Public Overloads Function IndexOf(ByVal parameterName As String) As Integer Implements System.Data.IDataParameterCollection.IndexOf
      For i As Integer = 0 To params.Count - 1
        If DirectCast(params(i), IDataParameter).ParameterName = parameterName Then
          Return i
        End If
      Next
      Return -1
    End Function
    Default Public Overloads Property Item(ByVal parameterName As String) As Object Implements System.Data.IDataParameterCollection.Item
      Get
        Dim i As Integer = IndexOf(parameterName)
        If i <> -1 Then
          Return Item(i)
        Else
          Return Nothing
        End If
      End Get
      Set(ByVal Value As Object)
        Dim i As Integer = IndexOf(parameterName)
        If i <> -1 Then
          Item(i) = Value
        Else
          Throw New Exception("Parameter not found.")
        End If
      End Set
    End Property
    Public Overloads Sub RemoveAt(ByVal parameterName As String) Implements System.Data.IDataParameterCollection.RemoveAt
      Dim i As Integer = IndexOf(parameterName)
      If i <> -1 Then
        params.RemoveAt(i)
      Else
        Throw New Exception("Parameter not found.")
      End If
    End Sub
  End Class

Similar Messages

  • Executing a SQL 2012 SSIS project with DTExec using Protection Level "EncryptAllWithPassword"

    I'm trying to execute a very basic SQL 2012 Project that only has 1 single package that contains a simply email task.
    The project will run fine from command line using basic syntax.
    dtexec /project  "F:\SSIS\Projects\project1\bin\Project 1 Configuration\project1.ispac" /package "Main.dtsx"
    Once I add the protection level of EncryptAllWithPassword to the project and the package things suddenly stop working. New command line syntax is.
    dtexec /project  "F:\SSIS\Projects\project1\bin\Project 1 Configuration\project1.ispac" /package "Main.dtsx" /P "Password"
    I get the following output.
    Microsoft (R) SQL Server Execute Package Utility
    Version 11.0.2100.60 for 64-bit
    Copyright (C) Microsoft Corporation. All rights reserved.
    Started:  5:14:49 PM
    Could not load project "F:\SSIS\Projects\project1\bin\Project 1 Configuration\project1.ispac" because of error 0x80131500.
    Description: The encrypted data in project manifest failed to load. The project
    manifest is corrupted or if the project is password protected, the specified password is incorrect.
    Source: Microsoft.SqlServer.ManagedDTS
    Started:  5:14:49 PM
    Finished: 5:14:49 PM
    Elapsed:  0.078 seconds
    I'm confident my passwords are entered correctly in the two spots. Is there something I'm missing in my command line to use protection levels correctly. I have also built the project and deployed to SSISDB.
    Thank you

    Add the PassWord attribute as  :
    dtexec /project  "F:\SSIS\Projects\project1\bin\Project
    1 Configuration\project1.ispac" /package "Main.dtsx" /P "YourPassWord"
    For more info :
    http://technet.microsoft.com/en-us/library/ms138023(v=sql.105).aspx

  • VS 2008 Protection Levels & Deployment

    Hi All,
    I have developed a SSIS solution with multiples pacakges in VS 2008 using the protection level of Encrypt Sensitive with password, because VS 2008 wasn't saving the OLEDB passwords. So now it prompts me to enter the password each time I open a package within
    the solution, which is fine as I created and developed it. but my questions are
    1) is there a way save the passwords within the solution so it doesn't prompt me all the time?
    2) I tried changing the package protection level to server storage and it says can't save when using that protection level when saving to XML file format?
    3) When I deploy to the SQL server how can I run the solution without entering the password?
    Thanks

    The password can be hacked out of any executable.  You don't need to use a password in OLEDB statement if the database file permission are setup to only allow certain uses read/write access.  The windows login credentials will protect the data.
    SQL server has an option "Integrated Security=true" which also will use a windows credential.  You need to setup the SQL database to use windows credentials.  What is nice about this option is you can setup one user group in windows
    and then have your database use the windows group account.  The add users to the group.  This way you only have only one account for the database rather than having to manually add each user to the database access list or verbally give people the
    password to the account.
    See webpage below.
    http://www.connectionstrings.com/sql-server/
    jdweng

  • Change project protection level with dtutil (or other cmd)

    Hi - 
    After exporting a project from SSISDB (using catalog.get_project), the project and packages have protection level "ServerStorage". However, I am unable to execute a package (using dtexec) when it has this protection level. I need to change it to
    something else - programatically. 
    I can use dtutil to change protection level of the packages and that is well-documented - but how do I change the protection level of the project with dtutil? (or another cmd shell executable). Project and packages need same protection level or it won't
    compile - that's why I need to change the project as well.
    Thank you,
    Anders

    Hi Arthur,
    Thank you for the response. 
    I run it outside SSISDB with dtexec.exe. It doesn't need to be in the catalog in order to run it. 
    EXEC master.dbo.xp_cmdshell 'dtexec.exe /Project "D:\Run\TheProject.ispac" /Package "ThePackage.dtsx"'
    It is not enough to change protection level on the packages - the project also needs to change protection level. The ISPAC file has the @Project.manifest file which defines the project, including protection level, and it has to be the same as the packages
    in order to run the package in the project.
    So the question remains: How can I change the protection level of the project programatically? (not the packages, - those I can change with dtutil). 
    Thanks,
    Anders

  • Protection level "resynchronization"

    Have a physical standby setup - oracle 11.2.01 on linux - with active dataguard. All's been fine for a long while. There were performance issues on the standby server (also the home for other databases besides the dg standby). Someone tried using different physical ports and dataguard lost communication. Anyway, there were many logs not transported when I looked at it. In the broker it pointed to a redo transport issue which probably resulted from the network work being done. The database was set to maxavailability with 'SYNC' . So what do I do to get the thing sending logs again? I read to restart the standby which I did but that had no effect. Another person here wanted to set to maxperformance but when we downgraded to that, just the current log got sent and not all the others that needed to.
    I'm thinking I might have to manually copy over these logs. Does anyone know if that will be the case?
    The protection mode had been maxavailability and the protection level had been "resynchronization". Once I issued the command to set to max performance, now I get
    SQL> select protection_mode, protection_level from v$database;
    PROTECTION_MODE PROTECTION_LEVEL
    MAXIMUM PERFORMANCE MAXIMUM PERFORMANCE
    which is fine but like I said - many old logs need to be moved.
    Also, both databases use ASM. If I do need to copy over is there a way to copy from asm on one server directly to asm on another or do I need to go to OS files in the middle?

    So you have a log gap right? I would copy the archived redo from the primary over to the standby site and register them.
    You probably have this: (RUN ON STANDBY)
    SELECT MAX(R.SEQUENCE#) LAST_SEQ_RECD, MAX(L.SEQUENCE#) LAST_SEQ_SENT
    FROM V$ARCHIVED_LOG R, V$LOG L
    WHERE R.DEST_ID=2 AND L.ARCHIVED='YES';
    I cannot speak to the ASM question.

  • 'DataSet1' is not declared. It may be inaccessible due to its protection level.

    Hello,
    I am sorry if this has been asked elsewhere but i can't seem to find an answer that will help me.
    I am using visual studio 2013 and a data connection database from Microsoft access called RFID.mdb (which i made by editing the sample Northwind.mdb file)
    I have followed the Microsoft tutorials on how to connect a database and make a data set and i know have the database and dataset in the solution explorer,
    All i simply want to do is load the data i have from a text file into this database, i can load the data from the text file but i cannot seem to get the data into the data set so i can add it to the data base.
    The error i get is on
    'RFIDDataSet1' is not declared. It may be inaccessible due to its protection level. On line 24 and 29.
    I have tried removing the "1" as suggested and this gave me "Reference to a non-shared member requires an object reference."
    I am not sure what i am doing wrong or what could be wrong, could anyone offer some help?
    I am using visual basic.
    Code:
    Imports System.IO
    Public Class Form1
        Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
            Dim fileReader As String
            fileReader = My.Computer.FileSystem.ReadAllText("C:\gobetwino\Project\testlog.txt")
            MsgBox(fileReader)
            If File.Exists(fileReader) Then
                Dim iofile As New StreamReader(fileReader)
                Dim ioline As String
                Dim DandT, Reader, Id
                ioline = iofile.Readline
                While Not ioline = ""
                    Dim mysplit = Split(ioline, ";")
                    DandT = mysplit(0)
                    Reader = mysplit(1)
                    Id = mysplit(2)
                    Dim newImportRow As RFIDDataSet.ImportRow
                    newImportRow = RFIDDataSet.Import.NewImportRow()
                    newImportRow.DateTime = DandT
                    newImportRow.ReaderNum = Reader
                    newImportRow.TagNum = Id
                    RFIDDataSet1.Import.Rows.Add(newImportRow)
                End While
            End If
        End Sub
    End Class
    Error lines:
    newImportRow = RFIDDataSet1.Import.NewImportRow()
    RFIDDataSet1.Import.Rows.Add(newImportRow)

    I already have a dataset when I connected the database.
    In my solution window I have:
    RFID.mbd (which has a single table called "Import" with the sections "DateTime", "ReaderNum" & "TagNum")
    RFIDDataSet.xsd
    What I am mainly trying to do is load the data from the text file "testlog.txt" to the database RFID.mdb.
    I have been following the Microsoft tutorial and it said to use a dataset.
    Thus my code currently now looks like this:
    Imports System.IO
    Public Class Form1
    Dim RFIDDataSet As New RFIDDataSet
    Dim ImportTableAdapter As New RFIDDataSetTableAdapters.ImportTableAdapter()
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Dim fileReader As String
    fileReader = My.Computer.FileSystem.ReadAllText("C:\gobetwino\Project\testlog.txt")
    ImportTableAdapter.Fill(RFIDDataSet.Import)
    MsgBox(fileReader)
    If File.Exists(fileReader) Then
    Dim iofile As New StreamReader(fileReader)
    Dim ioline As String
    Dim DandT, Reader, Id
    ioline = iofile.Readline
    While Not ioline = ""
    Dim mysplit = Split(ioline, ";")
    DandT = mysplit(0)
    Reader = mysplit(1)
    Id = mysplit(2)
    Dim newImportRow As RFIDDataSet.ImportRow
    newImportRow = RFIDDataSet.Import.NewImportRow()
    newImportRow.DateTime = DandT
    newImportRow.ReaderNum = Reader
    newImportRow.TagNum = Id
    RFIDDataSet.Import.Rows.Add(newImportRow)
    End While
    MsgBox("Update successful")
    End If
    End Sub
    End Class
    I am not sure if what I am doing is correct because the program now shows the results in the message box instead of "Update Successful".
    Does this help in finding out what I am doing wrong when trying to load the data from my text file into a dataset which I then plan to use to update the database RFID.mdb

  • Regarding Customization , Access and Protection Levels

    Hi All,
    I need some information on Customization , Access and Protection Levels.
    I need to modify a Oracle Seeded workflow to do some customization wrt approval process.
    How do I determine which process can be modified or not.
    What is quick check to understand what values should I be looking for Customization , Access and Protection Levels on a process that needs to be modified.
    Please help...
    Thanks,

    Hi All,
    We have a requirement to modify the seeded oracle workflow in Purchasing.
    I need to add additional levels of validations by creating some custom processes which would be invoked from the seeded oracle process.
    Could anyone pls advise how do I make my customizations retain even after an upgrade takes place ?
    Thanks,

  • Protection levels question

    Is there a way to set the protection level of a class / method so that only classes in the classes package or super package has access.
    What I mean is that I have two packages: msglib & msglib.gui. I would like to create methods in msglib.gui that would only be accessable to classes in the two above packages.
    Is there a way to do this or should I just put all the classes in the same package and make everything the default protection level?

    Is there a way to set the protection level of a class
    / method so that only classes in the classes package
    or super package has access.No.
    Is there a way to do this or should I just put all
    the classes in the same package and make everything
    the default protection level?Depends upon the class relationships. Over use of mutual dependence between classes in the same package is a "Code smell", so consider whether your class design makes innate sense.
    See "Inapropriate Intimacy":
    http://wiki.java.net/bin/view/People/SmellsToRefactorings

  • ITEM_TYPE 'WFSTD' is protected, no changes were saved.

    Dear friends,
    When I use "WFLOAD $fndunpw 0 Y UPGRADE ./xxcub/import/FAAPPROV.wft |tee -a $LOGFILE" to upload a customization.The error message as follows:
    Should the Access level is too low.Need I change the access level using Oracle Workflow Builder?
    Access level: 100, Mode: UPGRADE
    ITEM_TYPE 'WFSTD' is protected, no changes were saved.
    ITEM_ATTRIBUTE 'WFSTD/FORWARD_FROM_DISPLAY_NAME' is protected, no changes were saved.
    ITEM_ATTRIBUTE 'WFSTD/N' is protected, no changes were saved.
    ITEM_ATTRIBUTE 'WFSTD/REQUESTOR_USERNAME' is protected, no changes were saved.
    ITEM_ATTRIBUTE 'WFSTD/OWNER_ROLE' is protected, no changes were saved.
    LOOKUP_TYPE 'WFSTD/CRASH_STATUS' is protected, no changes were saved.
    LOOKUP_TYPE 'WFSTD/CSTCELU' is protected, no changes were saved.
    LOOKUP_TYPE 'WFSTD/CSTGENLU' is protected, no changes were saved.
    LOOKUP_TYPE 'WFSTD/EMPLOYEE_ACTION1' is protected, no changes were saved.
    LOOKUP_TYPE 'WFSTD/EMP_RESPONSE1' is protected, no changes were saved.
    LOOKUP_TYPE 'WFSTD/HR_APPLICANT_STATUS' is protected, no changes were saved.
    LOOKUP_TYPE 'WFSTD/HR_CANCEL_ADDRESS_DETAILS_FRM' is protected, no changes were saved.
    LOOKUP_TYPE 'WFSTD/HR_CANCEL_CONTACT_DETAILS_FRM' is protected, no changes were saved.
    LOOKUP_TYPE 'WFSTD/HR_CANCEL_MARITAL_STATUS_FRM' is protected, no changes were saved.
    Thank you very much!

    This is normal and should not be cause for concern if you have not modfied the WFSTD workflow (which you should not !) :-)
    HTH
    Srini Chavali

  • [svn:osmf:] 10477: Add ListenerProxyElement, utility class for listening to trait-level changes on a wrapped element.

    Revision: 10477
    Author:   [email protected]
    Date:     2009-09-21 17:04:28 -0700 (Mon, 21 Sep 2009)
    Log Message:
    Add ListenerProxyElement, utility class for listening to trait-level changes on a wrapped element.  Refactor proxy unit tests to make them more extensible.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/MediaFrameworkTests.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/proxies/TestProxyElement. as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/proxies/TestTemporalProxy Element.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/utils/DynamicProxyElement .as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/proxies/ListenerProxyElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/proxies/TestListenerProxy Element.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/proxies/TestListenerProxy ElementAsSubclass.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/proxies/TestProxyElementA sDynamicProxy.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/utils/DynamicListenerProx yElement.as

    Revision: 10477
    Author:   [email protected]
    Date:     2009-09-21 17:04:28 -0700 (Mon, 21 Sep 2009)
    Log Message:
    Add ListenerProxyElement, utility class for listening to trait-level changes on a wrapped element.  Refactor proxy unit tests to make them more extensible.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/MediaFrameworkTests.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/proxies/TestProxyElement. as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/proxies/TestTemporalProxy Element.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/utils/DynamicProxyElement .as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/proxies/ListenerProxyElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/proxies/TestListenerProxy Element.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/proxies/TestListenerProxy ElementAsSubclass.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/proxies/TestProxyElementA sDynamicProxy.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/utils/DynamicListenerProx yElement.as

  • BW Report Designer - Group level changes

    Dear all,
    we intent to use BW Report Designer and want to insert page breaks between group level changes
    so that we get one page per item of a group (as it is possible in Crystal reports).
    Example:
    Sales organization is listed in column 1 of our query - we need one page per item -
    page 1 - Sales organization 100
    page 2 - Sales organization 200
    Concerning to the online documentation it should be possible, but we can't find this functionality
    within the BW Report designer.
    Could anybody assist us?
    Thanks
    Hagen

    Check the below post and you'll have your solution! Hope this helps.
    Page Breaks in Report Designer

  • DMR level change at UD vs lot creation

    Hi,
         Can someone in simple English give me the business reason to have Q level change at lot creation level and at UD level. In what cases would one use either of them ? I have read the help and know how to configure in the system but need the business reason to chose one or the other. Please dont send me the link to help or to past posts which speak about how to create DMR rules in the system.
    Thanks
    GS

    No matter which one you pick, you can have issues.  It's picking the lessor of two evils.
    The issue comes in when you have the potential of having more than one inspection lot active at a time that uses quality levels and dynamic modifications.
    For "at lot creation" when you create a lot the quality level is checked and modified according to the established rules to the next "postition" or stage if you want.  It ASSUMES the lot just created will pass.  In this case if the lot fails, you have to manually fix the quality level after a fail.  If another lot comes in before you maually fix it, it could be skipped or reduced testing.
    For "at UD" the quality level is updated when UD is made.  In this case when a lot is created before the UD is made on a previous lot, the quality level is still at the same level as the previous lot.  As a result the new lot will be created at a level which maybe it shouldn't be.  Which could be wrong if the UD fails or passes on the previous lot.  In this case, the failure at UD on the first lot will reset the quality level and the next lot created should be at the right level, but the inbetween lot might not have been.
    Follow that?
    Craig

  • ACTIVITY 'REQAPPRV/MAKE_PREPARER_OWNER' is protected, no changes were saved

    Hello Forum:
    I am in the mist of applying patch 13014579 to some invalid PO packages and adpatch met errors and adctr can not go pass this point.
    adpatch output:
    Completed: file icxmsg.ldt on worker 7 for product icx username APPS.
    FAILED: file poxwfrqa.wft on worker 1 for product po username APPS.
    Completed: file poxwfpoa.wft on worker 4 for product po username APPS.
    ATTENTION: All workers either have failed or are waiting:
    FAILED: file poxwfrqa.wft on worker 1.
    tail -50 /u02/oracle/ofinpappl/admin/OFINP/log/adwork001.log
    ACTIVITY 'WFSTD/SETEVENTPROPERTY' is protected, no changes were saved.
    ACTIVITY 'WFSTD/XMLCOMPAREDATE' is protected, no changes were saved.
    ACTIVITY 'WFSTD/XMLCOMPARENUMBER' is protected, no changes were saved.
    ACTIVITY 'WFSTD/XMLCOMPARETEXT' is protected, no changes were saved.
    ACTIVITY 'WFSTD/XMLGETTAGVALUE' is protected, no changes were saved.
    ACTIVITY 'WFSTD/XMLTRANSFORM' is protected, no changes were saved.
    ACTIVITY 'REQAPPRV/SET_REQSINPOOL_SERVICES_REQ' is protected, no changes were saved.
    ACTIVITY 'REQAPPRV/RESERVE_AFTER_SUPPLIER_COMM' is protected, no changes were saved.
    ACTIVITY 'REQAPPRV/MAKE_PREPARER_OWNER' is protected, no changes were saved.
    AD Worker error:
    The above program failed with error code 1.
    adctr shows:
    Control
    Worker Code Context Filename Status
    1 Run AutoPatch R115 poxwfrqa.wft FAILED
    2 Run AutoPatch R115 Wait
    3 Run AutoPatch R115 Wait
    4 Run AutoPatch R115 Wait
    5 Run AutoPatch R115 Wait
    6 Run AutoPatch R115 Wait
    7 Run AutoPatch R115 Wait
    8 Run AutoPatch R115 Wait
    How should I proceed?
    Mathias

    That note was the solution. MOS also gave me that same guide:
    $ WFLOAD apps/apps 0 Y FORCE $PA_TOP/patch/115/import/US/PAPWPARN.wft
    Skipped the failed worker and resume application of the patch.
    Thanks very much
    Mathias
    Edited by: user558643 on May 9, 2013 11:46 AM

  • Pan settings and sometimes volume levels change during playback

    pan settings and sometimes volume levels change during playback without my touching them in Logic X! I haven't set any automation and strangely a similar thing happened to some plug-ins i used in pro tools m-powered. Any ideas as to why this is happening would be greatly appreciated? Cheers

    pan settings and sometimes volume levels change during playback without my touching them in Logic X! I haven't set any automation and strangely a similar thing happened to some plug-ins i used in pro tools m-powered. Any ideas as to why this is happening would be greatly appreciated? Cheers

  • Trace level changed

    Dear Experts,
    I have an RFC function which contains a submit report to execute in background. Normally our system has trace level = '0' in SM50, but everytime when this job runs, the trace level changes to '2', which saved too many logs in our system.
    can anybody tell me how to prevent this situation? Can I force trace level = '0'?
    Thanks!
    Joanne Wu

    Hi Joanne,
    We just came across this trace level change.  Did you find a reason and/or solution as to why this happened.  We are researching as I write this and just came across Note 987134 which may offer insite.  However, this note talks of Kernel 4.6D, 6.0 and 7.0.  We are running on 4.6D_EXT for another month and this note says nothing about this kernel.  Hope you have an anwser.  Thanks.
    Paul G

Maybe you are looking for