Error create license adminstration menu: Menu - Already exists [66000-88]

Hi Experts,
Customer has a minor problem - when loading SAP, the error message...
Error create license adminstration menu: Menu - Already exists [66000-88]
.. appears at the bottom of the screen.   What is causing this message?
Thanks
Greig

Hi Greig ,
You might need to upgrade your patch level . Here is the reason why you might have that issue
MenuItem: Menu - Already exists / Not found
Symptom
When adding many menu items you may randomly come across the following error messages:
"Menu - Already exists [66000-68]"
"Menu - Not found [66000-27]"
This may happen even if the UniqueID being used has previously been removed using RemoveEx(). This issue may occur in SAP Business One 2007 A PL30 through to PL44.
Other terms
error, menu - already exists, menu - not found, menu, already exists, not found, sub-menu, menuitem, remove, removeex, add, sap business one, ui, ui api, sdk
Solution
This issue does not occur as of SAP Business One 2007 A PL45.

Similar Messages

  • 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

  • SQL Server 2008 R2 Management Studio (express) install fails (Management Tools Basic Failed) - Error 1316. The Specific account already exists.

    Hi,
    I try to install, the SQL Express 2008 R2 with Advanced 
    The installation has only one error  (Error 1316. The Specific account already exists.) and the Management Tools Basic setup is failed.
    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the 
    reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server 
    Setup.
      Exit code (Decimal):           -2068052700
      Exit facility code:            1212
      Exit error code:               1316
      Exit message:                  SQL Server installation failed. To continue, investigate the 
    reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server 
    Setup.
      Start time:                    2015-01-02 16:17:17
      End time:                      2015-01-02 16:24:01
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap
    \Log\20150102_161500\SSCRuntime_Cpu32_1.log
      Exception help link:           http://go.microsoft.com/fwlink?
    LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.50.4000.0
    Machine Properties:
      Machine name:                  KHPNHSI_BNANG
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature             
                         Language             Edition              Version         Clustered 
    Package properties:
      Description:                   SQL Server Database Services 2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      Installation location:         g:\41bee43707e62fab54ec\x64\setup\
      Installation edition:          EXPRESS_ADVANCED
      Slipstream:                    True
      SP Level                       2
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      True
      AGTSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Disabled
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             
      CUSOURCE:                      
      ENABLERANU:                    True
      ENU:                           True
      ERRORREPORTING:                False
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      SQLENGINE,REPLICATION,SSMS,SNAC_SDK
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 *****
      HELP:                          False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    SQLExpress
      INSTANCENAME:                  SQLEXPRESS
      ISSVCACCOUNT:                  NT AUTHORITY\NetworkService
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      NPENABLED:                     0
      PASSPHRASE:                    *****
      PCUSOURCE:                     g:\41bee43707e62fab54ec\PCUSOURCE
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          AllFeatures_WithDefaults
      RSINSTALLMODE:                 FilesOnlyMode
      RSSVCACCOUNT:                  NT AUTHORITY\NETWORK SERVICE
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  SQL
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           PSI\ssamnang
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  False
      TCPENABLED:                    0
      UIMODE:                        AutoAdvance
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap
    \Log\20150102_161500\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Client Connectivity SDK
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Server Replication
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap
    \Log\20150102_161500\SystemConfigurationCheck_Report.htm
    Please help!
    Samnang.

    Hi SSamnang,
    According to your description, you come across the error that the specific account already exists. Please help to share the complete error log in C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150102_161500\SSCRuntime_Cpu32_1.log. You could
    use google drive to upload the error log following the steps in the article:
    https://support.google.com/drive/answer/2424368?hl=en
    From the exception help link, we notice that, the issue could be due to that an attempt fails to install SQL Server Native Client on a computer where SQL Server Native Client is already installed.
    I recommend you to check if there is already an existing SQL Server Native Client on your computer. If there is an existing one, you could uninstall it and install SQL Server again.
    In addition, there is a similar thread for reference:
    https://social.technet.microsoft.com/Forums/en-US/dc31bffd-c9e2-4630-b5d7-9252b03c24fe/sql-2008-r2-management-tools-install-fails-the-specified-account-already-exists?forum=sqltools.
    Regards,
    Michelle Li

  • File Error: A file of this name already exists

    im using Final Cut Pro 5.1.4 and whenever I tried to export a sequence using compressor, I get that error message "File Error: A file of this name already exists". I tried reinstalling the program, nothing. What can I do to fix that?

    Sounds like you already have a file by that name located in the place you want to export to. Try changing the name of your new file.
    b

  • WDA Error : An instance of popup view already exists in the application

    Dear Experts,
    I have used a popup in my WDA application which gets opened on the click of the button. Whenever the application is launched for the first time and when I click on the button to display the pop up I get the error "An instance of popup view already exists in the application"; when I close the application, relaunch it once again and click on the button to open the popup, it works fine. What would be the reason for this behaviour?
    My piece of code is as follows,
    try.
          lo_api_component = wd_comp_controller->wd_get_api( ).
          lo_window_manager = lo_api_component->get_window_manager( ).
                        CALL METHOD lo_window_manager->CREATE_WINDOW
                          EXPORTING
                            WINDOW_NAME       =  'POP_UP_QOH'
                            TITLE             = 'Stock Overview'
                            BUTTON_KIND       = IF_WD_WINDOW=>CO_BUTTONS_OK
                           MESSAGE_TYPE      = IF_WD_WINDOW=>CO_MSG_TYPE_NONE
                           CLOSE_IN_ANY_CASE = ABAP_TRUE
                          RECEIVING
                            WINDOW            = LO_WINDOW
                        CALL METHOD LO_WINDOW->OPEN
                 CATCH CX_WDR_RT_EXCEPTION.
    ENDTRY.
    Kindly please help to resolve the issue.
    Warm Regards,
    Kanthimathi

    Hi Viji,
    I now changed my piece of code as follows,
    if lo_window is initial.
    lo_api_component = wd_comp_controller->wd_get_api( ).
          lo_window_manager = lo_api_component->get_window_manager( ).
                        CALL METHOD lo_window_manager->CREATE_WINDOW
                          EXPORTING
                           MODAL             = ABAP_FALSE
                            WINDOW_NAME       =  'POP_UP_QOH'
                            TITLE             = 'Stock Overview'
                           CLOSE_BUTTON      =
                            BUTTON_KIND       = IF_WD_WINDOW=>CO_BUTTONS_OK
                           MESSAGE_TYPE      = IF_WD_WINDOW=>CO_MSG_TYPE_NONE
                           CLOSE_IN_ANY_CASE = ABAP_TRUE
                          RECEIVING
                            WINDOW            = LO_WINDOW
                        CALL METHOD LO_WINDOW->OPEN
    endif.                       
    but still facing the same problem. By the way what does the message type argument mean here?
    Regards,
    Kanthimathi

  • How do I Uninstall Adobe PSE9?  All I get is an error message, "Error 1316.  The specified account already exists".  Then the Unistaller rolls back and the program just sits there, partially uninstalled and unusable.

    I have upgraded to PSE13 and want to unistall PSE9.  When I try to do this all I get is an error message, "Error 1316.  The specified account already exists".  Then the uninstaller rolls back and I am left with a partially uninstalled version that is unusable.  I tried to reinstall the software from the original PSE9 disk but all it tries to do is uninstall the version already on my computer, and this then does the same thing as noted above. How do I completely uninstall PSE9?

    See here:
    How do I remove older versions of Photoshop?

  • Error in user difined form -Form -Alredy Exist [66000-106]

    Hi Experts ,
    i have develop my screens through screen painter.
    when i opn forms in sap as multiple time i have faced following errors:
    *Form -Alredy Exist [66000-106]*
    *The Choose From List unique ID already exists  [66000-106]*
    how can  avoide this errors
    please help me for this
    Regards,
    Pravin Baji

    Hi Pravin Baji
    Try this code to load your form
    Private Shared UIDPath As String = "Application/forms/action/form/@uid"
    Private xmlDoc As XmlDocument
            Protected Sub LoadXml(ByVal xmlFile As String)
                xmlDoc = New XmlDocument()
                If Not System.IO.File.Exists(xmlFile) Then
                    xmlFile = xmlFile.Insert(0, "..\")
                End If
                If System.IO.File.Exists(xmlFile) Then
                    xmlDoc.Load(xmlFile)
                    formUID = xmlDoc.SelectSingleNode(UIDPath).Value
                Else
                    oApplication.MessageBox("ERROR: File " + xmlFile + " not found", -1, "", "", "")
                End If
            End Sub
    Protected Sub LoadForm()
                If xmlDoc.HasChildNodes Then
                    xmlDoc.SelectSingleNode(UIDPath).Value = formUID + System.Math.Max(System.Threading.Interlocked.Increment(counter), counter - 1)
                    Dim xmlStr As String = xmlDoc.DocumentElement.OuterXml
                    oApplication.LoadBatchActions(xmlStr)
                    Dim oForm As Form = oApplication.Forms.ActiveForm
                    Try
                        Dim oUDS As UserDataSource = oForm.DataSources.UserDataSources.Item("FolderDS")
                        If oUDS IsNot Nothing Then
                            oUDS.Value = "1"
                        End If
                    Catch generatedExceptionName As Exception
                    End Try
                Else
                    oApplication.MessageBox("ERROR: XML File containing the form not found", -1, "", "", "")
                End If
            End Sub
    Hope this will solve your problem
    Regards
    Arun

  • Error creation of JCO connection: System Already Exist

    Hi Experts,
    We have created the SLD connection to the ECC6.0 from the Portal 7.0.
    Created one JCO connection using that SLD successfully for the Clinet 100.
    Now we required to create one more JCO Connection for client200 also. But it is giving the Error that
    System Already Exist.
    How can we resolve this. When we create the JCO connection for one client, con't we create one more JCO connection for the same system for the differt client or not?
    If so How do it?
    Regards

    I think you can add one more client in the existing connection. well, I am not sure about that even.
    nikhil

  • Error when updating Budget-This entry already exists...Budget (OBGT)

    SAP 2007A SP00 PL49
    When updating Budget, get following error:
    This entry already exists in the following tables 'Budget' (OBGT) (ODBC-2035) [Message 131-183]
    Any ideas?
    Thanks,
    Ajay Audich

    Hi,
    Vitor Vieira,
    Thank you that your answer helped me solving my problem to some extent.
    I solved the problem by creating document and document lines table and creating a UDO with it. Because the problem was with assigning some data to the u201CCodeu201D field when using master type tables.
    I didnu2019t get any problem after using the document and document lines table.
    Also,initially I didnu2019t bind the # column of my matrix with the LineID field of table. After doing that it is working fine and I am able to update the records.
    But still this is not a proper solution and I didnu2019t get answer for why master type UDO doesnu2019t support updating.
    Thanks,
    V.M.Nivasini

  • Error while exporting universe: aux.lov already exists

    Hi,
    I have created a universe on top of an info cube. I can generate the universe and save it. But when I want to export it to BO server I'll get the following error:
    Original error:
    "Fehler beim File Repository Server: Ablegen der Datei auf dem Dateiserver fehlgeschlagen: frs://input/a_241/209/000/53745/aux.lov ist bereits vorhanden"
    In english:
    Error in File Repository Server: Export of universe at the file server failed. frs://input/a_241/209/000/52745/aux.lov already exists".
    I don't understand what this error means. Is there a list of values in my universe which already exists???
    Is there a solution solving this error?
    I would be very glad if someone can give my a hint.
    Thanks,
    Claudia
    Edited by: Claudia Liebl on Dec 1, 2008 3:39 PM

    Claudia,
    I have had the same error message and I avoided this by disabling the LOV for the object in Universe designer (Object properties).
    In SAP based universes, by default every object has a LOV. The names of these LOV are alphabetical. You'll have to find the objects with the LOV starting with au*.lov and then go to the object which has the specific lov you mentioned and disable it.
    It is weird that this error happens, though there are 20,000 other objects with LOV's enabled. This to me looks like a bug in SAP based universes.
    Kashif

  • Trying to create ASM instance, thinks one already exists?

    I've got a problem with creating the ASM instance. Basically, I've reinstalled (v11.1.0.6) clusterware, and two database software installs (one for asm, one for db) due to a san swap. Now, I believe that there is still a hangover to the original installation. When creating the ASM instance through DBCA on Windows, I get the following:
    DBCA could not startup the ASM instance configured on this node. To proceed with ASM diskgroup management you need the ASM instance to be up and running. Do you want to recreate the ASM instance on this node?
    Yes
    Enter password
    DBCA will now create and start the ASM instance. After the ASM instance is started, you can create disk groups to be used as storage for your database.
    OK
    ASM Instance Creation...
    Encountered file error when copying listeners from home=D:\oracle\product\11.1.0\asm_2
    OK
    The operation will be stopped. Re-run DBCA after successfully running NetCA.
    I have a listener running (listener_rac), I have a similar problem with netca as it says I already have a listener called listener, which I do not, however, I have created listener_rac instead.
    I feel trhat the problem is that ASM1 (for node 1) or ASM2 (for node 2) already exists. However, I can not find either of these. I can create an ASM instance in single node mode, however, this creates an instance +ASM, which does not conflict.
    How do I find the non-existent instance, and remove it? (not in registry or services)
    Alternatively, any other ideas as to what is happening?
    Thank you for your time.

    I have a listener running (listener_rac), I have a similar problem with netca as it says I already have a listener called listener, which I do not, however, I have created listener_rac insteadDBCA created your listener... you can check on listener status
    srvctl status nodeapps  -n node01
    Listener is running on node: node01
    srvctl status nodeapps  -n node02
    Listener is running on node: node02
    if not start, start it by
    Usage: srvctl start listener -n <node_name> [-l <lsnr_name_list>]
    srvctl start listener  -n node01
    by the way, you cam use "netca" delete/recreate (listener_rac)
    After that, point to ASM:
    I feel trhat the problem is that ASM1 (for node 1) or ASM2 (for node 2) already exists. However, I can not find either of these. What did you see?
    crs_stat
    srvctl status asm -n node01
    srvctl status asm -n node02
    if you see asm on node01/node2... you can start them if thet offline
    srvctl start asm -n node01
    srvctl start asm -n node02
    and then.. use "DBCA" to help create ASM diskgroups.
    I can create an ASM instance in single node mode, however, this creates an instance +ASM, which does not conflict.that can conflict.. don't start it (+ASM)
    How do I find the non-existent instance, and remove it? (not in registry or services)
    Alternatively, any other ideas as to what is happening?use "crs_stat" command
    http://download.oracle.com/docs/cd/B28359_01/rac.111/b28255/crsref.htm#CWADD6025
    and use "srvctl"
    http://download.oracle.com/docs/cd/B28359_01/rac.111/b28254/srvctladmin.htm#RACAD028

  • Need help with Sharepoint foundation web application stuck on "STOPPING" error job-service-instance-GUID Number already exists

    Hi All,
         I cant get to stop SharePoint foundation web app service. Its stuck on status stopping
    I have tried the following:
    reset IIS
    restarted the Timer Service
    When I try to use powershell command to stop I get the following error:
    Can anyone who went through this help PLEASE
    Stop-SPServiceInstance : An object of the type
    Microsoft.SharePoint.Administration.SPServiceInstanceJobDefinition named
    "job-service-instance-1ff39eb2-12d2-457d-a749-265e350eb1b1" already exists
    under the parent Microsoft.SharePoint.Administration.SPTimerService named
    "SPTimerV4". Rename your object or delete the existing object.
    At line:1 char:127
    + ... pplication"} | Stop-SPServiceInstance
    + ~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidData: (Microsoft.Share...ServiceInstance:
    SPCmdletStopServiceInstance) [Stop-SPServiceInstance], SPDuplicateObjectEx
    ception
    + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletStopServ
    iceInstance

    Hi,
    It seems that the issue is in the timer job definition for executing this operation.
    My suggestion is to start the service again and delete the job definition from the error and again try to stop it.
    This might be helpful:
    http://sharepoint.stackexchange.com/questions/22368/is-there-a-powershell-cmdlet-to-delete-a-timer-job 
    I had a lot of issues in the past when try to stop this instance after the Web apps are provisioned.
    As general rule now If I have multi-server Farm topology that has servers that should not serve Web App requests I turn off the service prior to provisioning any Web Apps in the Farm. 
    BR,
    Ivan

  • 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.

  • SharePoint 2007 Content deployment Error: 'A folder with the name already exists.

    Hi, In SharePoint 2007 one Content deployment job is failed with below error:
    Content deployment job 'Remote import job for job with sourceID = some id' failed.The exception thrown was 'Microsoft.SharePoint.SPException' : 'A folder with the name PublishingImages/AEI-2014/Blue already exists.'
    From last 3 days I am getting this error and previously this Job was running without any Error.
    In Import Log file getting message: "FatalError: A folder with the name PublishingImages/sg-2015/yellow already exists."
    Please tell me how to resolve the issue.

    Hello,
    It seems same folder exist in destination server that's why job is failing. You need to check destination server and remove the same name/GUID from site then try again.
    See this technet for more info: (see "Conflicting content on source and destination" section)
    http://technet.microsoft.com/en-us/library/dd795107%28v=office.12%29.aspx
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Trying to uninstall Acrobat 10, I get an Error 1316. The specified account already exists

    I am a new Creative Cloud Subscriber.  I tried to install Acrobat XI Pro and received an error during the installation.  I contacted support, and they had me uninstall the partial installation of Acrobat XI, and then reboot the machine.
    After the reboot I attempted to install Acrobat 11 from a full version that I downloaded from the Adobe website, based on the information provided to me by support.
    That did not work and while the software was trying to uninstall Acrobat X I received an Error 1316, and it quit.
    Now when I try to remove Acrobat 10, I get the Error 1316 The specified account already exists.
    What do I need to do to uninstall Acrobat 10 and Install Acrobat 11.
    EJ

    You will need to repair AA X before you can uninstall it. AA XI typically breaks part of prior versions in that removal of AA XI, removes those parts of XI the overwrote parts of X and thus X is broken.

Maybe you are looking for

  • Bridge CS6 freezing on OSX 10.8.2 (Mountain Lion)

    I am entering this because it is solved and may help others... Model Name: iMac   Model Identifier: iMac10,1 late 2009   Processor Name: Intel Core 2 Duo   Memory: 12 GB Apple SW OSX 10.8.2 Adobe SW PS CS6, Bridge CS6 Recurring and repeatable problem

  • Visual Basic making pdf with hyperlink Acrobat 9 / Office 2003

    hello, I try to make document with VBA and I can't use the same references. AdobePdfMakerForOffice seems don't work since Acrobat 6 ( an object seems to have disappear) I have try with pdfmakerapilib an have an error (-10) If someone has an Idea for

  • ST22 - Name of runtime error

    Hello, i would like to understand the meaning of the following runtime error .. could you please explain me what they mean? TIME_OUT                     OPEN_DATASET_NO_AUTHORITY    MESSAGE_TYPE_X               SYNTAX_ERROR                 RAISE_EXCE

  • SAP client copying Profile

    Hi  Gurus; If i choose profile SAP_UCSV (customising and user master records)will this inclde the transactional data also. Is there any other way to copy only master data-excluding the trasactional data. Please update ASAP Thanks and regards Tushar P

  • How to fetch service order with partucular system status and user status

    Hello All, How to fetch service orders with specific system status and user status. thanks