Trying to delete VNIC get OVMAPI_6046E ActionEngine null targetServer

I'm using OVM 3.0.2 and trying to delete an interface from a Virtual Machine and I'm getting OVMAPI_6046E ActionEngine: null targetServer: - error(NULL)
Steps, right click on the VM, select edit, select the next option to get to Network Options, select the VNIC you want to remove, click finish, then get error message
ob Internal Error (Operation)com.oracle.ovm.mgr.api.exception.IllegalOperationException: OVMAPI_6046E ActionEngine: null targetServer: - error(NULL)
Thu Dec 22 11:21:48 WST 2011
at com.oracle.ovm.mgr.action.ActionEngine.sendServerCommand(ActionEngine.java:340)
at com.oracle.ovm.mgr.action.VirtualMachineCfgFileAction.configureVirtualMachineCfgFile(VirtualMachineCfgFileAction.java:170)
at com.oracle.ovm.mgr.op.virtual.VirtualMachineCfgFileConfigure.configureVirtualMachineCfgFile(VirtualMachineCfgFileConfigure.java:82)
at com.oracle.ovm.mgr.op.virtual.VirtualMachineCfgFileConfigure.action(VirtualMachineCfgFileConfigure.java:55)
at com.oracle.ovm.mgr.api.job.JobEngine.operationActioner(JobEngine.java:191)
at com.oracle.ovm.mgr.api.job.JobEngine.objectActioner(JobEngine.java:257)
at com.oracle.ovm.mgr.api.job.InternalJobDbImpl.objectCommitter(InternalJobDbImpl.java:1019)
at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:223)
at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:136)
at com.oracle.odof.command.InvokeMethodCommand.process(InvokeMethodCommand.java:100)
at com.oracle.odof.core.BasicWork.processCommand(BasicWork.java:81)
at com.oracle.odof.core.TransactionManager.processCommand(TransactionManager.java:751)
at com.oracle.odof.core.WorkflowManager.processCommand(WorkflowManager.java:395)
at com.oracle.odof.core.WorkflowManager.processWork(WorkflowManager.java:453)
at com.oracle.odof.io.AbstractClient.run(AbstractClient.java:42)
at java.lang.Thread.run(Thread.java:662
Edited by: user12078565 on Dec 21, 2011 7:33 PM

user12078565 wrote:
Thanks for they update, even when assigned to a server the same error occurs, i've tried with another VM already assigned and the same message occurs. I also got the same message when I attempted to deleted a test VM. Are all your servers up and running with no errors? The icons are grey with a green arrow?

Similar Messages

  • Cannot delete e-mail.  I have three e-mail accounts, two of which I can delete e-mails.  Whenever trying to delete e-mails in the thirs account, I get the following message "Unable to move message.  This message could not be moved to the mailbox Trash".

    Cannot delete e-mails.  I have three e-mail accounts.  Two I have no problem with but I cannot delete e-mails from the third account.  Whenever trying to delete, I get a amessage which states "Unable to move message.  The message could not be moved to the mailbox Trash."

    Back up all data. Rebuild the mailbox. Try again to delete the message.

  • Getting error while trying to delete multiple rows

    Hi Experts,
    Working in jdev 11.1.1.3.0 with ADF BC and rich faces.
    i am trying to delete multiple records from the table, everything is working fine if i use filter or not using horizontal scroll bar of the table. if i try to delete last records on the table and the records are deleting from UI and from the DB also, but i am getting error like
    ADFv:Count not find row:_$<to-calc>$_with key:oracle.jbo.key[2333] inside parent: XxwfsAvcardXXXXXXXVO1Iterator with key:null
    I have changed my method with the below link
    Re: JDev 11g-Multiple Row Selection Table-Ctrl+A error
    but till i am getting the same error:
    Method:
    public void deleteRec(ActionEvent actionEvent) {
    // Add event code here...
    RowKeySet rowKeySet = (RowKeySet)this.embossTB.getSelectedRowKeys();
    CollectionModel cm = (CollectionModel)this.embossTB.getValue();
    Row specRow = null;
    ArrayList rowList = new ArrayList();
    int listLength = 0;
    ArrayList<Number> printReqLST=new ArrayList<Number>();
    ViewObject vo1=null;
    boolean flag=false;
    for (Object facesTreeRowKey : rowKeySet) {
    cm.setRowKey(facesTreeRowKey);
    JUCtrlHierNodeBinding rowData = (JUCtrlHierNodeBinding)cm.getRowData();
    specRow = rowData.getRow();
    rowList.add(specRow);
    listLength++;
    for (int index = 0; index < listLength; index++){
    specRow = (Row)rowList.get(index);
    Number printReqID = (Number)specRow.getAttribute("PrintRequestId");
    String PrintState = specRow.getAttribute("PrintState").toString();
    if (PrintState.equalsIgnoreCase("PRINTED")) {
    System.out.println("cann't delete");
    FacesContext fctx = FacesContext.getCurrentInstance();
    FacesMessage message =
    new FacesMessage("Cann't Delete the selected row:" + printReqID);
    message.setSeverity(FacesMessage.SEVERITY_ERROR);
    fctx.addMessage(null, message);
    } else {
    System.out.println("delete");
    flag=true;
    specRow.remove();
    if(flag){
    System.out.println("before commit");
    commitRows();
    Can any one help me....

    Can any one help me...
    i written logic in AM but still i am facing the same issue.
    can any one help me, is this is bug or coding issue.
    If i am not doing scroll down and trying to delete rows then there is no error.... only error is coming when i scroll down and try to delete.
    Method:
    public void deleteRec(ActionEvent actionEvent) {
    // Add event code here...
    RowKeySet rowKeySet = (RowKeySet)this.embossTB.getSelectedRowKeys();
    CollectionModel cm = (CollectionModel)this.embossTB.getValue();
    List<Row> rowsToDelete = new ArrayList<Row>();
    for (Object facesTreeRowKey : rowKeySet) {
    cm.setRowKey(facesTreeRowKey);
    JUCtrlHierNodeBinding rowData = (JUCtrlHierNodeBinding)cm.getRowData();
    Number printReqID = (Number)rowData.getAttribute("PrintRequestId");
    String PrintState=rowData.getAttribute("PrintState").toString();
    if (PrintState.equalsIgnoreCase("PRINTED")){
    System.out.println("cann't delete");
    FacesContext fctx = FacesContext.getCurrentInstance();
    FacesMessage message =
    new FacesMessage("Cann't Delete the selected row:" + printReqID);
    message.setSeverity(FacesMessage.SEVERITY_ERROR);
    fctx.addMessage(null, message);
    } else{
    System.out.println("delete");
    Row row1 = rowData.getRow();
    rowsToDelete.add(row1);
    // deletePrintRecords(printReqID);
    for (Row row : rowsToDelete){
    System.out.println("inside deleting rows");
    row.remove();
    //commitRows();
    System.out.println("After commit from am");
    public void commitRows(){
    // System.out.println("commit");
    DCIteratorBinding embossIter =
    ADFUtils.findIterator("XxwfsAvcardEmbossInterfaceVO1Iterator");
    ADFUtils.invokeEL("#{bindings.Commit.execute}");
    embossIter.getViewObject().executeQuery();
    AdfFacesContext.getCurrentInstance().addPartialTarget(embossTB);
    Edited by: user5802014 on Sep 3, 2010 11:47 AM
    Edited by: user5802014 on Sep 3, 2010 1:07 PM

  • Trying to delete file from trash but get this: The operation can't be completed because the item "File name" is in use. All other files delete except this one. Please help

    Trying to delete file from trash but get this: The operation can’t be completed because the item “File name” is in use. All other files delete except this one. Please help

    Maybe some help here:
    http://osxdaily.com/2012/07/19/force-empty-trash-in-mac-os-x-when-file-is-locked -or-in-use//

  • I am trying to delete an XLS file from a network drive and am getting a message that says the file cannot be deleted because it is in use.  I can't see where it is in use and have tried to reboot the computer to no avail.

    I am trying to delete an XLS file from a network drive and am getting a message that says the file cannot be deleted because it is in use.  I can't see where it is in use and have tried to reboot the computer to no avail.  I can delete other files but several XLS files are giving me this message.

    You said it was a network drive.  So is someone else on the network using that same file or may have have left with excel still accessing it on their system?

  • Hi Friends... I'm trying to delete a back-up file on mu TC but I get the message "The operation could not be completed because the item "bands" is in use. I'd like to start the Back from scratch, could help me out with deleting the current file?

    Hi Friends...
    I’m trying to delete a back-up file on mu TC but I get the message “The operation could not be completed because the item “bands” is in use. I’d like to start the Back from scratch, could help me out with deleting the current file?

    Sorry, I am very confused. I asked the following question....
    Is this the only backup file on your Mac, or do you have other backup files and data on the Time Capsule disk?
    The answer that you gave was....
    This is the only one
    Now you are saying that....
    But I have lots of other files on Time Capsule! The back up file is only one of them.
    Can you clarify, please?

  • HT1926 I have tried to delete the latest itunes and get back to 10.7. Now I have nothing in my library. How do I get the freshly installed itunes 10.7 to sync with the itunes STORE, and get me computers library back?

    I just tried to delete the new itunes (Hate it & could figure out how to sync iphone any more), and I reverted back to itunes 10.7 64-bit. When I tried to use itunes, it couldnt read the library because it had been created by the newer version (why it didn't get deleted when I removed itunes I do not know), so I deleted a few itune library files that I found still on my computer. Now I have the 10.7, but nothing in it... no library items. How do it get the itunes to sync with the itunes store

    This is what you should have done...
    To roll back to iTunes 10.7 first download a copy of the installer from here, uninstall iTunes and suppporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    tt2

  • Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    I have also noticed all my settings won't stay set, example....I removed the check mark from "third party cookies", the when I close Firefox and reopen the check mark is back, also my tool bar has screwed up....can't reset, been having trouble the up grade.

  • HELP!  I tunes wouldn't update so I tried to delete and reinstall.  I keep getting a message stating the installation source for this product is not available.  Verify that the source exists and that you can access it.  please help!!

    Help!  Itunes wouldn't update so I tried to delet and reinstall.  I keep getting a message: The instillation source for this product is not available.  Verify that the source exists and that you can access it.  I also get this message:  The feature you are trying to use is on a network resource that is unavailable.  Click OK to try again, or enter an alternate path to a folder containing the installation package 'iTunes64.msi' in the box below.  Help I have no idea what that means or how to fix it. 

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page). Here's a screenshot showing the particular links on the page that you should be clicking:
    After clicking one of the circled links, you should be taken to another page, and after a few seconds you should see a download dialog appear for the msicuu2.exe file. Here's a screenshot of what it looks like for me in Firefox:
    Choose to Save the file. If the dialog box does not appear for you, click the link on the page that says "CLICK HERE IF IT DOES NOT". Here's a screenshot of the page with the relevant link circled:
    When the dialog appears, choose to save the file.
    (2) Go to the Downloads area for your Web browser. Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • After connnecting Iphone to iTunes ( while trying to delete U2's album ), all of my songs have been removed. How can I get them back?

    After connnecting Iphone to iTunes ( while trying to delete U2's album that Apple forced on all iOS users. ), all of my songs have been removed. How can I get them back?
    I dont use iTunes since I have a windows laptop. I use CopyTrans , a program that basically emulates iTunes but is simpler. However it wouldnt allow me to delete U2s album from my phone. 
    After removing one song iTunes "updated" my phone's song list but in reality just deleted every song on it ( except for U2's atrocious album !!) 
    Is there any way I can get my songs back? 
    When I start up iTunes and CopyTrans  the songs are still there. However when I attempt to play them they will not play?
    Thanks

    If you have a unencrypted boot hard drive and willing to buy another external powered drive and $100 software, the files can be recovered using this method and Data Rescue.
    Create a data recovery/undelete external boot drive

  • I tried to delete all of my duplicate songs in iTunes and it deleted all of my music. Is there a way i get my music back?

    i tried to delete all of my duplicate songs in iTunes and it deleted all of my music. Is there a way i get my music back?

    From the backup you maintain in case something drastic happens to your collection as it surely will when your drive crashes, the computer is stolen, etc.?
    Are the files in the trash?  I don't let iTunes manage my music so when I delete a track I have to hunt down the file, drag it to the trash, and empty the trash in order to get rid of it.  I don't know how iTunes does it for others.

  • I no longer get the dialog box when trying to delete rejected photos.

    I have always used the Delete Rejected Photos. . . selection to get rid of the photos I have flagged as rejected. However, after the rejected photos are shown, the dialog box no longer appears with the option to Delete from Disc or to Remove from the LR Catalog. I don't know if this problem began with LR 3.4 or before, but the timing was close. It isn't that I don't know how to use the function because I have been using it for years. Any help would be appreciated.

    Since I had 358 photos out of almost 2800 flagged as 'rejected' I did not
    want to loose all my work. I selected the rejected photos and then flagged
    them all with a 'yellow' color. I then displayed all photos with a yellow
    flag and 'Un-rejected' them. I highlighted a small amount of them, about 30,
    and rejected them and then went to the Delete Rejected photos. the pop-up
    came up and I was able to delete them. Since the rest of my yellow flagged
    photos were still showing I rejected another chunk of them and so on till
    they were all deleted. When trying to delete a group that had published
    photos within I got a box warning me that if I deleted them the published
    ones could no longer be managed by LR. That is alright with me. It would be
    nice if the software would somehow flag those that had been published. All
    the dialog box said was that one or more of the group had been published. I
    did not know which.
    Thanks again for expert help!
    Jack

  • Hello Adobe team.¨, Hello Adobe team. I am trying to delete my creative cloud program since about 2month but i'll get no answer. Please delete my account because I don't need it anymore. please do it as soon as possible. greetings Timea-Luana Panier

    Hello Adobe team. I am trying to delete my creative cloud program since about 2 months. I want to delete this because I don't need it anymore. STOOOP IT AS SOON AS POSSIBLE.

    I'm sorry but nothing from this you just sent me works...The linke form adobe support to chancel takes me over and over to the same page, and the only thing they do is tell me to write my problem down in a chat for questions...the link with the phone was pretty good but nobody picks up....I really don't know what to do anymore....i've tried everything and nothing happens..im just paying more and more....
         John T Smith <[email protected]> schrieb am 23:38 Sonntag, 22.März 2015:
    Hello Adobe team.¨, Hello Adobe team. I am trying to delete my creative cloud program since about 2month but i'll get no answer. Please delete my account because I don't need it anymore. please do it as soon as possible. greetings Timea-Luana Panier
    created by John T Smith in Adobe Creative Cloud - View the full discussionThis is an open forum, not Adobe support... You need Adobe support to cancel a subscription-start here https://forums.adobe.com/thread/1703848-or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html--and two links which may provide more details, if the above links don't help you-http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html-http: //helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7328961#7328961 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7328961#7328961 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"  Start a new discussion in Adobe Creative Cloud by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • I get error message when trying to delete files on Macbook Pro.

    I am trying to delete files on my Macbook Pro, Mac OS X Version 10.6.8 -  I get this message: "The operation can’t  be completed because an unexpected error occurred (error code -50) "  This is a folder.  Under Finder/Get Info I have unlocked the padlock in lower right corner, and the padlock box is not checked.
    Please HELP!

    You should always backup your iPad before ever doing anything major that coould result in a catastrophic loss is something goes wrong. You can then usually restore from the backup when your iPad has recovered.
    You should also be sure to have transfered any new purchases directly to your iPad to the iTunes app on your computer on a regular basis.

  • I downloaded firefox,i cant get it to open, yet when i tried to delete it, windows explorer says firefox is running, even though i have no internet on

    i was at a hotel using wireless, but suddenly my computer shut down, saying something about a blue screen, when i turned it back on, it wouldnt fully load the games i play on facebook, so i tried a lot of things, then i downloaded mozzilla, nothing happens when i click on it so i tried to delete it but my computer says its running and i have to close it first, but i cant cos i cant get it to open!!!!!!!

    Many thanks for responding. Your suggestion led me to this website:
    https://support.mozilla.com/en-US/kb/Firefox%20is%20already%20running%20but%20is%20not%20responding
    which infers the problem exists and seems to confirm the only way is to restart the machine.
    Not being computer literate I cannot tell whether or not you can get around the 'lock/unlock' problem! What I need is an easy 'fix' but there does not appear to be one!!
    Thanks for trying!
    Cheers
    Mike Barker

Maybe you are looking for

  • Need to capture the excise for the excise tab missing item in GR

    Hi Masters     Our users has done MIGO with one line item(for Material A) with excise item tab and other line item(fro MAterial B) without excise item tab(non availability of Chapter ID). They are able to capture excise in J1IEX for the first item on

  • Reg. Document mangement system

    Hi all, I have created a new document using the CV01N transaction.Now I need to print the contents of the document in a ABAP report. Can any one tell me whether there is any Function module or BAPI to get the contents of the attached document in CV01

  • I have a new computer. How can I transfer my ITunes library? My old one has a virus. Can I transfer it from my IPhone?

    I can't find any information on how you can transfer your ITunes library from an old computer to a new one. I have installed ITunes on my new computer but it doesn't seem to synch with my IPhone. And I don't want to erase the library that is on my IP

  • How to install mac OS on a blank HD

    Just bought a new (2012) mac mini and the hard drive is blank. I don't own any other mac's so I'm lost about how to install an OS. What do I need to do and No, it didn't come with any discs. 

  • BAPI_ACC_DOCUMENT_CHECK for Vendor Items

    Hi friends, I am using the BAPI BAPI_ACC_DOCUMENT_CHECK to check the data to be posted for Vendor lines items. It is giving the error: 'For document type RE, an entry is required in field Reference' I have written the code like this:     Loop at t_fi