Problem in creating a new entry in Goods Issue via DI

Good Day Experts,
Im having trouble creating Goods Issue Document Entry via DI API. The code works fine,
it just returns "-1150 (Invelid Index)" after adding the GI Document. I would like to know
if there's something i missed out?
Below is my sample code for the creation of GI :
        Dim goodsIssue As SAPbobsCOM.Documents = Nothing
        Dim lRetCode As Long
        Try
            goodsIssue = _company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInventoryGenExit)
            With goodsIssue
                '// HEADER
                .DocNum = GetDocEntry()
                .Reference1 = _InventoryTransferLOBO.DocNumber
                .HandWritten = SAPbobsCOM.BoYesNoEnum.tNO
                .DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
                .DocDate = _InventoryTransferLOBO.CreatedDate
                .DocDueDate = _InventoryTransferLOBO.CreatedDate
                '// DETAILS
                For x As Integer = 0 To _InvTransLOItems.Rows.Count - 1
                    .Lines.ItemCode = _InvTransLOItems.Rows(x).Item("U_ItemNo")
                    .Lines.ItemDescription = _InvTransLOItems.Rows(x).Item("U_ItemDesc") 'drITLOItems("U_ItemDesc")
                    .Lines.WarehouseCode = _InvTransLOItems.Rows(x).Item("U_FWhse") 'drITLOItems("U_FWhse")
                    .Lines.Quantity = _InvTransLOItems.Rows(x).Item("U_Qty") 'drITLOItems("U_Qty")
                    .Lines.AccountCode = GetAccountCode(_InvTransLOItems.Rows(x).Item("U_FWhse")) 'drITLOItems("U_FWhse"))
                    If x < _InvTransLOItems.Rows.Count - 1 Then .Lines.Add()
                Next x
                lRetCode = .Add()
            End With
            If Not lRetCode = 0 Then
                _sboInventoryTransferLO.MessageBox("Error: " & lRetCode & ", " & _company.GetLastErrorDescription)
            End If
        Catch ex As Exception
        End Try
Thanks in advenced
Tyron James Gono

Hi Sir Owen,
Thank you so much for your reply, it still doesn't solved the problem. In my code below
i repositioned the Line.Add Property and also added the "Lines.SetCurrentLine(Index)".
It still returns the message "-1150 Invalid Index".
Is it the row items im having a problem with? or the header itself?
                For x As Integer = 0 To _InvTransLOItems.Rows.Count - 1
                    If x > 0 Then .Lines.Add()
                    .Lines.SetCurrentLine(x)
                    .Lines.ItemCode = _InvTransLOItems.Rows(x).Item("U_ItemNo")
                    .Lines.ItemDescription = _InvTransLOItems.Rows(x).Item("U_ItemDesc") 'drITLOItems("U_ItemDesc")
                    .Lines.WarehouseCode = _InvTransLOItems.Rows(x).Item("U_FWhse") 'drITLOItems("U_FWhse")
                    .Lines.Quantity = _InvTransLOItems.Rows(x).Item("U_Qty") 'drITLOItems("U_Qty")
                    .Lines.AccountCode = GetAccountCode(_InvTransLOItems.Rows(x).Item("U_FWhse")) 'drITLOItems("U_FWhse"))
                Next x
                lRetCode = .Add()
Regards,
Tyron

Similar Messages

  • Hi all, i'm new and facing a problem while creating a new file for Xcode. I can't select the box "with XIB for user interface" if the subclass is "UIViewController".this problem happen after i upgrade Xcode to 4.6 version.Appreciate for any help rendered.

    Hi all, i'm new to Mac book & Xcode. I'm learning and facing problems while creating a new file for Xcode. Before i upgrade the software, i have no issue to create simple steps in apps. After upgrade Xcode to 4.6 version, i'm facing lot's of issue eg.
    1) "the identity "iphone developer" doesn't match any valid certificate/ private key pair",
    2) can't select the box "with XIB for user interface" if the subclass is "UIViewController"..
    Appreciate for any help rendered.

    Mikko777 wrote:So what is the best?
    I wouldn't judge. I've been to Arch for a week, you know? But as said, it's VERY close to it.
    What I dislike after a week is makepkg not handling dependencies automatically (which would be overhead, so probably not appropriate).
    Mikko777 wrote:Also theres KDEmod for modular kde, dunno if its for 64 bits tho.
    Don't actually need that as said ... I see no real benefit of having that other than not beeing a KDE user or having Gentoos useflags.
    Mikko777 wrote:PS:You produce a lot of text and welcome smile
    Yeah. Wonder why I'm still employed? So do I ...

  • Accounting entries behind good issue

    Hi,
         I am quite new to SD and i have some questions that I hoped you will certainly answer.
    1. In terms of accounting what entries does good issue generate?
    2. How do you configure the accounts to be posted for good issue?
    3. In case there is no inventory management set up for a company is it useful to set up outbound delivery  and good issue in its sales and distribution process.
    4. Is it possible to have the client account debited and a provision account credited during goods issue and when invoicing have the provision account debited and sales a/c credited. If yes how do you set up the customising for goods issue.
    Thank you in advance for your answers.

    Hello,
    Please note the following answers to your questions:
    1. Cost of Goods Sold A/c Dr. (Will reflect in P & L A/c Debit side)
                 To Stock A/c Cr. (Will reflect on Assets side of balance sheet)
    2. Also suggested by Sai & Vasu above.
    3. If there is no Inventory Management in your company, then why do you want to create Delivery & PGI in Sales & Distribution. I have worked for a Project Based Company & we used to create Invoice directly from Sales Order. We had made settings in MM module such that while doing MIGO we would directly issue the goods to Projects. Or if there was stock in hand, that can be issued to Projects by hitting Consumption account.
    To sum it up, you dont need Delivery & PGI in Companies where there is no Inventory Management involved.
    4. In your suggestion, how would you hit the Cost of Goods Sold Account which is most important in Net profit calculations? Also it is against SAP standard functionality. Let the Customer Account hit only when Invoice is created. What is the business need to hit Customer Account while doing PGI?
    Hope this helps..
    Thanks,
    Jignesh Mehta

  • Create a new routing with BAPI BAPI_ROUTING_CREATE via JCo

    I try to create a new routing with BAPI BAPI_ROUTING_CREATE via JCo.
    I filled all necessary parameters. I also realized a commit_work. I get in the RETURN parameter of the BAPI the Message "S 000 Routing N/50001641/01". But the routing isn't in the database. Other JCo programs I wrote (create material master or costumer order) are working very well.
    Have anyone an idea?
    Thanks Jörg
    Here's my coding:
    public void createArbeitsplan() {
              doLogin();
    //          connectionAttributes();
              Plan plan = new Plan();
              for (int i = 0; i < planList.size(); i++)
                   plan = (Plan) planList.get(i);
                   //Ein Function-Objekt erzeugen
                   String bapi = "BAPI_ROUTING_CREATE";
                   JCO.Function savePlan = null;          
                   try { savePlan = this.createFunction(bapi); }
                   catch(Exception ex) { ex.printStackTrace(); System.exit(1); }
                   if(savePlan == null) { System.err.println(bapi + " not found in SAP"); System.exit(1); }
                   //Import und Tabellen füllen
                   // Plankopf
                   JCO.Table headData = savePlan.getTableParameterList().getTable("TASK");
                   headData.appendRow();
                   headData.setValue(plan.kurztext,"DESCRIPTION");
                   headData.setValue("1","TASK_LIST_USAGE");
                   headData.setValue(werks,"PLANT");
                   headData.setValue("4","TASK_LIST_STATUS");
                   headData.setValue("ST","TASK_MEASURE_UNIT");
                   headData.setValue("001","RESP_PLANNER_GROUP");
                   headData.setValue("20070101","VALID_FROM");
                   headData.setValue("20991231","VALID_TO_DATE");
                   headData.setValue("1","LOT_SIZE_FROM");
                   headData.setValue("99999999","LOT_SIZE_TO");
                   // Materialzuordnung
                   JCO.Table materialAlloc = savePlan.getTableParameterList().getTable("MATERIALTASKALLOCATION");
                   materialAlloc.appendRow();
                   materialAlloc.setValue(plan.material,"MATERIAL");
                   materialAlloc.setValue(werks,"PLANT");
                   materialAlloc.setValue("20070101","VALID_FROM");
                   materialAlloc.setValue("20991231","VALID_TO_DATE");
                   materialAlloc.setValue("1","GROUP_COUNTER");
                   // Vorgänge
                   JCO.Table operationData = savePlan.getTableParameterList().getTable("OPERATION");
                   for (int j = 0; j < plan.getAnzahl(); j++) {
                        operationData.appendRow();
                        operationData.setValue(plan.getVorgang(j).vorgang,"ACTIVITY");
                        operationData.setValue(plan.getVorgang(j).steuschl,"CONTROL_KEY");
                        operationData.setValue(plan.getVorgang(j).arbplatz,"WORK_CNTR");
                        operationData.setValue("1111","WORK_CNTR");
                        operationData.setValue(plan.getVorgang(j).text,"DESCRIPTION");
                        operationData.setValue(plan.getVorgang(j).basismenge,"BASE_QUANTITY");
                        operationData.setValue(plan.getVorgang(j).vw1,"STD_VALUE_01");
                        operationData.setValue(plan.getVorgang(j).vw2,"STD_VALUE_02");
                        operationData.setValue(plan.getVorgang(j).vw3,"STD_VALUE_03");
                        operationData.setValue(plan.getVorgang(j).ze1,"STD_UNIT_01");
                        operationData.setValue(plan.getVorgang(j).ze2,"STD_UNIT_02");
                        operationData.setValue(plan.getVorgang(j).ze3,"STD_UNIT_03");
                        operationData.setValue("1","DENOMINATOR");
                        operationData.setValue("1","NOMINATOR");
                        operationData.setValue("20070101","VALID_FROM");
                        operationData.setValue("20991231","VALID_TO_DATE");
                        operationData.setValue("ST","OPERATION_MEASURE_UNIT");
                   // Testflag
                   JCO.Structure test = savePlan.getImportParameterList().getStructure("TESTRUN");
                   test.setValue(" ","BAPIFLAG");
                   //BAPI ausführen (incl. Commit)
                   mConnection.execute(savePlan);
                   JCO.Function commit = null;
                   try {commit = this.createFunction("BAPI_TRANSACTION_COMMIT"); }
                   catch (Exception ex) { ex.printStackTrace();System.exit(1); }
                   JCO.ParameterList input = commit.getImportParameterList();
                   input.setValue("X","WAIT");
                   mConnection.execute(commit);
                   //Messages vom SAP-System holen
                   JCO.Table jcoReturn = savePlan.getTableParameterList().getTable("RETURN");
                   for (int k = 0; k < jcoReturn.getNumRows(); k++)
                        jcoReturn.setRow(i);
    //                    System.out.println(jcoReturn.getField("MESSAGE").getValue());
                        System.out.println(jcoReturn.getField("TYPE").getValue());
                        System.out.println(jcoReturn.getField("NUMBER").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V1").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V2").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V3").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V4").getValue());
                   JCO.Structure output = commit.getExportParameterList().getStructure("RETURN");;
                   System.out.println(output.getString("MESSAGE"));
                   System.out.println(output.getString("TYPE"));
                   System.out.println(output.getString("NUMBER"));
                   System.out.println(output.getString("MESSAGE_V1"));
              closeConnectionToSAP();
              System.exit(1);

    Hi,
    perhaps you could use
    BAPI_HRMASTER_SAVE_REPL_MULT
    Regards
    Bernd

  • Different movement types for goods issue via outbound delivery

    Hi gurus,
    How can I use different movement types for goods issue via outbound delivery?
    Thanks&Best Regards,
    Burcu

    To use different schedule lines, we need different item types and different document types. Is that right?
    Is there a user exit in outbound delivery to post goods issue?
    Thanks...

  • Error message popped up when goods issue via mb1a

    Hi guru:
    I encountered the error message when I am trying to goods issue via mb1a as below:
    Document 1000041 / 0000000074 does not contain any
    selectable items
    How to solve?

    check are you maintained the backflush indicator in Component overview, Remove the backflush indicator and do the Posting In MB1a, or while confirming DO the goods movement If you want Back flush in Co11n
    and also check final issue is ticked or not in component overview

  • Problems when creating a new instance of an Input parameter for a REM

    I am working in a small demo which calls a Remote Enable Function Module in order to read data from the back end system. Since the function module I need to call ("BP_BUPA_SEARCH_BY_USER") is not Remote Enable I created a copy of it and made it Remote Enable ("Z_BUPA_SEARCH_BY_USER"). I have created the model within webdynpro without any problems but when my application reaches the line where I create a new instance of the object Z_Bupa_Search_By_User_Input (see below the source code), just before to call the remote function, the application stops there. I have exactly the same code in another bapi calls and it works fine. I am wondering if my problem has anything to do with the fact the function module i am calling is the function module I created. Any advice is very welcome.
    Regards,
    Diego.
    Source Code:
    msg.reportSuccess("------>>>");  "THIS LINE IS PRINTED
    Z_Bupa_Search_By_User_Input searchByUser =
    new Z_Bupa_Search_By_User_Input();  "PROGRAM STOPS HERE          
    msg.reportSuccess("<<<------");  "THIS LINE DOES NOT                
    wdContext.nodeZ_Bupa_Search_By_User_Input().bind(searchByUser);
    msg.reportSuccess("<----
    msg.reportSuccess("if (Internet_User != null)");
    if (Internet_User != null) {
    Usselmodbe ir_user = new Usselmodbe();
    ir_user.setSign("I");
    ir_user.setOption("EQ");
    ir_user.setLow(Internet_User);
    searchByUser.addIr_User(ir_user);

    Hi,
    Try to get some more error info, e.g. like this:
    try {
    Z_Bupa_Search_By_User_Input searchByUser =
    new Z_Bupa_Search_By_User_Input(); "PROGRAM STOPS HERE
    } catch (Exception e) {
        msg.raiseException(e.getMessage(), true);
    msg.reportSuccess("<<<------"); "THIS LINE DOES NOT
    good luck,
    Roelof

  • Problem while creating a new track

    Hi,
    When we create a new track, we get the following exception:
    Unexpected error; inform your system administrator: com.sap.cms.util.exception.CMSUnexpectedException: com.tssap.dtr.client.lib.cms.DTR.connect(Ljava/lang/String;Lcom/tssap/dtr/client/lib/protocol/ISessionContext;)V
    We have created a new product and a software component and defined the dependencies for the software component (SAP_BUILDT, SAP_JTECHS & SAP-JEE).  In the CMS, we have done Update CMS.  We are able to see the software component and have added the same in the 'Software Components for Development'.  All the usage dependencies are clearly visible.
    When we save the track, we get the above exception.  Can any one of you please respond this query?
    Thanks in advance.
    Regards,
    Ravi

    Hi Ravi,
    We enocounted a similar problem once.  For our situation it was a missing DTR url in the lanscape configurator.  To check/fix this do the following:
    1) login to CMS
    2) click on the Landscape Configurator link
    3) if not already selected, choose the track in the list of tracks on the left
    4) click on the Track Data tab for the selected track
    5) verify that the Design Time Repository URL is specified and correct (e.g. http://<server>:<port>/dtr
    Save the configuration.
    Hope this helps.

  • Problem in creating a new track

    Hi,
    I am trying to create a new track in NWDi like this
    1.created a product,sofware unit and software component and defined the dependencies(required components like BUILDT,JTECHS etc)
    2.Went to landscape configurator and clicked on track data and enter the track name and add the sc created .
    3.After adding the sc created required components came automatically in the track data screen.
    4.i saved the track data then it says track is created
    5.I went to NWDS and trying to import that track.
    6.i can see all the components in that track but inside each component like BUILDT i dont see any sda files(external libraries or jar files) they are just empty.
    Did i miss any step here in creating the track
    please help me in resolving this issue
    Bala

    I followed the same steps as mentioned below
    1. you are running JDI on SPS12
    2. you have defined your software component "mycomp" at the SLD
    3. you have declared the three SCs BUILDT, JTECHS, JEE as
    dependent SCs for "mycomp" at the SLD
    4. after these you did an "update CMS" at the "domain data" configuration
    5. you created your track and choose for your SCs "mycomp" as software component.
    and now:
    6. When i added the developed component it brought all the required (JTECHS,BUILDT,JEE)components in the Landscape configurator. You already defined the usage of these SCs
    in the SLD at step 3.
    In older Versions of the JDI (e.g. SPS10) you saw after the choice
    of "mycomp" inside the track data also the dependent SCs. This is
    not the case any more in SPS13.
    Summary: only define your dependent SCs at the SLD, update CMS,
    remove the definition from you track directly and try again.
    But the problem is when i go to Transport Studio and checked in in check-in tab and after went to development tab and imported and after sometime it is saying import failed.And when i go to NWDS it is bringing all the scs in my trck but there are no libraries in my scs
    I did observe a problem in CBS for this new track
    when i go to CBS and select my track and look for DCs in JTECHS,JEE,BUILDT scs there are no DCS(0 dcs).
    I think if i can resolve this i can create a new track without any problems
    Please help me in resolving this issue

  • Problem in Creating a new account in Prometric

    When i m creating a new ID in Prometric 
    i Completely fill the form correctly and when i submit the form its gives me an error
    THE PAGE CANNOT BE DISPLAYED
    We apologize for the inconvenience. Please try again later. If the problem persists, please contact our webmaster.
    Plz Help on thi s
     

    i m still facing this problem. i try multuple browser like Chrome, Opera, Firefor IE all of then given me the same error 
    THE PAGE CANNOT BE DISPLAYED
    We apologize for the inconvenience. Please try again later. If the problem persists, please contact our webmaster.

  • Problem when creating a new Linux VM

    Hi,
    When I create a new Ubuntu linux from ISO, I received error messages blow. But it's ok for me to create a Windows XP/2K host.
    I search the forum. My xen_caps are: xen-3.0-x86_64 xen-3.0-x86_32p hvm-3.0-x86_32 hvm-3.0-x86_32p hvm-3.0-x86_64
    Updates: I found I can run CentoOS without any problem. Is this means OVS don't support ubuntu? Anyone have the same problem?
    Thanks
    >
    Start - /OVS/running_pool/34_ubuntest
    PowerOn successfully.
    Update server -192.168.0.226
    Update Port - 0.0
    Update VM Status - Running
    Configure CPU Cap
    Set CPU Cap: failed:<Exception: failed:<Exception: ['xm', 'sched-credit', '-d', '34_ubuntest', '-c', '0'] => Error: Domain '34_ubuntest' does not exist.
    >
    StackTrace:
    File "/opt/ovs-agent-2.3/OVSXXenVMConfig.py", line 2500, in xen_set_cpu_cap
    run_cmd(args=['xm',
    File "/opt/ovs-agent-2.3/OVSCommons.py", line 85, in run_cmd
    raise Exception('%s => %s' % (cmdlist, p.childerr.read()))
    >
    StackTrace:
    File "/opt/ovs-agent-2.3/OVSSiteVMConfig.py", line 1110, in set_vm_cpu_cap
    if not rs.startswith("success"): raise Exception(rs)
    >
    Error log in xend.log
    [2011-01-07 12:29:05 2892] DEBUG (XendDomainInfo:95) XendDomainInfo.create(['vm', ['name', '34_ubuntest'], ['memory', '512'], ['maxmem', '512'], ['vcpus', '1'], ['uuid', '6492f5f8-9924-3e97-de9b-b0ecefe7a391'], ['on_poweroff', 'destroy'], ['on_reboot', 'destroy'], ['on_crash', 'destroy'], ['image', ['hvm', ['kernel', '/usr/lib/xen/boot/hvmloader'], ['device_model', '/usr/lib/xen/bin/qemu-dm'], ['boot', 'd'], ['acpi', '1'], ['apic', '1'], ['pae', '1'], ['vnc', '1'], ['vncunused', '1'], ['vnclisten', '0.0.0.0'], ['vncpasswd', 'XXXXXXXX']]], ['device', ['vbd', ['dev', 'hda:disk'], ['uname', 'file:/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/running_pool/34_ubuntest/System.img'], ['mode', 'w']]], ['device', ['vbd', ['dev', 'hdc:cdrom'], ['uname', 'file:/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/iso_pool/linux/ubuntu1010d.iso'], ['mode', 'r']]], ['device', ['vif', ['mac', '00:16:3E:55:EA:4B'], ['bridge', 'xenbr0'], ['script', '/etc/xen/scripts/vif-bridge'], ['type', 'ioemu']]]])
    [2011-01-07 12:29:05 2892] DEBUG (XendDomainInfo:2327) XendDomainInfo.constructDomain
    [2011-01-07 12:29:05 2892] DEBUG (balloon:181) Balloon: 981528 KiB free; need 4096; done.
    [2011-01-07 12:29:05 2892] DEBUG (XendDomain:452) Adding Domain: 12
    [2011-01-07 12:29:05 2892] DEBUG (XendDomainInfo:2528) XendDomainInfo.initDomain: 12 256
    [2011-01-07 12:29:05 2892] DEBUG (image:317) Stored a VNC password for vfb access
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: boot, val: d
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: fda, val: None
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: fdb, val: None
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: soundhw, val: None
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: localtime, val: None
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: serial, val: None
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: std-vga, val: None
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: isa, val: None
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: acpi, val: 1
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: usb, val: None
    [2011-01-07 12:29:05 2892] DEBUG (image:809) args: usbdevice, val: None
    [2011-01-07 12:29:05 2892] INFO (image:745) Need to create platform device.[domid:12]
    [2011-01-07 12:29:05 2892] DEBUG (XendDomainInfo:2552) initDomain:shadowmemory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
    [2011-01-07 12:29:05 2892] DEBUG (balloon:181) Balloon: 980116 KiB free; need 535552; done.
    [2011-01-07 12:29:05 2892] INFO (image:170) buildDomain os=hvm dom=12 vcpus=1
    [2011-01-07 12:29:05 2892] DEBUG (image:862) domid = 12
    [2011-01-07 12:29:05 2892] DEBUG (image:863) image = /usr/lib/xen/boot/hvmloader
    [2011-01-07 12:29:05 2892] DEBUG (image:864) store_evtchn = 2
    [2011-01-07 12:29:05 2892] DEBUG (image:865) memsize = 512
    [2011-01-07 12:29:05 2892] DEBUG (image:866) target = 512
    [2011-01-07 12:29:06 2892] DEBUG (image:867) vcpus = 1
    [2011-01-07 12:29:06 2892] DEBUG (image:868) acpi = 1
    [2011-01-07 12:29:06 2892] DEBUG (image:869) apic = 1
    [2011-01-07 12:29:06 2892] INFO (XendDomainInfo:2189) createDevice: vfb : {'vncunused': '1', 'other_config': {'vncunused': '1', 'vncpasswd': 'XXXXXXXX', 'vnclisten': '0.0.0.0', 'vnc': '1'}, 'vnc': '1', 'uuid': '2f93d706-c2d1-e638-d2eb-1a5b7aab70a0', 'vnclisten': '0.0.0.0', 'vncpasswd': 'XXXXXXXX'}
    [2011-01-07 12:29:06 2892] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/12/0'} to /local/domain/12/device/vfb/0.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': '34_ubuntest', 'frontend': '/local/domain/12/device/vfb/0', 'uuid': '2f93d706-c2d1-e638-d2eb-1a5b7aab70a0', 'frontend-id': '12', 'vnclisten': '0.0.0.0', 'vncpasswd': 'XXXXXXXX', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/12/0.
    [2011-01-07 12:29:06 2892] INFO (XendDomainInfo:2189) createDevice: vbd : {'uuid': '6848014f-eb0d-4028-765d-8c2a423f12eb', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda:disk', 'uname': 'file:/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/running_pool/34_ubuntest/System.img', 'mode': 'w'}
    [2011-01-07 12:29:06 2892] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/12/768'} to /local/domain/12/device/vbd/768.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:97) DevController: writing {'domain': '34_ubuntest', 'frontend': '/local/domain/12/device/vbd/768', 'uuid': '6848014f-eb0d-4028-765d-8c2a423f12eb', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/running_pool/34_ubuntest/System.img', 'mode': 'w', 'online': '1', 'frontend-id': '12', 'type': 'file'} to /local/domain/0/backend/vbd/12/768.
    [2011-01-07 12:29:06 2892] INFO (XendDomainInfo:2189) createDevice: vbd : {'uuid': 'a17d2f5d-c2ff-8ae4-2529-d3736866d4db', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/iso_pool/linux/ubuntu1010d.iso', 'mode': 'r'}
    [2011-01-07 12:29:06 2892] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/12/5632'} to /local/domain/12/device/vbd/5632.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:97) DevController: writing {'domain': '34_ubuntest', 'frontend': '/local/domain/12/device/vbd/5632', 'uuid': 'a17d2f5d-c2ff-8ae4-2529-d3736866d4db', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/iso_pool/linux/ubuntu1010d.iso', 'mode': 'r', 'online': '1', 'frontend-id': '12', 'type': 'file'} to /local/domain/0/backend/vbd/12/5632.
    [2011-01-07 12:29:06 2892] INFO (XendDomainInfo:2189) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3E:55:EA:4B', 'type': 'ioemu', 'uuid': '7ed50e95-a9b4-6b3a-c325-56645c7b43d3', 'script': '/etc/xen/scripts/vif-bridge'}
    [2011-01-07 12:29:06 2892] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/12/0'} to /local/domain/12/device/vif/0.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': '34_ubuntest', 'handle': '0', 'uuid': '7ed50e95-a9b4-6b3a-c325-56645c7b43d3', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3E:55:EA:4B', 'frontend-id': '12', 'state': '1', 'online': '1', 'frontend': '/local/domain/12/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/12/0.
    [2011-01-07 12:29:06 2892] INFO (image:391) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '12', '-domain-name', '34_ubuntest', '-videoram', '4', '-vnc', '0.0.0.0:0,password', '-vncunused', '-vcpus', '1', '-boot', 'd', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3E:55:EA:4B,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap12.0,bridge=xenbr0', '-M', 'xenfv']
    [2011-01-07 12:29:06 2892] INFO (image:440) device model pid: 3761
    [2011-01-07 12:29:06 2892] DEBUG (XendDomainInfo:3089) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '6492f5f8-9924-3e97-de9b-b0ecefe7a391', 'on_reboot': 'destroy', 'start_time': '1294374546.09', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'destroy', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (hpet 0) (vnclisten 0.0.0.0) (loader /usr/lib/xen/boot/hvmloader) (vncunused 1) (xen_platform_pci 1) (boot d) (rtc_timeoffset 0) (vncpasswd XXXXXX) (pae 1) (vpt_align 1) (viridian 0) (acpi 1) (timer_mode 1) (vnc 1) (apic 1) (device_model /usr/lib/xen/bin/qemu-dm) (notes (SUSPEND_CANCEL 1)))', 'name': '34_ubuntest'}
    [2011-01-07 12:29:06 2892] DEBUG (XendDomainInfo:1640) Storing domain details: {'console/port': '3', 'name': '34_ubuntest', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/6492f5f8-9924-3e97-de9b-b0ecefe7a391', 'domid': '12', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu'}
    [2011-01-07 12:29:06 2892] INFO (image:528) waiting for sentinel_fifo
    [2011-01-07 12:29:06 2892] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/12/0'} to /local/domain/12/device/console/0.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:97) DevController: writing {'domain': '34_ubuntest', 'frontend': '/local/domain/12/device/console/0', 'uuid': '4f7921bb-f508-f6b9-b08b-4b94d8309ba2', 'frontend-id': '12', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/12/0.
    [2011-01-07 12:29:06 2892] DEBUG (XendDomainInfo:1727) XendDomainInfo.handleShutdownWatch
    [2011-01-07 12:29:06 2892] DEBUG (DevController:139) Waiting for devices vif.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:144) Waiting for 0.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vif/12/0/hotplug-status.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:643) hotplugStatusCallback 1.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:139) Waiting for devices vscsi.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:139) Waiting for devices vbd.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:144) Waiting for 768.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/12/768/hotplug-status.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/12/768/hotplug-status.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:643) hotplugStatusCallback 1.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:144) Waiting for 5632.
    [2011-01-07 12:29:06 2892] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/12/5632/hotplug-status.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/12/5632/hotplug-status.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:643) hotplugStatusCallback 1.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:139) Waiting for devices irq.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:139) Waiting for devices vkbd.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:139) Waiting for devices vfb.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:139) Waiting for devices console.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:144) Waiting for 0.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:139) Waiting for devices pci.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:139) Waiting for devices ioports.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:139) Waiting for devices tap.
    [2011-01-07 12:29:07 2892] DEBUG (DevController:139) Waiting for devices vtpm.
    [2011-01-07 12:29:07 2892] INFO (XendDomain:1180) Domain 34_ubuntest (12) unpaused.
    [2011-01-07 12:29:09 2892] WARNING (XendDomainInfo:1907) Domain has crashed: name=34_ubuntest id=12.
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:2757) XendDomainInfo.destroy: domid=12
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:2230) Destroying device model
    [2011-01-07 12:29:09 2892] INFO (image:553) 34_ubuntest device model terminated
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:2237) Releasing devices
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:2250) Removing vif/0
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:1144) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:2250) Removing vbd/768
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:1144) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:2250) Removing vbd/5632
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:1144) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:2250) Removing vfb/0
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:1144) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:2250) Removing console/0
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:1144) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:2235) No device model
    [2011-01-07 12:29:09 2892] DEBUG (XendDomainInfo:2237) Releasing devices
    [2011-01-07 12:33:41 2892] DEBUG (XendDomainInfo:95) XendDomainInfo.create(['vm', ['name', '34_ubuntest'], ['memory', '512'], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['vcpus', 1], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['uuid', '6492f5f8-9924-3e97-de9b-b0ecefe7a391'], ['image', ['hvm', ['kernel', '/usr/lib/xen/boot/hvmloader'], ['videoram', 4], ['device_model', '/usr/lib/xen/bin/qemu-dm'], ['pae', 1], ['vcpus', 1], ['boot', 'c'], ['fda', ''], ['fdb', ''], ['timer_mode', 0], ['localtime', 0], ['serial', 'pty'], ['stdvga', 0], ['isa', 0], ['nographic', 0], ['soundhw', ''], ['vnc', 1], ['vncunused', 1], ['vncconsole', 1], ['vnclisten', '0.0.0.0'], ['xauthority', '//.Xauthority'], ['rtc_timeoffset', 0], ['monitor', 0], ['acpi', 1], ['apic', 1], ['usb', 0], ['usbdevice', ''], ['keymap', 'en-us'], ['pci', []], ['hpet', 0], ['guest_os_type', 'default'], ['hap', 1], ['cpuid', []], ['cpuid_check', []], ['viridian', 0], ['pci_msitranslate', 1], ['vpt_align', 1], ['pci_power_mgmt', 0], ['xen_platform_pci', 1], ['vncpasswd', 'XXXXXXXX']]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/running_pool/34_ubuntest/System.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/iso_pool/linux/ubuntu1010d.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['mac', '00:16:3E:55:EA:4B'], ['type', 'ioemu']]]])
    [2011-01-07 12:33:41 2892] DEBUG (XendDomainInfo:2327) XendDomainInfo.constructDomain
    [2011-01-07 12:33:41 2892] DEBUG (balloon:181) Balloon: 981528 KiB free; need 4096; done.
    [2011-01-07 12:33:41 2892] DEBUG (XendDomain:452) Adding Domain: 13
    [2011-01-07 12:33:41 2892] DEBUG (XendDomainInfo:2528) XendDomainInfo.initDomain: 13 256
    [2011-01-07 12:33:41 2892] DEBUG (image:317) Stored a VNC password for vfb access
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: boot, val: c
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: fda, val: None
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: fdb, val: None
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: soundhw, val: None
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: localtime, val: 0
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: serial, val: ['pty']
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: std-vga, val: 0
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: isa, val: 0
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: acpi, val: 1
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: usb, val: 0
    [2011-01-07 12:33:41 2892] DEBUG (image:809) args: usbdevice, val: None
    [2011-01-07 12:33:41 2892] INFO (image:745) Need to create platform device.[domid:13]
    [2011-01-07 12:33:41 2892] DEBUG (XendDomainInfo:2552) initDomain:shadowmemory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
    [2011-01-07 12:33:41 2892] DEBUG (balloon:181) Balloon: 980116 KiB free; need 535552; done.
    [2011-01-07 12:33:41 2892] INFO (image:170) buildDomain os=hvm dom=13 vcpus=1
    [2011-01-07 12:33:41 2892] DEBUG (image:862) domid = 13
    [2011-01-07 12:33:41 2892] DEBUG (image:863) image = /usr/lib/xen/boot/hvmloader
    [2011-01-07 12:33:41 2892] DEBUG (image:864) store_evtchn = 2
    [2011-01-07 12:33:41 2892] DEBUG (image:865) memsize = 512
    [2011-01-07 12:33:41 2892] DEBUG (image:866) target = 512
    [2011-01-07 12:33:41 2892] DEBUG (image:867) vcpus = 1
    [2011-01-07 12:33:41 2892] DEBUG (image:868) acpi = 1
    [2011-01-07 12:33:41 2892] DEBUG (image:869) apic = 1
    [2011-01-07 12:33:41 2892] INFO (XendDomainInfo:2189) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vncpasswd': 'XXXXXXXX', 'vnclisten': '0.0.0.0', 'vnc': '1'}, 'vnc': '1', 'uuid': '4f92dca8-af4b-a2e6-01e7-ad824af0231a', 'vnclisten': '0.0.0.0', 'vncpasswd': 'XXXXXXXX'}
    [2011-01-07 12:33:41 2892] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/13/0'} to /local/domain/13/device/vfb/0.
    [2011-01-07 12:33:41 2892] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': '34_ubuntest', 'frontend': '/local/domain/13/device/vfb/0', 'uuid': '4f92dca8-af4b-a2e6-01e7-ad824af0231a', 'frontend-id': '13', 'vnclisten': '0.0.0.0', 'vncpasswd': 'XXXXXXXX', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/13/0.
    [2011-01-07 12:33:41 2892] INFO (XendDomainInfo:2189) createDevice: vbd : {'uuid': '5228a931-a5c1-af1f-debb-177193e27142', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/running_pool/34_ubuntest/System.img', 'mode': 'w'}
    [2011-01-07 12:33:41 2892] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/13/768'} to /local/domain/13/device/vbd/768.
    [2011-01-07 12:33:41 2892] DEBUG (DevController:97) DevController: writing {'domain': '34_ubuntest', 'frontend': '/local/domain/13/device/vbd/768', 'uuid': '5228a931-a5c1-af1f-debb-177193e27142', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/running_pool/34_ubuntest/System.img', 'mode': 'w', 'online': '1', 'frontend-id': '13', 'type': 'file'} to /local/domain/0/backend/vbd/13/768.
    [2011-01-07 12:33:41 2892] INFO (XendDomainInfo:2189) createDevice: vbd : {'uuid': '91e7374f-3645-8a80-9fdb-18a8aec9087a', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/iso_pool/linux/ubuntu1010d.iso', 'mode': 'r'}
    [2011-01-07 12:33:41 2892] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/13/5632'} to /local/domain/13/device/vbd/5632.
    [2011-01-07 12:33:41 2892] DEBUG (DevController:97) DevController: writing {'domain': '34_ubuntest', 'frontend': '/local/domain/13/device/vbd/5632', 'uuid': '91e7374f-3645-8a80-9fdb-18a8aec9087a', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/var/ovs/mount/28E0F7E7FF4A4D15BD483AF079D97194/iso_pool/linux/ubuntu1010d.iso', 'mode': 'r', 'online': '1', 'frontend-id': '13', 'type': 'file'} to /local/domain/0/backend/vbd/13/5632.
    [2011-01-07 12:33:41 2892] INFO (XendDomainInfo:2189) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3E:55:EA:4B', 'type': 'ioemu', 'uuid': '7dee33df-7468-e35b-0640-3b1acb155312'}
    [2011-01-07 12:33:41 2892] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/13/0'} to /local/domain/13/device/vif/0.
    [2011-01-07 12:33:41 2892] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': '34_ubuntest', 'handle': '0', 'uuid': '7dee33df-7468-e35b-0640-3b1acb155312', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3E:55:EA:4B', 'frontend-id': '13', 'state': '1', 'online': '1', 'frontend': '/local/domain/13/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/13/0.
    [2011-01-07 12:33:41 2892] INFO (image:391) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '13', '-domain-name', '34_ubuntest', '-videoram', '4', '-k', 'en-us', '-vnc', '0.0.0.0:0,password', '-vncunused', '-vcpus', '1', '-boot', 'c', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3E:55:EA:4B,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap13.0,bridge=xenbr0', '-M', 'xenfv']
    [2011-01-07 12:33:41 2892] INFO (image:440) device model pid: 5712
    [2011-01-07 12:33:41 2892] DEBUG (XendDomainInfo:3089) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '6492f5f8-9924-3e97-de9b-b0ecefe7a391', 'on_reboot': 'restart', 'start_time': '1294374821.85', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (vnclisten 0.0.0.0) (loader /usr/lib/xen/boot/hvmloader) (vncconsole 1) (serial pty) (vncunused 1) (xen_platform_pci 1) (boot c) (rtc_timeoffset 0) (vncpasswd XXXXXX) (pci ()) (pae 1) (vpt_align 1) (hap 1) (viridian 0) (acpi 1) (localtime 0) (timer_mode 0) (vnc 1) (nographic 0) (guest_os_type default) (pci_msitranslate 1) (apic 1) (monitor 0) (device_model /usr/lib/xen/bin/qemu-dm) (keymap en-us) (pci_power_mgmt 0) (usb 0) (xauthority //.Xauthority) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': '34_ubuntest'}
    [2011-01-07 12:33:41 2892] INFO (image:528) waiting for sentinel_fifo
    [2011-01-07 12:33:41 2892] DEBUG (XendDomainInfo:1640) Storing domain details: {'console/port': '3', 'name': '34_ubuntest', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/6492f5f8-9924-3e97-de9b-b0ecefe7a391', 'domid': '13', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu'}
    [2011-01-07 12:33:41 2892] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/13/0'} to /local/domain/13/device/console/0.
    [2011-01-07 12:33:41 2892] DEBUG (DevController:97) DevController: writing {'domain': '34_ubuntest', 'frontend': '/local/domain/13/device/console/0', 'uuid': '09bfaba7-4a64-c238-10f6-e475413d4474', 'frontend-id': '13', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/13/0.
    [2011-01-07 12:33:41 2892] DEBUG (XendDomainInfo:1727) XendDomainInfo.handleShutdownWatch
    [2011-01-07 12:33:41 2892] DEBUG (DevController:139) Waiting for devices vif.
    [2011-01-07 12:33:41 2892] DEBUG (DevController:144) Waiting for 0.
    [2011-01-07 12:33:41 2892] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vif/13/0/hotplug-status.
    [2011-01-07 12:33:42 2892] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vif/13/0/hotplug-status.
    [2011-01-07 12:33:42 2892] DEBUG (DevController:643) hotplugStatusCallback 1.
    [2011-01-07 12:33:42 2892] DEBUG (DevController:139) Waiting for devices vscsi.
    [2011-01-07 12:33:42 2892] DEBUG (DevController:139) Waiting for devices vbd.
    [2011-01-07 12:33:42 2892] DEBUG (DevController:144) Waiting for 768.
    [2011-01-07 12:33:42 2892] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/13/768/hotplug-status.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/13/768/hotplug-status.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:643) hotplugStatusCallback 1.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:144) Waiting for 5632.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/13/5632/hotplug-status.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:643) hotplugStatusCallback 1.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:139) Waiting for devices irq.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:139) Waiting for devices vkbd.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:139) Waiting for devices vfb.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:139) Waiting for devices console.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:144) Waiting for 0.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:139) Waiting for devices pci.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:139) Waiting for devices ioports.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:139) Waiting for devices tap.
    [2011-01-07 12:33:43 2892] DEBUG (DevController:139) Waiting for devices vtpm.
    [2011-01-07 12:33:43 2892] INFO (XendDomain:1180) Domain 34_ubuntest (13) unpaused.
    [2011-01-07 12:33:45 2892] INFO (XendDomainInfo:1924) Domain has shutdown: name=34_ubuntest id=13 reason=poweroff.
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:2757) XendDomainInfo.destroy: domid=13
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:2230) Destroying device model
    [2011-01-07 12:33:45 2892] INFO (image:553) 34_ubuntest device model terminated
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:2237) Releasing devices
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:2250) Removing vif/0
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:1144) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:2250) Removing vbd/768
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:1144) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:2250) Removing vbd/5632
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:1144) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:2250) Removing vfb/0
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:1144) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:2250) Removing console/0
    [2011-01-07 12:33:45 2892] DEBUG (XendDomainInfo:1144) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
    Edited by: user3835659 on 2011-1-7 上午2:45
    Edited by: user3835659 on 2011-1-9 下午9:58

    In the past I've been successfully deploying a few Ubuntu guest VMs, Hardware Virtualized (never succeeded to put up a Paravirtualized guest though) for testing purposes.
    The latest version (10.4 maybe? Can't remember right now) worked without any sort of fixes or workarounds and was stable right away.
    Previous versions needed a fix in the "grub.conf" file, and I had to put in a "NOAPIC" option to tell the kernel to inhibit some kind of interrupt events, I'm sorry I cannot be more specific but I can't remember exactly the real reasons behind the fix, I just know that without it I was getting a "processor stuck" error on the guest's console after a while, resulting in an unresponsive VM.
    I see from your logfile that you have "APIC=1" and "ACPI=1", so maybe you'd want to play a bit with those settings and see the results.
    My processors are Intel Xeon 5450.
    HTH

  • Problem while creating a new user on solaris

    I have a SUN ultra machine. Solaris 2.6 is installed on this machine.
    I have successfully created a new user in this machine using "admintool"
    Problem is I'm getting error messages when I'm trying to update NIS DATABASE.
    I'm doing-
    #cd /var/yp
    #/usr/ccs/bin/make
    and the response is----
    updated passwd
    pushed passwd
    make:Warning:Don't know how to make target /etc/ethers
    Current working directory /var/yp
    make:Warning:Don't know how to make target /etc/netgroup
    Current working directory /var/yp
    make:Warning:Don't know how to make target /etc/bootparams
    Current working directory /var/yp
    updated netid
    pushed netid
    Couldn't find /etc/timezone
    make:Warning:Target all not remade because of errors.
    Current working directory /var/yp

    I had the a similar problem with new users on sloaris 8.
    I wasn't able to add new users and change the shell variable while using admintool.
    Login back into the console would simply not happen.
    All i've been able to find is that changing the users' variable - i.e. .login or .profile to match that of a working existing user (root),
    would skip over the problems.
    Other variables in the skeleton files were helpful. I suggest you take a look at them.

  • Problem in Creating a new database in Oracle 9i

    I have installed Oracle 9i for Windows successfully. Now when I try to create a new database either using the Database Configuration Assistant or using the script generated by the Assistant, I get an error message that DATABASE NOT OPEN. So the database will not be created. Please help in this regard, so that I can create a database and I can start working on Oracle 9i.
    Thanks in advance.
    Kiran

    Hi DENIS,
    I have executed the following commands (which are in a script file),
    1. sqlplus /nolog
    2. connect sys/change_on_install as sysdba
    3. create database ...
    4. ...
    When I execute the 3rd command, I get an error message as "ORACLE TERMINATED FORCED" and it will end the session. So when the next set of commands in the script are executed, I got the error saying "DATABASE NOT OPEN".
    How to rectify this problem.
    Thanks in advance,
    Kiran

  • Problems when creating a new parameter for a parametric role

    I'm trying to create a new parameter for a parametric role, but it seems that it is never updated, because the BPM engine does not return any error.
    The scenario is: I have a process that has the role "Brands_Admin", the brands are populated by Web Service dynamically, then the parameters of the role would be those brands. In this case, if a new brand is registered (WS returns a new brand), I simply create a new parameter for the role through the "process administrator" of the BPM Enterprise.
    I'm trying to create the new parameter as follows:
    dirSession                 = DirectorySession.currentEngineSession;
    dirOrganizationalRole       = DirOrganizationalRole.fetch(session : dirSession, id : "Brands_Admin");
    String[] parametricRoles       = dirOrganizationalRole.parametricValues;
    parametricRolesCount      = parametricRoles.length();
    parametricRoles[parametricRolesCount]      = "NEW_BRAND";
    dirOrganizationalRole.parametricValues      = parametricRoles;
    dirOrganizationalRole.update();
    dirOrganizationalRole.refresh();
    for (int i=0; i<dirOrganizationalRole.parametricValues.length(); i++) {
         logMessage(dirOrganizationalRole.parametricValues);
    In the code above, the BPM Studio will print the new parameter correctly, but in next activity (like a Screenflow) when I try to get the parameters of that role again, there are only the parameters that were registered using the BPM Studio, the parameters that are created programmatically not appear.
    Anyone know the reason?
    An user with the same problem: http://forums.tangosol.com/forums/thread.jspa?threadID=839253&tstart=1

    When a project that contains this logic to create a new parameter for a parametric role programmatically is deployed in BPM Enterprise, some strange behaviours occurs.
    The first is that I cannot see through the process administrator the new parameter that was created for the parametric role.
    The second is that if I create this new parameter through process administrator and associate an user to the role that contains the new parameter I cannot access the deployment process. In workspace (authenticated with user that is associated with the role that contains the new parameter) I cannot see anything about the process.

  • Problems when creating a new "Maintenance optimicer transaction"

    Hi!
    When I'm creating a new maintenance transaction in the field product version I have no choice it shows "Not available": I´ve already defined the Solution manager.
    I´ve followed the spro conf. steps.
    My Solution manager is 7.0 patched at:
    SAP_BASIS     700                     0015     
    SAP_ABA             700                     0015     
    PI_BASIS             2005_1_700     0014     
    ST-PI             2005_1_700     0006     
    SAP_BW             700                     0016     
    SAP_AP             700                  0011     
    BBPCRM             500                   0011     
    CPRXRPM     400                     0012     
    BI_CONT             703                     0008
    ST                     400                     0016
    ST-A/PI             01J_CRM500     0000
    ST-ICO             150_700             0013
    ST-SER             700_2008_1     0002
    I've found that SLD_UC and SLD_NUC RFC´s failed, the connection test gives this error msg "program SLD_UC not registered" alternatively the NUC one.
    Logon     Connection Error
    Error Details     Error when opening an RFC connection
    Error Details     ERROR: program SLD_UC not registered
    Error Details     LOCATION: SAP-Gateway on host msfsaptest / sapgw10
    Error Details     DETAIL: TP SLD_UC not registered
    Error Details     COMPONENT: SAP-Gateway
    Error Details     COUNTER: 46
    Error Details     MODULE: gwr3cpic.c
    Error Details     LINE: 1778
    Error Details     RETURN CODE: 679
    Error Details     SUBRC: 0
    Error Details     RELEASE: 700
    Error Details     TIME: Thu Sep 11 13:15:27 2008
    Error Details     VERSION: 2
    Thanks in advance.

    Hi,
    Try to get some more error info, e.g. like this:
    try {
    Z_Bupa_Search_By_User_Input searchByUser =
    new Z_Bupa_Search_By_User_Input(); "PROGRAM STOPS HERE
    } catch (Exception e) {
        msg.raiseException(e.getMessage(), true);
    msg.reportSuccess("<<<------"); "THIS LINE DOES NOT
    good luck,
    Roelof

Maybe you are looking for

  • Personal File Sharing with Fast User Switiching

    I have 2 users set up on the iBook. I want file sharing turned on for only one of the users and off for the other. Both are logged in. Any way to do this? It appears that personal file sharing is either on or off for all users.

  • Freight Cost based on postal code from alternative partner (occasional)

    Hi SAP experts! In standard SAP, the freight cost is calculated based on the postal code from WE partner (goods receiver). But my client have a situation where he uses an one-time customer as a goods receiver. In this cases the freight cost is being

  • Documentation frustration

    Dear Apple: FWIW, I started with computers when main frames had 48K of memory, the terminals said "TeleType" on them, and the modem ran at 58 baud. So on this subject I know where of I speak. I'm new to the Mac world. Getting started on them has been

  • Why is up next adding songs twice when I use the keyboard shortcut? (windows)

    I only encounter this using the mini-player as far as I know, at least; because the keyboard shortcut doesn't even work on the full sized player. augh.

  • Pam_ldap and nss_ldap

    hello ! i made and put two packages in incoming: pam_ldap and nss_ldap LDAP authentication is now possible with Arch ! Comete # Contributor: Comete <[email protected]> pkgname=pam_ldap pkgver=167 pkgrel=1 pkgdesc="The pam_ldap module provides the mea