Files Already Exist when Reconnecting Presumably Missing Files

I am struggling to clean-up several hundred files in my PSE organizer database.
Whenever I run the reconnect all command (or any other command that requires reconnecting first), PSE locates a large group of presumably missing files. PSE's "Reconnect Missing Files" dialogue shows me the former location of the files. I browse to that location and find the files still there. I then select the file and press reconnect. Unfortunately, I then get an error that says "The file already exists in the catalog." This clears the missing file problem for the moment. However, when I run another missing file check, it will again find these same files. I have attempted to reconnect them several times but PSE continues to tell me that they need to be reconnected but still knows where the files are.
I have already run a database repair (no errors were found).
I also ran a database optimization without issue.
Some system information:
Win7 Home Premium Service Pack 1
Dell XPS i7 Computer
6gb RAM. >350gb of free hard disk space
PSE 12....but also had the same problem on PSE 11. I upgraded hoping that the problem would be solved. It wasn't.
Thanks for any assistance in clearing this problem for me.
-Bruce

I solved my own problem...although I do not know what caused it nor why Adobe's program didn't fix it for me.
The "missing" entries that were being highlighted were all duplicate entries. Adobe won't allow for a duplicate entry to the same physical file. I deleted all the offending entries and this cleared my problem. I hope this solution helps others.
-Bruce

Similar Messages

  • Pop up saying File already exists when saving an excel file while running exe

    I have an excel file which I read and write in my application.
    When I run the application in development system, it works fine. However when I run the application as an exe and try to save the excel file, it says that 'The file already exists and Do you want to replace?'.
    Why does this question asked for exe?
    PFA my write excel VI
    Thanks in advance.
    Attachments:
    Write to Excel.vi ‏25 KB

    Hi Princess_swa,
    The problem may be that when you build an exe, it adds another folder called 'builds' into the filepath.
    A good way to fix this is to create a case structure, putting extra strip paths into your filepath if running an exe.
    I have attached a screenshot of my code doing exactly this for you to look at. The code creates a 'base path' which is then used to reference all of my file paths in my code - and therefore, they will always have the right number of strip paths when it is run. (Note: in my code I have 2 extra strip paths, due to where I've placed the folder, but one should be sufficient.)
    Also there is a 'Check if folder exists' VI which you can again link to a case structure, and change the filename if it already exists. Again, I have provided a screenshot of my code which does this.
    Hope this helps,
    Lou
    Attachments:
    runtime strip paths.png ‏9 KB
    check folder exists.png ‏5 KB

  • File already exist when calling tcp listen

    i was using some modified versions of tcp/ip vi's at
    http://www.sheldoninst.com/support.html
    but everytime i start the server, it gives me an error 2 "file already exist" message. has anyone tried their vi's at sheldoninst?

    i was using some modified versions of tcp/ip vi's at
    http://www.sheldoninst.com/support.html
    but everytime i start the server, it gives me an error 2 "file already exist" message. has anyone tried their vi's at sheldoninst?

  • How to deal with "Error 1001. The specified service already exists" when install a service using installer package?

    Hi everybody,
    I wrote a "Class Library" project which is a service using Visual Stodio 2008 recently, then tried to use a Visual Studio 2008
    Setup Project to install it.
    Here is what I did for the "Class Library":
    1. Finish the program.cs, Service.cs
    2. Add Installer
    3. Change the serviceInstaller so that "StartType" to be Aotumatic
    4. Change the ServiceProcessInstaller2 so that "Account" to be LocalSystem
    5.
    6. Click in F5 (Start Debugging)
    Here is what I did for the Setup Project:
    1. Add the exe file built from the "Class Library" project to the Application Folder
    2. On the Custom Action Editor, add the exe file from 1 to Install and Commit
    3. Change the property of the project so that "RemovePreviousVersion" to be true
    4. Click on F6(Build Solution)
    Then I tried to run the msi file from the built of the Setup Project. Because I modified the two projects serveral times, I uninstalled the Class Library using "Control Panel->Add or Remove Programs" before I reinstall. Two things I notived:
    1. After unstall, the registry was not cleaned up about the installed program
    2. After several rounds install/uninstall, I got "Error 1001. The specified service already exists"
    My questions are:
    1. How to cleanup the registry when uninstall a program?
    2. How to deal with the "Error 1001. The specified service already exists"?
    3. Did I do anytbing wrong with the "Class Library" or the "Setup Project"?
    Thanks a lot!
    Helen

    Hi Simon, not a problem!
    I spent some more time on this and here are few more notes:
    it is called Major Upgrade, when you are installing new version of the product upon a previous one and
    MSI supports 2 strategies:
    Strategy 1. Install a new version and uninstall previous one. (Install a new version right upon previously installed version (file merging is performed based on dll version number) and the delete previously
    installed files)
    Strategy 2. Uninstall previous version and install a new one (Delete all previous files and install from scratch new files.)
    From the first look it seems that 1st strategy is weird and buggy. But, remember, MSI is great because it's transactional!!! That means that if once some of the phases (Installation, Uninstallation, Rollback, Comit) fails, your machine
    will be reverted to the previous state and it'll be still functional. 
    Let's consider both strategies:
    Consider you have installed product_v1.msi and you want to install product_v2.msi.
    Strategy 1
    1. MSI engine copies files from Product_v1 directory to TEMP directory
    2. MSI engine merges files based on the assembly version (between v1 and v2)
    3. Once merging is completed successfully it removes files in TEMP (RemoveExistingProducts  action triggers it) and you got product_v2 installed, otherwise if it fails MSI engine revert machine to V1 and copies previous files from TEMP.
    Strategy 2
    1. MSI engine tottaly removes all files from v1.
    2. MSI engine installs v2 files and if something goes wrong you cannot revert back, because RemoveExistingProducts  allready worked out and MSI doesn't have files to revert machine back
    I recommend to everybody to use Strategy 1 and leverage MSI transaction functionality. And you can set this strategies by defining sequence of RemoveExistingProducts action. See more info
    here.  So, I think it's not even a bug in VS as I said in the upper post it is default recommened behaviour.
    AND, you got "Error 1001. The specified service already exists"
    because if we follow Strategy 1 MSI engine tries to install Windows Service on top of the existing service and OF COURSE it fails MSI engine (StopServices, DeleteServices actions are executed before actual
    installation and  they look at ServiceControl table). In order to stop service first and delete them you have to fill ServiceContol table of the MSI (and then StopServices, DeleteServices actions will recognize what to they have to stop
    and delete), like this:
    *clip*clip*clip*
    ' see http://msdn.microsoft.com/en-us/library/windows/desktop/aa371634(v=vs.85).aspx for more info
    ' Update the Service Entry to stop and delete service while uninstalling
    query = "INSERT INTO ServiceControl (ServiceControl, Name, Event, Arguments, Wait, Component_) VALUES ('MAD_Service', 'Service name', '160', '', '1', '"
    + componentName + "')"
    Set view = database.OpenView(query)
    : CheckError
    view.Execute : CheckError
    ' Update the Service Entry to stop and delete service while installing
    query = "INSERT INTO ServiceControl (ServiceControl, Name, Event, Arguments, Wait, Component_) VALUES ('MAD2_Service', 'Service name', '10', '', '1', '"
    + componentName + "')"
    Set view = database.OpenView(query)
    : CheckError
    view.Execute : CheckError
    *clip*clip*clip*
    We can uninstall service first by following Strategy 2, but then we lose transactional support.
    So, Simon did I encourage you to change your code a bit?:)
    And, btw, if you don't want to change the strategy, please don't rely on SequenceID in MSI table, it can be change, you have to get the at the runtime.
    Hope it will help to everybody!
    See also more advanced explanation of how MSI works
    here.
    Truly yours, Marat

  • BeanAlreadyExistsException: Bean already exists when run weblogic.appc

    We use weblogic.appc to generate the ejb jar file. It works fine on my Windows XP, but failed on another Windows XP. Below is the stack trace of the error message:
    <Mar 17, 2009 8:49:27 AM PDT> <Error> <J2EE> <BEA-160197> <Unable to load descri
    ptor D:\VSS\Client_Manager\bin\std-web-matrixejb.jar/META-INF/ejb-jar.xml of module std-web-matrixejb.jar. The error is weblogic.descriptor.DescriptorException: Unmarshaller failed
    at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:152)
    at weblogic.descriptor.BasicDescriptorManager.createDescriptor(BasicDescriptorManager.java:292)
    at weblogic.descriptor.BasicDescriptorManager.createDescriptor(BasicDescriptorManager.java:260)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.
    getDescriptorBeanFromReaderAbstractDescriptorLoader2.java:774)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.createDescriptorBean(AbstractDescriptorLoader2.java:395)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.loadDescriptorBeanWithoutPlan(AbstractDescriptorLoader2.java:745)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.loadDescriptorBean(AbstractDescriptorLoader2.java:754)
    at weblogic.ejb.spi.EjbJarDescriptor.getEjbJarBean(EjbJarDescriptor.java:131)
    at weblogic.ejb.container.dd.xml.EjbDescriptorReaderImpl.processEjbJarXM
    LWithSchema(EjbDescriptorReaderImpl.java:671)
    at weblogic.ejb.container.dd.xml.EjbDescriptorReaderImpl.processEjbJarXML(EjbDescriptorReaderImpl.java:220)
    at weblogic.ejb.container.dd.xml.EjbDescriptorReaderImpl.createReadOnlyD
    escriptorFromJarFile(EjbDescriptorReaderImpl.java:185)
    at weblogic.ejb.spi.EjbDescriptorFactory.createReadOnlyDescriptorFromJarFile(EjbDescriptorFactory.java:93)
    at weblogic.ejb.container.ejbc.EJBCompiler.parseDescriptors(EJBCompiler.java:1430)
    at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:467)
    at weblogic.application.compiler.AppcUtils.compileEJB(AppcUtils.java:298)
    at weblogic.application.compiler.EJBModule.compile(EJBModule.java:83)
    at weblogic.application.compiler.flow.SingleModuleCompileFlow.proecessModule(SingleModuleCompileFlow.java:16)
    at weblogic.application.compiler.flow.SingleModuleFlow.compile(SingleModuleFlow.java:31)
    at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:69)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.compiler.FlowDriver.nextState(FlowDriver.java:36
    at weblogic.application.compiler.FlowDriver.run(FlowDriver.java:26)
    at weblogic.application.compiler.EJBCompiler.compile(EJBCompiler.java:25
    at weblogic.application.compiler.flow.AppCompilerFlow.compileInput(AppCompilerFlow.java:118)
    at weblogic.application.compiler.flow.AppCompilerFlow.compile(AppCompilerFlow.java:43)
    at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:69)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.compiler.FlowDriver.nextState(FlowDriver.java:36
    at weblogic.application.compiler.FlowDriver.run(FlowDriver.java:26)
    at weblogic.application.compiler.Appc.runBody(Appc.java:172)
    at weblogic.utils.compiler.Tool.run(Tool.java:158)
    at weblogic.utils.compiler.Tool.run(Tool.java:115)
    at weblogic.application.compiler.Appc.main(Appc.java:183)
    at weblogic.appc.main(appc.java:14)
    Caused by: com.bea.xml.XmlException: weblogic.descriptor.BeanAlreadyExistsExcept
    ion: Bean already exists: "weblogic.j2ee.descriptor.SessionBeanBeanImpl@3eb8f669
    (//Sessions[<!DOCTYPE ejb-jar PUBLIC '-..Sun Microsystems, Inc...DTD Enterprise
    JavaBeans 2.0..EN' 'http:..java.sun.com.dtd.ejb-jar_2_0.dtd'> <ejb-jar> <enterpr
    ise-beans> <session> <ejb-name>com.matrix.clientmanager.ejb.LoginDocHome<.ejb-na
    me> <home>com.matrix.clientmanager.ejb.LoginEjbHome<.home> <remote>com.matrix.cl
    ientmanager.ejb.LoginEjbRemoteIf<.remote> <ejb-class>com.matrix.clientmanager.ej
    b.LoginEjb<.ejb-class> <session-type>Stateless<.session-type> <transaction-type>
    Bean<.transaction-type> <.session> <session> <ejb-name>com.matrix.clientmanager.
    ejb.GroupMaintenanceDocHome<.ejb-name> <home>com.matrix.clientmanager.ejb.GroupM
    aintenanceEjbHome<.home> <remote>com.matrix.clientmanager.ejb.GroupMaintenanceEj
    bRemoteIf<.remote> <ejb-class>com.matrix.clientmanager.ejb.GroupMaintenanceEjb<.
    ejb-class> <session-type>Stateless<.session-type> <transaction-type>Bean<.transa
    ction-type> <.session> <session> <ejb-name>com.matrix.clientmanager.ejb.StatusTr
    eeDocHome<.ejb-name> <home>com.matrix.clientmanager.ejb.StatusTreeEjbHome<.home>
    <remote>com.matrix.clientmanager.ejb.StatusTreeEjbRemoteIf<.remote> <ejb-class>
    com.matrix.clientmanager.ejb.StatusTreeEjb<.ejb-class> <session-type>Stateless<.
    session-type> <transaction-type>Bean<.transaction-type> <.session> <session> <ej
    b-name>com.matrix.clientmanager.ejb.ChangeStatusDocHome<.ejb-name> <home>com.mat
    rix.clientmanager.ejb.ChangeStatusEjbHome<.home> <remote>com.matrix.clientmanage
    r.ejb.ChangeStatusEjbRemoteIf<.remote> <ejb-class>com.matrix.clientmanager.ejb.C
    hangeStatusEjb<.ejb-class> <session-type>Stateless<.session-type> <transaction-t
    ype>Bean<.transaction-type> <.session> <session> <ejb-name>com.matrix.clientmana
    ger.ejb.EmployeeDocHome<.ejb-name> <home>com.matrix.clientmanager.ejb.EmployeeEj
    bHome<.home> <remote>com.matrix.clientmanager.ejb.EmployeeEjbRemoteIf<.remote> <
    ejb-class>com.matrix.clientmanager.ejb.EmployeeEjb<.ejb-class> <session-type>Sta
    teless<.session-type> <transaction-type>Bean<.transaction-type> <.session> <sess
    ion> <ejb-name>com.matrix.clientmanager.ejb.RoleScreenMappingDocHome<.ejb-name>
    <home>com.matrix.clientmanager.ejb.RoleScreenMappingEjbHome<.home> <remote>com.m
    atrix.clientmanager.ejb.RoleScreenMappingEjbRemoteIf<.remote> <ejb-class>com.mat
    rix.clientmanager.ejb.RoleScreenMappingEjb<.ejb-class> <session-type>Stateless<.
    session-type> <transaction-type>Bean<.transaction-type> <.session> <session> <ej
    b-name>com.matrix.clientmanager.ejb.StatusLibraryDocHome<.ejb-name> <home>com.ma
    trix.clientmanager.ejb.StatusLibraryEjbHome<.home> <remote>com.matrix.clientmana
    ger.ejb.StatusLibraryEjbRemoteIf<.remote> <ejb-class>com.matrix.clientmanager.ej
    b.StatusLibraryEjb<.ejb-class> <session-type>Stateless<.session-type> <transacti
    on-type>Bean<.transaction-type> <.session> <session> <ejb-name>com.matrix.client
    manager.ejb.LetterGroupDocHome<.ejb-name> <home>com.matrix.clientmanager.ejb.Let
    terGroupEjbHome<.home> <remote>com.matrix.clientmanager.ejb.LetterGroupEjbRemote
    If<.remote> <ejb-class>com.matrix.clientmanager.ejb.LetterGroupEjb<.ejb-class> <
    session-type>Stateless<.session-type> <transaction-type>Bean<.transaction-type>
    <.session> <session> <ejb-name>com.matrix.clientmanage])"
    at com.bea.staxb.runtime.internal.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:54)
    at com.bea.staxb.runtime.internal.RuntimeBindingType$BeanRuntimeProperty
    .setValue(RuntimeBindingType.java:483)
    at com.bea.staxb.runtime.internal.AttributeRuntimeBindingType$QNameRunti
    meProperty.fillCollection(AttributeRuntimeBindingType.java:385)
    at com.bea.staxb.runtime.internal.MultiIntermediary.getFinalValue(MultiIntermediary.java:52)
    at com.bea.staxb.runtime.internal.AttributeRuntimeBindingType.getFinalOb
    jectFromIntermediary(AttributeRuntimeBindingType.java:145)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.unmarshalElemen
    tProperty(LiteralUnmarshalResult.java:159)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.extractAndFillE
    lementProp(LiteralUnmarshalResult.java:130)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents
    (ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshalIntoInt
    ermediary(AttributeUnmarshaller.java:47)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalBindingType(U
    nmarshalResult.java:184)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalDocument(UnmarshalResult.java:154)
    at com.bea.staxb.runtime.internal.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:65)
    at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:141)
    ... 33 more
    Edited by: [email protected] on Mar 17, 2009 10:25 AM

    This exception is caused due to duplicate entries of the bean (TaskServiceBean) in CompositeServices\OrderApprovalHumanTask\public_html\WEB-INF\weblogic.xml file in WebLogicFusionOrderDemo project. Replace this file with the original one in the downloaded project zip and the application deploys successfully.

  • This entry already exist when adding an alert

    Hi,
    I still have this error every time I send an alert to a group of recipient.
    It seems that for some reason,  some users receiving messages that aren't loging in for some times I have this error poping up when sending alerts :
    "This entry already exists in the following table (ODBC - 2035)"
    What do I have to know about sending alerts ?
    Here's the code used to send alert.
    SAPbobsCOM.CompanyService oCmpSrv = null;
    MessagesService oMessageService = null;
    SAPbobsCOM.Message oMessage = null;
    MessageDataColumns pMessageDataColumns = null;
    MessageDataColumn pMessageDataColumn = null;
    MessageDataLines oLines = null;
    MessageDataLine oLine = null;
    RecipientCollection oRecipientCollection = null;
    try
        oCmpSrv = oCompany.GetCompanyService();
        oMessageService = ((SAPbobsCOM.MessagesService)(oCmpSrv.GetBusinessService(ServiceTypes.MessagesService)));
        oMessage = ((SAPbobsCOM.Message)(oMessageService.GetDataInterface(MessagesServiceDataInterfaces.msdiMessage)));
        oMessage.Subject = Subject;
        oMessage.Text = Body;
        oRecipientCollection = oMessage.RecipientCollection;
        foreach (string RecipientName in Recipients)
            oRecipientCollection.Add();
            oRecipientCollection.Item(oRecipientCollection.Count - 1).SendInternal = BoYesNoEnum.tYES;
            oRecipientCollection.Item(oRecipientCollection.Count - 1).UserCode = GetUserCode(RecipientName, oCompany);
        // Don't add a document link if we pass -1 as parameter.
        if (ObjectType != -1)
            // get columns data
            pMessageDataColumns = oMessage.MessageDataColumns;
            // get column
            pMessageDataColumn = pMessageDataColumns.Add();
            // set column name
            pMessageDataColumn.ColumnName = ColumnName;
            // set link to a real object in the application
            pMessageDataColumn.Link = (ObjectType != -1 ? BoYesNoEnum.tYES : BoYesNoEnum.tNO);
            // get lines
            oLines = pMessageDataColumn.MessageDataLines;
            // add new line
            oLine = oLines.Add();
            // set the line value
            oLine.Value = ObjectKey;
            // set the link to BusinessPartner (the object type for Bp is 2)
            oLine.Object = ObjectType.ToString();
            // set the Bp code
            oLine.ObjectKey = ObjectKey;
        // send the message
        oMessageService.SendMessage(oMessage);
        return "";
    catch (Exception ex)
        return ex.Message;
    if I send message only to the current user there's no problem.  but since the recipient list have 3 users, the 2 other users are rarely opening SAP
    It can be the way I'm filling the recipients but I'm not sure.

    Hi,
    It's in C# but enjoy this :
    /// <summary>
                    /// Send an alert to a recipient
                    /// </summary>
                    /// <param name="RecipientName">The name of the recipient</param>
                    /// <param name="Subject">The subject of the message</param>
                    /// <param name="Body">The message</param>
                    /// <param name="ColumnName">The name of the column shown on for the document sent</param>
                    /// <param name="ObjectType">The object type : for instence (int)BoObjectTypes.oOrders</param>
                    /// <param name="ObjectKey">The DocEntry of the document to be linked to this alert</param>
                    private static string _SendAlert(string Subject, string Body, string ColumnName, int ObjectType, string ObjectKey, SAPbobsCOM.Company oCompany, System.Collections.Generic.List<string> Recipients)
                        SAPbobsCOM.CompanyService oCmpSrv = null;
                        MessagesService oMessageService = null;
                        SAPbobsCOM.Message oMessage = null;
                        MessageDataColumns pMessageDataColumns = null;
                        MessageDataColumn pMessageDataColumn = null;
                        MessageDataLines oLines = null;
                        MessageDataLine oLine = null;
                        RecipientCollection oRecipientCollection = null;
                        Recipient oRecipient = null;
                        try
                            oCmpSrv = oCompany.GetCompanyService();
                            oMessageService = ((SAPbobsCOM.MessagesService)(oCmpSrv.GetBusinessService(ServiceTypes.MessagesService)));
                            oMessage = ((SAPbobsCOM.Message)(oMessageService.GetDataInterface(MessagesServiceDataInterfaces.msdiMessage)));
                            oMessage.Subject = Subject;
                            oMessage.Text = Body;
                            oRecipientCollection = oMessage.RecipientCollection;
                            foreach (string UserCode in Recipients)
                                oRecipient = oRecipientCollection.Add();
                                oRecipient.SendInternal = BoYesNoEnum.tYES;
                                oRecipient.UserCode = UserCode;
                            // Don't add a document link if we pass -1 as parameter.
                            if (ObjectType != -1)
                                // get columns data
                                pMessageDataColumns = oMessage.MessageDataColumns;
                                // get column
                                pMessageDataColumn = pMessageDataColumns.Add();
                                // set column name
                                pMessageDataColumn.ColumnName = ColumnName;
                                // set link to a real object in the application
                                pMessageDataColumn.Link = (ObjectType != -1 ? BoYesNoEnum.tYES : BoYesNoEnum.tNO);
                                // get lines
                                oLines = pMessageDataColumn.MessageDataLines;
                                // add new line
                                oLine = oLines.Add();
                                // set the line value
                                oLine.Value = ObjectKey;
                                // set the link to BusinessPartner (the object type for Bp is 2)
                                oLine.Object = ObjectType.ToString();
                                // set the Bp code
                                oLine.ObjectKey = ObjectKey;
                            // send the message
                            oMessageService.SendMessage(oMessage);
                            return "";
                        catch (Exception ex)
                            return ex.Message;
    And make sure tou send only ONE recipient in the collection like {Recepient ONE} because sending more then one wasn't working for me and I never knew why !
    WHY WHEN EDITING THIS MESSAGE EVERYTHING IS FINE BUT WHEN LOOKING AT IT ALL THE SPACES ARE GONE ?
    Edited by: Marc Roussel on Aug 26, 2009 12:19 PM

  • SG300, FW 1.2.7.76, "Entry already exists" when changing ACL's

    Hello,
    I am getting very frustrated trying to modify/create ACL's on my SG300-20 switch.
    I have the switch in L3 mode. I have created several VLAN's and ACL's for each VLAN controlling their access to each other. After the initial setup, I have started trying to create more VLAN ACL rules to allow more access between the VLAN's. The problem I keep running in to is that when I go to modify the ACE's in the ACL, I keep getting the error message "Entry already exists". For example, I go to modify the port ranges to tighten them up, and try to save the ACE after modifying it, and I get that error message.
    I have gotten frustrated and deleted ACE's, and then tried recreating them, and I get the same error message! I noticed that if I wait long enough (many minutes, hours?) I can go in and create the ACE again. The ACE definitely doesn't exist but the web interface won't let me create it. I've even tried using a completely different Priority value which isn't used in any of the ACL's, that didn't work either.
    Why is this happening? At this point I am finding it next to impossible to configure this thing. Frustrating...

    Here is a screenshot of one of my ACL's. This ACL is being applied to every port which is in the VLAN with the IP range 10.0.0.0/24
    http://imgur.com/C6iQk
    I just tried to add a new rule which failed with the same error:
    Priority 89
    Action: Permit
    Source IP Address: 10.0.0.21
    Source IP Mask: 0.0.0.0
    Destination IP Address: 10.1.0.0
    Destination IP Mask: 0.0.0.255
    Source Port Range: 8080
    Destination Port Range: 49152-65535
    So I am trying to allow anything from the 10.1.0.0/24 network to talk to port 8080 on 10.0.0.21. This failed with the "Entry already exists" error.

  • Is there a way to skip over files that already exist when backing up folder

    Everytime I want to backup a folder from my hard drive to an external hard drive, the only option I have is to replace the entire folder with the updated one. Is there a way to tell it to just look through the folder and only add new stuff, thus making backups faster?
    I don't like Time Machine, I prefer to do manual backups. And I backup my 'iTunes' folder about once a month, to ensure all new songs, musics, apps, etc. are backed up on the external hard drive if my internal one should ever fail.

    Investigate these:
    [CarbonCopy Cloner|http://www.bombich.com/software/ccc.html] (donationware)
    [SuperDuper|http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html] (shareware)
    [IBackup|http://www.grapefruit.ch/iBackup/index.html] (free)
    The Restore function of Disk Utility included in OS X. [Kappy's directions|http://discussions.apple.com/message.jspa?messageID=8799711#8799711]
    [Tri-Backup (commercial)|http://www.tri-edre.com/english/tribackup.html] (payware)
    I use Silverkeeper for backing up individual folders but I don't know if the older version is compatible with Leopard. CCC lets you sutomize what gets backed up but it's a bit cumbersome to do it at just the folder level. I haven't tried some of the others at all so I can't recommend.

  • I keep getting Object already exists when loading Adobe. How do I get rid of it and load Adobe Reader

    How do I get rid of i t and get Adobe Reader again.

    Windows update KB2918614 to the Windows Installer Service has caused similar issues with other software.  You might want to try removing that update (it will have been installed near the time you began having this problem).  Then reboot and try again to install the Adobe application.

  • SG300 ACE Creation "Already Exists" ?????

    I'm configuring ACEs through the browser on an SG300 in L3, and I keep running into an extremely frustrating situation.
    About every nine out of ten times I try to save an ACE, I get a message in red text that says the "Entry Already Exists" -- when it clearly does not exist. 
    I just tried creating a new (empty) ACL, and adding one ACE.  Even with that I get the "Already Exists" message when trying to save the first ACE.  I've tried saving and rebooting, blowing away the ACL and starting over, and even creating the base ACL and first few rules through the CLI.  Same problem, over and over.
    What's up Cisco???
    I read a couple of posts here that there is a browser-dependent bug, and only IE works well, but I get the exact failure when using Safari, Firefox and IE9.
    When I spoke with Cisco SB tech support he said that he has heard about this but he could only suggest that I blow away the config, and reset the switch to factory default (thanks, but no thanks) or post a message here.
    Has any one found a solution to this bug?  I've been advocating to my small business clients that they use these switches because the bandwidth is very good and the forwarding is rock-solid, but I'm not going to be able to keep using these switches when it takes hours to make a simple ACE change.
    Thanks in advance for your thoughts.  -Pat

    Hi Tom.
    Thanks for your help.  Here's the running config:
    L3SW01#sh run
    config-file-header
    L3SW01
    v1.3.5.58 / R750_NIK_1_35_647_358
    CLI v1.0
    set system mode router
    file SSD indicator encrypted
    ssd-control-start
    ssd config
    ssd file passphrase control unrestricted
    no ssd file integrity control
    ssd-control-end cb0a3fdb1f3a1af4e4430033719968c0
    no spanning-tree
    vlan database
    vlan 5,80
    exit
    voice vlan oui-table add 0001e3 Siemens_AG_phone________
    voice vlan oui-table add 00036b Cisco_phone_____________
    voice vlan oui-table add 00096e Avaya___________________
    voice vlan oui-table add 000fe2 H3C_Aolynk______________
    voice vlan oui-table add 0060b9 Philips_and_NEC_AG_phone
    voice vlan oui-table add 00d01e Pingtel_phone___________
    voice vlan oui-table add 00e075 Polycom/Veritel_phone___
    voice vlan oui-table add 00e0bb 3Com_phone______________
    no ip dhcp snooping verify
    ip dhcp snooping vlan 1
    ip dhcp snooping vlan 80
    arp timeout 600
    no ip arp proxy disable
    ip dhcp relay address 192.168.1.254
    ip dhcp relay enable
    ip dhcp information option
    bonjour interface range vlan 1
    ip access-list extended Wireless
    permit udp any 67-68 any any                         
    permit udp any any 192.168.1.254 0.0.0.0 domain
    permit icmp 192.168.80.0 0.0.0.255 any echo-reply any
    deny ip 192.168.80.0 0.0.0.255 192.168.1.0 0.0.0.255
    deny ip 192.168.80.0 0.0.0.255 192.168.5.0 0.0.0.255
    deny ip 192.168.80.0 0.0.0.255 192.168.100.0 0.0.0.255
    permit ip 192.168.80.0 0.0.0.255 any
    exit
    hostname L3SW01
    logging host 192.168.1.254
    logging origin-id string L3SW01
    no logging aggregation on
    username cisco password encrypted x privilege 15
    ip ssh server
    snmp-server server
    snmp-server location x
    snmp-server contact “x”
    snmp-server community x rw 192.168.1.119 view Default
    snmp-server host 192.168.1.119 traps version 2c x
    clock timezone " " -8
    clock source sntp
    clock source browser
    ip domain name rosehaven.private                     
    ip name-server  192.168.1.254 8.8.8.8
    ip domain timeout 2
    ip domain retry 1
    ip telnet server
    interface vlan 1
    ip address 192.168.1.1 255.255.255.0
    no ip address dhcp
    ip dhcp relay enable
    interface vlan 5
    name ASA
    ip address 192.168.5.2 255.255.255.0
    interface vlan 80
    name Wireless
    ip address 192.168.80.1 255.255.255.0
    ip dhcp relay enable
    service-acl input Wireless
    interface gigabitethernet1
    ip dhcp snooping trust                              
    switchport mode access
    interface gigabitethernet2
    description "Trunk Lag-A"
    ip dhcp snooping trust
    channel-group 1 mode auto
    switchport mode access
    interface gigabitethernet3
    description "NAS Lag-A"
    ip dhcp snooping trust
    channel-group 2 mode auto
    switchport mode access
    interface gigabitethernet4
    ip dhcp snooping trust
    channel-group 1 mode auto
    switchport mode access
    interface gigabitethernet5
    description SecServ
    ip dhcp snooping trust                              
    switchport mode access
    interface gigabitethernet6
    description "Panasonic TV"
    ip dhcp snooping trust
    switchport mode access
    interface gigabitethernet7
    description OPPO
    ip dhcp snooping trust
    switchport mode access
    interface gigabitethernet8
    description "Apple TV"
    ip dhcp snooping trust
    switchport mode access
    interface gigabitethernet9
    ip dhcp snooping trust
    switchport mode access
    interface gigabitethernet10                          
    description "Trunk Lag-B"
    ip dhcp snooping trust
    switchport mode access
    interface gigabitethernet11
    description "NAS Lag-B"
    ip dhcp snooping trust
    channel-group 2 mode auto
    switchport mode access
    interface gigabitethernet12
    ip dhcp snooping trust
    interface gigabitethernet13
    ip dhcp snooping trust
    interface gigabitethernet14
    ip dhcp snooping trust
    interface gigabitethernet15
    ip dhcp snooping trust
    interface gigabitethernet16
    ip dhcp snooping trust
    interface gigabitethernet17
    description APPLE-AP
    ip dhcp snooping trust
    switchport mode access
    switchport access vlan 80
    interface gigabitethernet18
    ip dhcp snooping trust
    interface gigabitethernet19
    description ASA
    ip dhcp snooping trust
    switchport mode access
    switchport access vlan 5
    interface gigabitethernet20
    ip dhcp snooping trust
    interface Port-channel1                              
    description Trunk
    switchport trunk allowed vlan add 80
    interface Port-channel2
    description NAS
    switchport mode access
    exit
    ip default-gateway 192.168.5.1

  • Purchase order already exists error for change Idoc 860

    Hi all
    I am getting an error that purchase order number already exists, when i try to post change inbound IDoc 860. How can I fix this issue?
    Thanks in advance

    This can be b'coz of Check purch.order no is active (A - Check whether the purchase order number already exists) in your sales doc type (TCode VOV8) used for the transaction.
    So, if for your business process, one PO number can be mention in more than one sales orders. Then maintain Check purch.order no should mention as <Blank>  - No Check under your sales doc type used for transaction's General Control. Or else use diff. PO Number.
    Hope this can assist you.
    Thanks & Regards
    JP

  • Resource Gantt Chart - Error : Resourse with same ID "%1" already exists

    Hi,
    I have a requirement to have multiple periods per resource.
    I have implemented the example in http://apex.oracle.com/pls/apex/f?p=36648:60. It seems only to cater for a single period.
    The COLUMN_NAME ID in my query is not unique.
    The following error in the chart is displayed:
    Category: 1000
    Error code: 1002
    Message: Resourse with same ID "%1" already exists
    Somewhere I'm missing something, and might be the late nights - Can you please advise?
    Kind Regards
    Mynhardt

    Hello Roel -
    Thank you for the suggestion. After setting parent_id to null, it still doesn't load. By using debug I'm getting a invald character to number conversion. Paring down the query to just basics, it still won't pass query validation:
    select null link, null
    a.WS_ENGINEER, number
    a.ws_engineer name, number
    null parent_id, null
    a.ws_start_date start_date, timestamp with timezone
    a.ws_end_date end_date timestamp with timezone
    from WORK_SCHEDULE a
    I have to think it's the timestamps with timezone that are causing the problems since all other data is only numeric. I'll keep after it.

  • Object exists when installing Itunes 11.4 on PC

    I've attempted to the latest version of ITunes 11.4.0.18 as of 10/4/14.  I have a PC with Windows 7.  I've uninstalled the 5 major programs (ITunes, Apple Software Update, Bonjour,etc).in the order listed on FAQ recommendation.
    Every time I try to install the latest Itunes version, I get the Yellow Exclamation Point Warning pop up statement: "Object Already Exists" when the install status states: "Updating Component Registration."

    For "Object already exists" or "Access denied" errors when installing try opening Control Panel > Programs and Features > View installed updates then checking for Security Update for Microsoft Windows (KB2918614). Uninstall if you have it, then reboot, and try installing iTunes again.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    tt2

  • HR adhoc infoset builder - field already exists

    Because of errors with a field in an HR infoset to be used by adhoc reporter (SQ01) created with transaction SQ02 (system is erp 2004) I deleted the field completely from the infoset. I am now attempting to set the field up again from scratch, but getting the error message that 'additional field with this name already exists' when I try to assign the technical field name. Field has been deleted. Is there a trick to fully deleting the field or to create the field over again?  I have queries in the standard area using this field and need to re-create it with the exact same name.
    thanks for any help!
    Chris

    Hi Chris,
    It seems you have posted your question in wrong Forum. This Forum is for SAP MDM.
    Please post your question in a relevant Forum.
    Regards,
    Pooja

  • Apps found in Itunesmedia/mobile application are duplicated in Itunesmedia/automatically add to Itune/mobile application.  Could cause the message "a newer version already exists"?

    Does any one have a solution as to why I keep getting the message saying " a newer version already exist" when i syn my ipod touch.

    Browse out to your Automatically Add to iTunes folder located under either:
    Mac OS X
    ~/Music/iTunes/iTunes Media/
    Windows Vista/7
    C:\Users\USERNAME\Music\iTunes\iTunes
    And delete all the apps that are located in this folder.
    B-rock

Maybe you are looking for

  • Read text in pdf files

    Hi Ppl, Is it possible to read text from pdf file ? We can use activex controls to open and display pdf files, but these activex doesn seem to support reading of text from these pdf files. Help me out plz. Thanks 

  • Currency scaling

    Hi! The queries are showing different values from the Cube.The values are showing scaled. For example, in the query I've got $155 and in the Cube $155000. The key figure are not scaled in the Query Designer. I have this issue in all queries with curr

  • FormattedValue for time

    Hello all, I'm having some trouble with the formattedValue property. So far, i have used it successfully in order to validate the date format when the user exits a date field in my form. The solution was quite easy to find, and although i didn't unde

  • OBIA Specs - Data Config and Dashboards

    I am looking for details on what comes with Oracle BI 11g pre-built content for Financials, Sales, Warehouse, and Inventory.  Specifically, I would like to know what is included in the data mart and dashboards.  Where can I find this detailed informa

  • Issues in axis2.xml

    Hi All, As part of a web service call from Data services, when we uncomment the following lines in axis2.xml, it throws the below error: Uncommented lines: <!parameter name="PROXY" proxy_host="localhost" proxy_port="8080" proxy_username="" proxy_pass