How to terminate guest vm with in progress status in oem 11g

in grid control 11g -->virtual central show:
name type status
ovm_build1     Guest VM     Editing
guest :gvm11 status is alway "Editing".
but in fact gvm22 status is Runing.
virsh # list
Id Name State
0 Domain-0 running
3 52_OVM_BUILD1 blocked
because it is in progress in grid control 11g,we can't do anything, pls help me to correct or terminate.
for exaple :stop guest vm ,it report the following:

In OVM Manager there is a "reset" action that the new status is read from the OVS server.
I don't know how this looks like in EM Manager, but there should be a similar action.
Sebastian

Similar Messages

  • LCM import of Planning Application Hangs with "In Progress Status"

    Hi,
    LCM import of Planning Application Hangs with "In Progress Status" . its already couple of hours. Earlier it was always within 10 mins.
    Any advise is appreciated.
    Regards,
    Vineet

    It is probably worth trying again, may be useful to first bounce the services.
    If it happens again after bouncing the services then investigate at what staging it is getting stuck at.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Can someone tell me how to create accounting entries with the account status as error

    Hi,
    Can someone tell me how to create accounting entries with the
    account status as error?
    Thanks!!
    Danny

    It's call fixed/static background, and it is NOT directly support by iweb, you will need post processing either in html or javascript.
    Varkgirl (you need to search the previous forum) and I did it since iweb1:
    try Safari, and scroll: http://www.geocities.com/[email protected]/Links.html
    invisible link? roddy, fishing for info again?

  • 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

    I want tables or views from where I can fetch service orders. I have to design ALV report based on this.
    I want to fetch released service orders with status INIT and RENT.
    Here, SYSTEM Status = Released and
             USER Status     = INIT
                                        RENT
    So is there any function module available for the same.....

  • How to get "ShareWithMe" files with "check out" status?

    Hello All,
    I was working on try to get "ShareWithMe" documents via SharePoint 2103 Query APIS with CSOM and REST service.
    Practically it works good using the "SharedWithUsersOWSUSER"
    manage property from this way: 
    https://domain-my.sharepoint.com/_api/search/query?querytext='*'&querytemplate='SharedWithUsersOWSUser:"someone"
    But, this search query is not working for files that has been set up to "check out",  I
    mean this scenary :
    e.g
    I upload a new file to my documents. 
                    Check out the file.
                    Share this file with someone.  
    I could verify that  "SharedWithUsersOWSUser" property has a empty value  for check out files that has been shared with someone, and this it will be the reason for what the query displayed above is not working in this case. 
    an extra test that I did it was : change the file shared from "check out" to "check in" and then the query it worked as expected.  
    Is there some way to get also these files(with "check out" status) ? I can see that it works very well on OneDrive for business - "ShareWithMe" page, I mean all files that it were shared with the current user are listed there, without to
    take into account if these files it were set up to check out or not. Please, some suggestion ?

    When the file is checked out and metadata is changed while it is checked out the search crawler will not pick up the change until it is checked in. When you make changes to a file while it is checked out they are considered temporary changes until they
    are checked in.
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

  • R12.1.1 How to Terminate Payment batch with status "Submitted for Printing"

    Hello,
    We have a requirement to terminate the payment batch which was submitted for printing. How can we terminate the payment batch which is in "Submitted for Printing" status? The reasons could be due to the issues with the data in XML file. Ex. Special charecters etc which printing software (Adobe/evergreen) fail to recognize.
    We are on 12.1.1.
    We appreciate your thoughts and help.
    Thanks,

    Thanks for your response. We do not see the terminate option. When we click on Take action we have a choice to reprint or record print status. On the dashboard the terminate option is disabled. Do you think there is any configuration to enable the terminate option?
    Thanks,

  • How to use tree tables with CRUD operation for begineers ADF 11g

    This is Friday night call for help.
    This is only few sample ressources on the web for tree table and only one with CRUD operation.
    I used this one http://jobinesh.blogspot.com/2010/05/crud-operations-on-tree-table.html because this is the only one that address CRUD.
    And it is shaky. Deletion works fine but insertion not very well. This is working using custom code provided below.
    Depending if the user selection in the tree, the code insert from the master node to the children node.
    Any other options because it is not working well.
    Also where Oracle describes how to use the row, rowset, itorator API? This is really hard to understand like almost if we should not use it.
    then if not how can I insert in tree with two nodes and insert in the parent or children depending the users selection.
    Lately I 'been posting questions on this forum with no response. This hurts. I understand developers cannot spend their time on this but People from Oracle, please help. We pay licenses...
    public void createChildren(RowIterator ri, Key selectedNodeKey) {
    final String deptViewDefName = "model.DepartmentsView";
    final String empViewDefName = "model.EmployeesView";
    if (ri != null && selectedNodeKey != null) {
    Row last = ri.last();
    Key lastRowKey = last.getKey();
    // if the select row is not the last row in the row iterator...
    Row[] found = ri.findByKey(selectedNodeKey, 1);
    if (found != null && found.length == 1) {
    Row foundRow = found[0];
    String nodeDefname =
    foundRow.getStructureDef().getDefFullName();
    if (nodeDefname.equals(deptViewDefName)) {
    RowSet parents =
    (RowSet)foundRow.getAttribute("EmployeesView");
    Row childrow = parents.createRow();
    parents.insertRow(childrow);
    } else {
    RowSet parents =
    (RowSet)foundRow.getAttribute("EmployeesView");
    Row childrow = parents.createRow();
    childrow.setAttribute("DepartmentId",
    foundRow.getAttribute("DepartmentId"));
    parents.insertRow(childrow);
    } else {
    System.out.println("Node not Found for " + selectedNodeKey);
    }

    I am looking for a sample that describe how to design a jsf page with a tree table.
    So you have Department and employees. In the tree first comes Department and if you click the node you see the employees assigned to this department.
    I need to be able to insert a new department or a new employee from the tree table by clicking on a insert button in the panel collection toolbar depending on user selection in the tree.
    I got part of it working but not good enough.
    By problem is the get insertion working
    I have a createChildren method in my AM implementation that get in input a RowIterator and selected node key.
    To goal is to create new records depending of the user selection and the input parameters get populated by the binding like this:
    #{backing_treeSampleBean.selectedNodeRowIterator} #{backing_TreeSampleBean.selectedNodeRowkey} via method binding with parameters.
    Is it the right approach?
    First to be able to insert a parent record, I select nothing in the tree and ri and selectedNodeKey comes to null
    we run this code
    ViewObjectImpl vo = getSchHolidaySchedExceptionsView1();
    //ViewObjectImpl vo = getDepartmentsView1();
    Row foundRow = vo.first();
    Row childrow = vo.createRow();
    vo.insertRow(childrow);
    A new blank entry appears in the parent node and we enter a value.
    The the problem starts when we want to add a child to this parent.
    We select the created parent and press the insert button, this code get executed
    if (nodeDefname.equals(deptViewDefName))
    //list of the children of the parent and create an new row
    RowSet childRows = (RowSet)foundRow.getAttribute("SchHolidayExceptionDatesView");
    Row childrow = childRows.createRow();
    childRows.insertRow(childrow);
    But the new entry does not appear, it is almost like it would be created for a different parent because this is a mandatory field that is not feel in yet and the interface complaints of a missing value. It is created somewhere just not a the right place... This is my guess.
    Do you see something wrong with the code?
    The full code og my create children method is there below
    I am using jdeveloper 11.1.1.3.0 any issues with tree table to know about with this version?
    Thanks for your help
    public void createChildren(RowIterator ri, Key selectedNodeKey) {
    final String deptViewDefName = "com.bcferries.app.pdfroutesched.model.SchHolidaySchedExceptionsView";
    final String empViewDefName = "com.bcferries.app.pdfroutesched.model.SchHolidayExceptionDatesView";
    if (ri != null && selectedNodeKey != null) {
    // last row
    Row last = ri.last();
    Key lastRowKey = last.getKey();
    // if the select row is not the last row in the row iterator...
    Row[] found = ri.findByKey(selectedNodeKey, 1);
    if (found != null && found.length == 1) {
    // foundRow is the row selected
    Row foundRow = found[0];
    // The row selected can be the parent node or the child node
    String nodeDefname = foundRow.getStructureDef().getDefFullName();
    // if parent row
    if (nodeDefname.equals(deptViewDefName))
    //list of the children of the parent and create an new row
    //works but we try to resolve the creation of a parent
    RowSet childRows = (RowSet)foundRow.getAttribute("SchHolidayExceptionDatesView");
    Row childrow = childRows.createRow();
    //childrow.setAttribute("HolidayDate", new java.util.Date().getDate());
    System.out.println("insert child row from master");
    childRows.insertRow(childrow);
    } else
    //RowSet ParentRow = (RowSet)foundRow.getAttribute("SchHolidaySchedExceptionsView");
    //RowSet childRows = (RowSet)ParentRow.first().getAttribute("SchHolidayExceptionDatesView");
    Row childrow = ri.createRow();
    System.out.println("insert child row from child ");
    } else {
    System.out.println("Node not Found for " + selectedNodeKey);
    } else {
    System.out.println(" param null try creating for first row : " +
    ri + " * " + selectedNodeKey);
    ViewObjectImpl vo = getSchHolidaySchedExceptionsView1();
    Row foundRow = vo.first();
    Row childrow = vo.createRow();
    vo.insertRow(childrow);
    }

  • How to Stop workflow which is in Progress status.

    Hi ,
    I have started a workflow while testing , now it has reached to the inbox of different agents.
    could you please suggest how to stop the workflow and rollback everything affected because of it .
    best regards
    abhijeet chitale

    You could use the transaction SWIA to manually complete workitems. If you use the the workitem ID of the workflow instance you set the status of the workflow to logically deleted.
    Other option is to use the object FLOWITEM with method statuschange to change the status to completed. Also go in there with the ID of your workflow instance.
    However, my question is why you want to do this? If you're testing you could also just execute the workitem in the inboxes. Undo work which is done has to be executed manually.
    Kind regards,
    Joost van Poppel

  • How to cancel processed messages with acknowledgement waiting status

    Hi All,
    Messages processed successfully in Integration Server but messages still waiting for acknowledgement. I want to cancel these messages.Will u please let me know how to do delete these messages.I already canceled messages with status to be delivered in Integration Engine and Adapter Engine. But in SXMB_MONI, messages are processed successfully with waiting status.Please suggest how we need to cancel them.
    Please Suggest some possible solution.
    Regards,
    Kanisha Sharma
    Edited by: kanisha on Jul 2, 2010 8:28 AM

    Hi,
    Thanks for your reply.Yes it is an IDOC based scenario. But Idoc is in outbound side. Idoc processed successfully in ERP as well as PI processed successfully to MDM.Messages processed successfully in SXMB_MONI but once imported in MDM IS, then acknowledgement will be send to PI.My issue is:- MDM server is down and i want to cancel these messages.
    Please suggest
    Regards,
    Kanisha Sharma

  • How to reset OSS Notes with Question mark status in SPAU

    Hi,
    We are doing SPAU adjustments. In that under Note we have many OSS notes with status "Question Mark". We ran SAPRUPGM again. But still we have this question mark.
    We realized some of the notes are not applicable and want to reset. But when I select the note and reset, it gives a pop up to confirm the reset. I select "reset" there. But instead of reseting it gives me a popup asking to download the OSS note. If I cancel it it goes back to the initial SPAU screen. Nothing done. If I okay it it tries downloading the note.
    How to solve this situation?
    Can you also tell me if it is okay to leave the notes without resetting.
    Regards,
    Ravikanth
    Edited by: Ravikanth Tunuguntla on Aug 12, 2008 5:37 PM

    Appreciate the reply.  I of course did try to re-execute SAPRUPGM.  In background, it runs for 2 seconds and produces no log or spool.  When I run on-line, and un-tick the box for output log file, the resulting list shows these messages for the gree question mark notes.   These notes are no longer visible in SNOTE. Basically I'm stuck - with the green question mark, I don't know how to get rid of these Notes in SPAU.
    Corrections in SAP Note                                                                               
    NOTE 0000683004 0003                                                        Inconsistent data                       
    NOTE 0000693190 0002                                                        Inconsistent data                       
    NOTE 0000731027 0001                                                        Inconsistent data                       
    NOTE 0000764040 0003                                                        Inconsistent data                       
    NOTE 0000768618 0001                                                        Inconsistent data                       
    NOTE 0000770227 0001                                                        Inconsistent data                       
    NOTE 0000772460 0001                                                        Data for SAP Note 0000772460 incomplete 
    NOTE 0000775691 0002                                                        Inconsistent data                       
    NOTE 0000777671 0003                                                        Inconsistent data                       
    NOTE 0000782311 0002                                                        Inconsistent data                       
    NOTE 0000784108 0001                                                        Inconsistent data                       
    NOTE 0000785324 0002                                                        Inconsistent data                       
    NOTE 0000802475 0004                                                        Inconsistent data                       
    NOTE 0000826538 0002                                                        Inconsistent data                       
    NOTE 0000843717 0002                                                        Inconsistent data                       
    NOTE 0000864505 0002                                                        Inconsistent data

  • How can we transform a video from progressive to interlaced with final cut?

    How can we transform a video from progressive (720x1080 50p) to interlaced (PAL) with final cut pro???????
    The video is taken with Sony EX3

    Hi Nick
    Sorry but your first link says +"The file you are trying to access is temporarily unavailable."+ ... but tell me, are you viewing these interlaced encodes yourself on an interlaced monitor (eg are you burning them to disc and viewing on a TV) as they are meant to be seen, or are you just playing them back from file on your (progressive) computer display?
    By the way, I did manage to download your source file and encoded it here. Looks ok to me ... in a addition to the instruction above, I also changed the Field Dominance in the Encoder > Video Format tab to Top First (it defaulted to progressive due to the progressive source file).
    Let me know if that helps
    Andy

  • PERWSHRG form - How to end/terminate and assignment with end dated entered by user Apps R12.1

    Hi All.
    How to end/terminate and assignment with end dated entered by user Apps R12.1?
    when i try to end or terminate and assignemnt the sysdate is begin registered for effective_end date.
    any help is reaaly greatly appriciated
    thanks and regards
    Soni

    Hi Soni,
    What is the end date you want to enter as. Are you talking about 31-Dec-4712. If not, please change the sytem effective date (calendar icon on the oracle menu) to the date you want to terminate and follow the termination process.
    Thanks,
    Avinash

  • How can I cancel an order made as apple guest? or how can i associate it with an account?

    how can I cancel an order made as apple guest? or how can i associate it with an account?

    You should still have an order number
    call 1-800-MY-APPLE

  • How to associate audio file with progress bar

    Hi all,
    I have a case in which I need to associate an audio file witha  progress bar. What I want to do is to able to play a audio file which will say " Process started.." Process going on" and process ends, and it shoud be synchronized with the progress bar. Is there a way to do this .
    Please let me know
    Thanks,
    Ankit G
    Solved!
    Go to Solution.

    Are you referring to a LabVIEW horizontal/vertical progress bar, which basically has a U8 integer constantly written to it? Is this in a loop as it fills up?
    If so, there is an entire palette that allows you to play waveforms. As you're writing to your progress bar the number, you can keep checking what that number is (event or case structure), and when it hits particular values, you play particular sounds. Here is a screenshot of that palette.
    Ravi A.
    National Instruments | Applications Engineer

  • OCDM  - Sample Report Installation issue - Runs too longer with No progress

    Hello,
    As a part of OCDM environment setup for Practice we were successful installing following :
    * Supported Enterprise Linux
    * Oracle DB 11g R2 (OLAP & MINING option)
    * OWB was already installed as a part of Oracle DB 11gR2 - just unlocked the OWB accounts.
    * Installed OBIEE 11g R2 installation - Installation successful and able to open url's. (analytics and BI Publisher etc.) - Issue with login account.
    * Installation of Communication Data Model (First Installation type from OCDM Installer)
    When we try to install Sample Reports at same stage the screen remain open and runs too longer with No progress.
    The Installation process for OCDM Sample Reports is given in the attached doc with screenshot and the log file is also included in the attached document.
    Please let us know the following two issue:
    1) How to login to Analytics after OBIEE 11gR2 installed on Linux - ( in our case we use user as Administrator and tried password same as username, even checked with the user weblogic and other but no success. Please provide us the information which give details(document) about the Administartion of OBIEE 11gR2 on Linux).
    2) The issue with installation of OCDM Sampple Reports though successful installation of OCDM Data Model.(First Installation Type from OCDM Installer)
    Thanks & Best Regards,
    Amol Thite
    I think, I cant Attach the file here and character limit is 30K for the post here so putting below the few lines of Log File content:
    I can email the screen shots docs and complete log file on request if needed.
    It stuck in Configuration Assistance screen -
    After more than 1 hour the same screen – No progress – I tried 3 times but same issue. Log file also not growing and seems its waiting for some dependent thing that need to happen before it proceed.
    =====start few lines of Log File=======================================
    The file oraparam.ini could not be found at /u01/app/oracle/product/11.1.0/db_1/oui/bin/oraparam.ini
    Using paramFile: /u01/app/oracle/product/11.1.0/db_1/oui/oraparam.ini
    Checking swap space: must be greater than 500 MB. Actual 1027 MB Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 65536 Passed
    The number of files bootstrapped for the jre is 689.
    The number of files bootstrapped for the oui is 77.
    Using the umask value '022' available from oraparam.ini
    =====end few lines of Log File==================================
    INFO: Copying Aggr XML for: Oracle Communications Data Model
    INFO: The Top level Aggreage File = /u01/app/oracle/product/11.1.0/db_1/inventory/ContentsXML/ConfigXML/oracle.ocdm.11_2_3_0_0.xml
    INFO: deleted all the required instance files
    INFO: OUI_CAPlugIn is not found in XML
    INFO: cf session will be created for OH: /u01/app/oracle/product/11.1.0/db_1/ TLAggr: oracle.ocdm instancePath: inventory/ContentsXML/ConfigXML/
    INFO: cf session for OH: /u01/app/oracle/product/11.1.0/db_1/ TL Aggr: [oracle.ocdm] instancePath: inventory/ContentsXML/ConfigXML/
    INFO: aggr ref length : 2
    INFO: cf session hashcode: 22855989
    INFO: cf session saved with key: OraDb11g_home1 oracle.ocdm
    INFO: cf session is ok
    INFO: created and saved cf session for oh: OraDb11g_home1
    INFO: passing params to cf
    INFO: Handling the storing of variables for aggr name oracle.ocdm
    INFO: This variable sl_ASMSelectableDiskGroups is not added to the global context map
    INFO: This variable s_scratchPath is not added to the global context map
    INFO: exitonly tools to be excuted passed: 0
    INFO: Starting to execute configuration assistants
    INFO: Command = oracle.ocdm.OCDMCfgPlugIn /u01/app/oracle/product/11.1.0/db_1/ocdm/ocdm_install.sh ${s_dbSysPasswd}
    OCDMCfgPlugIn: Starting OCDM configuration...
    OCDMCfgPlugIn: OCDM configuration initialized, waiting for script response...
    OCDMCfgPlugIn: Receiving SYSTEM password...
    OCDMCfgPlugIn: Passing SYSTEM credentials to configuration script...
    OCDMCfgPlugIn: SYSTEM credentials passed to configuration script.
    OCDMCfgPlugIn: SYSTEM password received.
    OCDMCfgPlugIn: Initializing config parameteres...
    OCDMCfgPlugIn: Creating log folder...
    OCDMCfgPlugIn: ocdm log folder exist
    OCDMCfgPlugIn: Exporting config env...
    OCDMCfgPlugIn: Performing OWB check...
    OCDMCfgPlugIn: Installing OWB...
    OCDMCfgPlugIn: WARNING: OWB OWNER already exists.
    OCDMCfgPlugIn: Archive: /u01/app/oracle/product/11.1.0/db_1/ocdm/pdm/relational/sample_schema/ocdm_sample.dmp.zip
    OCDMCfgPlugIn: inflating: /u01/app/oracle/product/11.1.0/db_1/ocdm/install_tmp/ocdm_sample.dmp
    OCDMCfgPlugIn: 2011_02_28_11_24_30 10 % complete
    OCDMCfgPlugIn: Importing OCDM sample schema
    ==================end of log File ========================================

    Hi Please check my answers
    1) How to login to Analytics after OBIEE 11gR2 installed on Linux - ( in our case we use user as Administrator and tried password same as username, even checked with the user weblogic and other but no success. Please provide us the information which give details(document) about the Administartion of OBIEE 11gR2 on Linux).
    The current OCDM version does not support BIEE 11g, so you need to install BIEE 10g. In next release(will be available soon), OCDM will support BIEE 11g.
    2) The issue with installation of OCDM Sampple Reports though successful installation of OCDM Data Model.(First Installation Type from OCDM Installer)
    The importing will take a long time, you can login database with ocdm_sample_sys/ocdm_sample_sys, and use "select count(*) from tabs;" to monitor the import process.

Maybe you are looking for

  • Event Handling in tabbedPane

    I m using one Class extending JFrame. within this class I have instatiated one JTabbedPane object .I have added several PanelClass (Classes extending JPanel). JTabbedPane object is used in setContentPane() of the base Class. How can I handle the even

  • Sales order line delete fails for treetype=S line items

    SBO v8.8 PL17 In a Windows Console DI application, I need to delete lines that have TreeType=S from a Sales Order. I get an error message that the Delete Line Failed and no other details for the error. I have no trouble deleting the line in the SBO c

  • Maximum allowable input for select-options

    Hi All,     Can we enter any number of values in select-options on the selection screen. What is the limit on the number of values that can be given for select options. For example if the limit for a select-options field is 100000 and if i want to gi

  • Font rendering in certain GTK+ 3 applications

    In some GTK+ 3 applications, fonts appear to have a slightly reddish fuzz and seem a bit unclear; this does not differ by font, so I'm assuming it's a font rendering issue. Is there any known solution to this? I searched around a bit and couldn't fin

  • ABST2 - Not run before.

    Hi All, Can you provide some perspective and guidance regarding the ABST2 transaction.  I started a new job last week and the company I am with has never run the ABST2 and reconciled the balances that appear on this transaction.  Their fiscal year en