list of objects for scripts - summary.hardware config DURATION

Hello

Y at - there somewhere a list of objects for what are all the different parts for summary.hardware and config etc, I found the following but don't really know how to read in the format of host.x.x.

http://pubs.VMware.com/VI3/SDK/ReferenceGuide

I'm obviously missing something!

Thank you

Dan

There is no need to run another EEG - view because all the properties have been filled with the initial EEG-view:

Just type: $madeupvariable.summary

It will return something like this:

Host: VMware.Vim.ManagedObjectReference

Material: VMware.Vim.HostHardwareSummary

Duration: VMware.Vim.HostRuntimeInfo

Config: VMware.Vim.HostConfigSummary

QuickStats: VMware.Vim.HostListSummaryQuickStats

OverallStatus: Green

RebootRequired: false

CustomValue:

ManagementServerIp:

MaxEVCModeKey:

CurrentEVCModeKey:

DynamicType:

DynamicProperty:

So now that we know what is basically, you want to know what's under the host, type:

$madeupvariable.summary.host

so on and so forth.

Tags: VMware

Similar Questions

  • Summary.Hardware - how to get the host esx not only the material specification name

    Hello

    I am running a script that generates an html document that is nice. One of the sections lists all hardware information, but did not name of the esx server at the beginning, I'm new to all this and still my feet so that any help would be greatly appreciated.

    Get-VMHost | Get-View | ForEach-Object {$_.} Summary.Hardware} | Provider Select-Model object, MemorySize, CpuModel, CpuMhz, NumCpuPkgs, NumCpuCores, NumCpuThreads, NumNics, NumHBAs | ConvertTo-Html-title "Configuration of VMware ESX server Hardware" - body "& lt; H4 & gt; VMware ESX server Hardware configuration. & lt; / H4 & gt; » | Out-file - add $filelocation

    Putting 'name' after the select-object gives just an empty column.

    Thanks in advance.

    Dan

    Hi Dan,.

    Try this: (also joined the code in the case where the mess with her site.)

    Get-vmhost | % {get-view $_.ID} | Select-Object Name, @{Name = "Mem size:"; "} Expression = {$_.} Summary.Hardware.memorySize}}, @{Name = 'Seller'; Expression = {$_.} Summary.Hardware.Vendor}}, @{Name = ' model'; Expression = {$_.} Summary.Hardware.Model}}, @{Name = "CPUModel"; Expression = {$_.} Summary.Hardware.CPUModel}}

    It covers everything you have done - but you should be able to add the rest. The reason why your doesn't not work resulted from the property "Name" is not not in the Summary.Hardware object. You need a method such as this that references the object for the property Name USER.USER - addresses of the Summary.Hardware for the other elements you requested.

    Hope this helps - if so, please set as answered! -Been ages since I am actually happened first: oD

    GE

  • calculation of the values in a script powershell to host - summary.hardware and summary.quickstats information

    Hello

    I run the below script but you want to change it so that I can add the Maximum available CPU and % CPU used statistics in the table by a calculation, I just get the syntax right as you will see highlighted below.

    I would really appreciate the help.

    Thank you

    Dan

    $Report = @)

    $ESXHosts = get-VMHost | Sort name | Get-View

    ForEach ($ESXHost to $ESXHosts)

    {

    $ReportObj = "" | Select the name, 'Active VMotion', 'Connection status', "Global CPU", "Max CPU", "% CPU used.

    $ReportObj.Name = $ESXHost.Name

    $ReportObj. "" VMotion enabled "= $ESXHost.summary.config.vmotionenabled

    $ReportObj. "" Connection status "= $ESXHost.summary.runtime.connectionstate

    $ReportObj. "" Overall CPU "= $ESXHost.summary.quickStats.overallCpuUsage

    $ReportObj. "" Max CPU "= (($ESXHost.summary.NumCpuCores$ESXHost.summary.NumCpuPkgs$ESXHost.summary.CpuMhz))

    $ReportObj. "" CPU % used "= (($ESXHost.summary.quickStats.overallCpuUsage)/ (($ESXHost.summary.NumCpuCores$ESXHost.summary.NumCpuPkgs$ESXHost.summary.CpuMhz))) )

    $Report += $ReportObj

    }

    $Report | ConvertTo-Html-of title 'Advanced Host' - body "& lt; H4 & gt; Advanced Host Information & lt; / H4 & gt; » | Out-file - add $filelocation

    Sorry, take out the quotes.

    $ReportObj. (' ' Max CPU "= ($ESXHost.summary.hardware.NumCpuCores) *($ESXHost.summary.hardware.CpuMhz))

  • List of requests for custom objects

    I can't find a concrete answer on how to query an object when it is contained in a list. Maybe it's in the documentation or forums, but I have not found. What I have is a building object that includes a list < room > parts, and each room has its own attributes as typeCode. Our cache contains building objects indexed by its own key. Now, I want to write a filter to find 1 to several building objects have a room with a specific typeCode, for example "2 dB.

    I tried an EqualsFilter with 2 "dB" and in him passing a ValueExtractor that navigates the building as: rooms.typeCode. I expect the getRooms() of construction method to be called, which returns a list < room > and then thinking to evaluate the content of the list to call getTypeCode() on each instance of House. Instead, I see errors because there is no such thing as getTypeCode() on java.util.ArrayList. No joke.

    How can I get to dive inside the list and framework to evaluate instances of the room inside? All the examples I've seen are for simple collections, such as list < String > or < Integer >, while I have a < FooBar > list.

    Hello

    You must write a custom puller for that purpose that the out-of-the-box extractors do not support the invocation chaining in the collections (i.e. extracting a collection created by extraction of the attributes of the items in the collection).

    something like this:

    import java.io.IOException;
    import java.lang.reflect.Array;
    import java.util.ArrayList;
    import java.util.Collection;
    
    import com.tangosol.io.pof.PofReader;
    import com.tangosol.io.pof.PofWriter;
    import com.tangosol.io.pof.PortableObject;
    import com.tangosol.util.ValueExtractor;
    
    public class TwoLevelChainExtractor implements ValueExtractor, PortableObject {
    
       private ValueExtractor extractorReturningCollection;
       private ValueExtractor extractorExtractingFromCollectionElement;
    
       /**
        * This is for the POF deserialization.
        */
       public TwoLevelChainExtractor() {
       }
    
       public TwoLevelChainExtractor(ValueExtractor extractorReturningCollection, ValueExtractor extractorExtractingFromCollectionElement) {
          this.extractorReturningCollection = extractorReturningCollection;
          this.extractorExtractingFromCollectionElement = extractorExtractingFromCollectionElement;
       }
    
       @Override
       public Object extract(Object obj) {
    
          Object interim = extractorReturningCollection.extract(obj);
    
          Collection res = new ArrayList();
          ValueExtractor innerExtractor = extractorExtractingFromCollectionElement;
    
          if (interim instanceof Collection) {
    
             for (Object element : (Collection) interim) {
    
                res.add(innerExtractor.extract(element));
             }
    
          } else if (interim instanceof Object[]) {
    
             for (Object element : (Object[]) interim) {
    
                res.add(innerExtractor.extract(element));
             }
    
          } else {
    
             Class cls = interim.getClass();
             if (cls.isArray()) {
    
                // primitive array
    
                int count = Array.getLength(interim);
                for (int i=0; i
    

    Subsequently, you can use just this extractor to extract a collection of rooms type codes:

    ValueExtractor roomsTypeCodes = new TwoLevelChainExtractor(new ReflectionExtractor("getRooms"), new ReflectionExtractor("getTypeCode"));
    

    To achieve what you want, you can use the roomsTypeCodes and ContainsFilter or ContainsAnyFilter.

    You can implement similar stuff for the extraction of POF by taking advantage of the PofValueParser class in a subclass of EntryExtractor.

    Best regards

    Robert

  • Creating a new workspace of object for a custom object

    Hello

    I have a problem with creating workspace object for my custom in the plugin object. I am trying to create something similar to 'chassis-rack' example that comes with the SDK. I added a new category of app and I want to display lists of the inventory of the various objects custom under him. For each custom object, I can see it has objects and its own properties. So I did everything as in the sample "chassis-rack". I am able to display lists of custom my objects. However, when I click on a specific object in the list, its workspace does not appear (although it is defined in plugin.xml), I get a blank screen with a message: "you don't have privileges to view this object, or there is not." I added two custom objects, and both behave the same way.

    I checked the newspaper and there is nothing interesting. I also have it debugged and discovered that "getData" function of the object DataAdapter recorded for these objects is not called when I click on the object in question, so I guess that the problem is linked to the workspace object, but I can not find or understand how I can find it.

    I'll be very grateful for the help.

    Here's my plugin.xml:

    <? XML version = "1.0" encoding = "UTF-8"? >

    < id = "com.emc.ecs.scaleioPlugin plugin"

    moduleUri = "Scaleiopluginui.swf" defaultBundle = "ScaleiopluginuiResources" > "

    < resources >

    < local resources = "en_US" >

    <! - relative path of the .swf resource generated by the build script - >

    < uri="locales/scaleio-plugin-ui-resources-en_US.swf"/ module >

    < / resource >

    < / resource >

    <!--==========================================================================

    ================================== General ===================================

    ==============================================================================-->

    <!-add "ScaleIO ECS' node in the view of the Virtual Infrastructure of the object

    Navigator. This category node is used below for the MDM group collection. ->

    < id = "com.emc.ecs.scaleioAppCategory extension" >

    < extendedPoint > vise.navigator.nodespecs < / extendedPoint >

    < object >

    < title > #{scaleioAppCategory} < /title >

    < parentUid > vsphere.core.navigator.virtualInfrastructure < / parentUid >

    < / object >

    < / extension >

    <!--==========================================================================

    ==================================== MDM =====================================

    ==============================================================================-->

    < id = "com.emc.ecs.mdm.objectType extension" >

    < extendedPoint > vsphere.core.objectTypes < / extendedPoint >

    < object >

    < types >

    < string > ecs:Mdm < / String >

    < / types >

    < label > #{mdmLabel} < / label >

    < labelPlural > #{mdmLabelPlural} < / labelPlural >

    icon <>#{mdmIcon} < / icon >

    < / object >

    < / extension >

    < templateInstance id = "com.emc.ecs.mdm.viewTemplateInstance" >

    < templateId > vsphere.core.inventory.objectViewTemplate < / templateId >

    < variable name = "namespace" value="com.emc.ecs.mdm"/ >

    < variable name = "objectType" value = "ecs:Mdm" / >

    < / templateInstance >

    < templateInstance id = "com.emc.ecs.lists.allMdm" >

    < templateId > vsphere.core.inventorylist.objectCollectionTemplate < / templateId >

    < variable name = "namespace" value="com.emc.ecs.mdmCollection"/ >

    < variable name = "title" value = "#{mdmLabel}" / >

    < variable name = "icon" value = "#{mdmIcon}" / >

    < variable name = "objectType" value = "ecs:Mdm" / >

    < variable name = value="com.emc.ecs.mdm.list"/ "listViewId" >

    < variable name = value="com.emc.ecs.scaleioAppCategory"/ "parentUid" >

    < / templateInstance >

    < id = "com.emc.ecs.mdm.list.sampleColumns extension" >

    < extendedPoint > com.emc.ecs.mdm.list.columns < / extendedPoint >

    < object >

    elements <>

    < com.vmware.ui.lists.ColumnContainer >

    com.EMC.ECS.MDM.column.IP < uid > < / uid >

    < dataInfo >

    < com.vmware.ui.lists.ColumnDataSourceInfo >

    < requestedProperties >

    < string > ip < / String >

    < / requestedProperties >

    intellectual property < sortProperty > < / sortProperty >

    < exportProperty > ip < / exportProperty >

    < /com.vmware.ui.lists.ColumnDataSourceInfo >

    < / dataInfo >

    < item >

    < mx.controls.advancedDataGridClasses.AdvancedDataGridColumn >

    Ip address < headerText > < / headerText >

    intellectual property < dataField > < / dataField >

    < /mx.controls.advancedDataGridClasses.AdvancedDataGridColumn >

    < / component >

    < /com.vmware.ui.lists.ColumnContainer >

    < com.vmware.ui.lists.ColumnContainer >

    com.EMC.ECS.MDM.column.Type < uid > < / uid >

    < dataInfo >

    < com.vmware.ui.lists.ColumnDataSourceInfo >

    < requestedProperties >

    Type < string > < / String >

    < / requestedProperties >

    Type < exportProperty > < / exportProperty >

    < /com.vmware.ui.lists.ColumnDataSourceInfo >

    < / dataInfo >

    < item >

    < mx.controls.advancedDataGridClasses.AdvancedDataGridColumn >

    < headerText > MDM Type < / headerText >

    Type < dataField > < / dataField >

    < /mx.controls.advancedDataGridClasses.AdvancedDataGridColumn >

    < / component >

    < /com.vmware.ui.lists.ColumnContainer >

    < / object >

    < / object >

    < / extension >

    <!--==========================================================================

    ================================ MDM Cluster =================================

    ==============================================================================-->

    < templateInstance id = "com.emc.ecs.mdmCluster.viewTemplate" >

    < templateId > vsphere.core.inventory.objectViewTemplate < / templateId >

    < variable name = "namespace" value="com.emc.ecs.mdmCluster"/ >

    < variable name = "objectType" value = "ecs:MdmCluster" / >

    < / templateInstance >

    < templateInstance id = "com.emc.ecs.lists.allMdmCluster" >

    < templateId > vsphere.core.inventorylist.objectCollectionTemplate < / templateId >

    < variable name = "namespace" value="com.emc.ecs.mdmClusterCollection"/ >

    < variable name = "title" value = "#{mdmClusterLabel}" / >

    < variable name = "icon" value = "#{mdmClusterIcon}" / >

    < variable name = "objectType" value = "ecs:MdmCluster" / >

    < variable name = value="com.emc.ecs.mdmCluster.list"/ "listViewId" >

    < variable name = value="com.emc.ecs.scaleioAppCategory"/ "parentUid" >

    < / templateInstance >

    < id = "com.emc.ecs.mdmCluster.list.sampleColumns extension" >

    < extendedPoint > com.emc.ecs.mdmCluster.list.columns < / extendedPoint >

    < object >

    elements <>

    < com.vmware.ui.lists.ColumnContainer >

    com.emc.ecs.mdmCluster.column.name < uid > < / uid >

    < dataInfo >

    < com.vmware.ui.lists.ColumnDataSourceInfo >

    < requestedProperties >

    < string > name < / String >

    < / requestedProperties >

    < sortProperty > name < / sortProperty >

    name of < exportProperty > < / exportProperty >

    < /com.vmware.ui.lists.ColumnDataSourceInfo >

    < / dataInfo >

    < item >

    < mx.controls.advancedDataGridClasses.AdvancedDataGridColumn >

    < headerText > name < / headerText >

    < dataField > name < / dataField >

    < /mx.controls.advancedDataGridClasses.AdvancedDataGridColumn >

    < / component >

    < /com.vmware.ui.lists.ColumnContainer >

    < com.vmware.ui.lists.ColumnContainer >

    com.emc.ecs.mdmCluster.column.mode < uid > < / uid >

    < dataInfo >

    < com.vmware.ui.lists.ColumnDataSourceInfo >

    < requestedProperties >

    mode of < string > < / String >

    < / requestedProperties >

    mode of < exportProperty > < / exportProperty >

    < /com.vmware.ui.lists.ColumnDataSourceInfo >

    < / dataInfo >

    < item >

    < mx.controls.advancedDataGridClasses.AdvancedDataGridColumn >

    < headerText > Mode < / headerText >

    mode of < dataField > < / dataField >

    < /mx.controls.advancedDataGridClasses.AdvancedDataGridColumn >

    < / component >

    < /com.vmware.ui.lists.ColumnContainer >

    < / object >

    < / object >

    < / extension >

    < id = "com.emc.ecs.mdmCluster.objectType extension" >

    < extendedPoint > vsphere.core.objectTypes < / extendedPoint >

    < object >

    < types >

    < string > ecs:MdmCluster < / String >

    < / types >

    < label > #{mdmClusterLabel} < / label >

    < labelPlural > #{mdmClusterLabelPlural} < / labelPlural >

    icon <>#{mdmClusterIcon} < / icon >

    < / object >

    < / extension >

    < / plugin >

    Thanks for your help, laurentsd. I think that I managed to find the problem (actually, it looks like some sort of bug).

    I think there is a problem when the word "cluster" appears in the object type, because when I changed the type of the object to "ecs:mdmCluster" to "ecs: something ' in all places where it appears, everything started working. I'm sure that if collect you chassis and change the type "samples: chassis ' in ' samples: Cluster ', you will get the same problem I experienced. In any case, my problem is already solved.

  • I can't click on some objects, for example, the sign in boxes in facebook

    I can't click on objects, for example, the sign in boxes on facebook

    Hello

    Please check if this happens in Safe Mode. Safe mode disables the installed Extensionsand themes (appearance) in (Alt + T) Tools > Add-ons. Hardware acceleration is also temporarily disabled - manual setting is Tools > Options > Advanced > general > use hardware acceleration when available. All these settings/options/additional custom modules can also be individually or collectively disabled/enabled/changed to normal mode of Firefox to check if an extension, theme, option or a hardware acceleration is causing issues. Deactivation/activation of hardware acceleration and some types of modules in normal mode may require a restart of Firefox.

    Uninstalling the modules

    Uninstalling toolbars

    Troubleshooting Extensions and themes

    Extensions of the issues

    Options

    You can also consider the function of Reset Firefox via help (Alt + H) > troubleshooting information.

  • View CD can't mistake of player Director, was not found in the object #getPropRef, Script error. Continue?, yes no

    OT: Error player Director, not found in the object #getPropRef, Script error. Continue?, Yes No. nursing student cannot run his CD CD practice to work on other laptops. but not on it!

    Nursing Student cannot carry out its practice CD which comes with Prentice Hall Nursing book: "medical and nursing care 2nd edition, comments & justifications surgical."  CD works on PC and a laptop running Windows XP, Vista and Windows 7 and on an iMac; but not on it!  She has a Toshiba laptop with Windows Vista Home Premium and it just doesn't work!  My wife has lent her one of its laptops with Windows Vista, but the CD works fine.  What is the problem? I called Prentice Hall and got no help from them!  They said it was a computer problem.  This student is an exchange student and she would really any help.  I tried to clean the system and even tried the Optimizer5.2 perfect for the correction of errors in Script, but it didn't work.  Help please!  My only recourse is to backup all files and wipe the disk clean and start again to do a reinstall of all applications.  Any other ideas?  She had the phone since 2005 and the hard drive has only about 30% free space left on 147 GB.

    Hello cobblestone47,

    1. What is the version of the steering drive you use on your computer?

    2. the other users who are able to play the CD using the Director or shockwave player player is

    Player de Macromedia Director is also known as the Shockwave Player. I suggest that you uninstall the Director player and install the latest version of Shockwave player, and check if you have the same problem.

    You can follow the link below to download and install the latest version of Shockwave player:

    http://get.Adobe.com/Shockwave/

    Thank you
    Irfan H, Engineer Support Microsoft Answers. Visit ourMicrosoft answers feedback Forum and let us know what you think.

  • Windows xp has a safe list of senders for windows livemail

    Windows xp has a safe list of senders for windows livemail?

    Hello

    Repost in windows live mail forums at the link below

    http://windowslivehelp.com/product.aspx?ProductID=15

    and here is the vista forums

    Try the forums xp on the link below

    http://answers.Microsoft.com/en-us/Windows/default.aspx#tab=4

    Answers by topic

  • Ksoap2 to manage the list of object complex as request

    I use Ksoap2 to call webservice in my application... I use kvmserialisable for complex data type and it works fine... But I'm blocked up with passing LIST of OBJECT COMPLEX as REQUEST...

    It's my SOAP request and the problem is zero, one or more repetetions...

    
                
                    
                        ?
                        ?
                    
    
    

    Help, please

    Here is a sample of my code, for a vector of objects of the Conference

    propertyCount = getPropertyCount(properties, "conferences", this.conferences);
            if (index < propertyCount) {
                info.name = "conferences";
                info.namespace = "http://xxx";
                info.type = new XXXConference().getClass();
                info.flags = (this.conferences == null ? PropertyInfo.TRANSIENT : 0);
                return;
            }
    
  • CSS refresh after javascript DOM change (tab Ajax control) and also refresh the list of objects of Navigation

    Hi all

    When I access a Web page, that I created in the browser or Widget that uses an ASP.NET Ajax Control Toolkit Tabs the action of switching between tabs works well but the tab header does not reflect the change to display the active tab.

    In a standard browser of the tab header will be change / light tone based on the css classnames active Ajax control for settings changes dynamically in the DOM when switching between tabs and I was wondering if maybe the BB browser will not reflect/refresh css when changes on the client side affect the DOM? If that's the case (?) is there a way to force that change somehow?

    Also in the same direction and on the similar question I posted yesterday on switching between Navigation power user mode in a Widget, so javascript client-side dynamically is change the 'x-blackberry-focus' of a DOM object possible to have the change reflected in the Navigation objects? Or is the list of objects that can be traversed only generated load initial page and cannot change without a new post?

    Thank you

    Derek

    I solved the problem with the Ajax Control Toolkit TabContainer uisng having to do a "dummy" DOM change in the TabHeader after that the tab is passed between the tabs then forcing the refresh and repaint the tab headers.

  • How can I create a list of choices for the search bit in Oracle 11g ADF fields?

    Hi Experts,

    Please inform how to add some selection list or drop downs on the pane search Oracle 11g ADF.

    I have a requirement to create a list of choices for the search store field. # Please notify.

    SS_SearchCriteriaPage1.png

    Thank you

    David Selvaraj

    You can create a view based on a static list object and attach it to your attribute as lov-driven model.

    Dario

  • Esscmd/MaxL to list all users for a particular application or the Db

    Hi all

    I'm looking for a script command list all users for a particular application or database.

    Also, looking for a script command list all users and as well as all users he shud list the userinfo. Basically, I want to know the last time of connection of all users.

    Thanks in advance.
    -Benoit.

    Opt for the CSSImportExport utility

    Thank you
    ColDFiRe

  • Invalid object for this request

    Hi friends I have an another problem concerning textframe.

    my java script code is like this,

    firstLine var = xmlElement.lines.firstItem ();

    var newTextFrame = firstLine.textFrames.add ();

    -> newTextFrame.geometricBounds = [0,0,50,50]; error: Invalid object for this request

    newTextFrame.contents = queryNumber;

    newTextFrame.appliedObjectStyle = this.jrnlIDDoc.objectStyles.itemByName (((columnIndex == 0)? (("' AQ_LEFT ': 'AQ_RIGHT'));

    newTextFrame.fit (FitOptions.FRAME_TO_CONTENT);

    If (firstLine.textFrames.length > 0) {}

    newTextFrame.move (null, [0, (newTextFrame.geometricBounds [2] - newTextFrame.geometricBounds [0] + 3) * (firstLine.textFrames.length)]);

    }

    After the execution of this file, I got a error: Invalid object for this request


    If anyone knows the soln please help me.

    concerning

    Tahir.

    The frame that you add is "inline" and is oversetting image, no doubt, so its geometricBounds are inaccessible. One solution is to create as anchored to instead and then make your changes and then put it back on line if you want to:

    var newTextFrame = firstLine.textFrames.add({anchoredObjectSettings:{anchoredPosition:AnchorPosition.ANCHORED}, geometricBounds:[0, 0, 50, 50]});
    

    Jeff

  • Suggestions for CS5 new hardware configuration

    I'm investing in new hardware to run CS5 of the House and I would like your suggestions and comments on my list of requirements below.  My hardware budget is about $750 for the Tower, I already have a beautiful Vizio 20 "monitor, a generic wireless mouse and keyboard.

    The problem that seems to be running is that I don't want a game system performance or a home theater system.  So far, the only way I can hit on home theater systems is not to watch what anyone with TV remotes.

    Preferred manufacturers: Acer/Gateway or HP but consider others.

    The whole system will only work CS5, associated with scanner and printers and an internet connection USB720.  He won't be networked or you need wifi capabilities.  I do mainly web production, some print jobs and no video or audio editing (or if I do it will play only).  Most of the heavy lifting will be Photoshop and InDesign.

    I will install a Wacom Bamboo tablet also after CS5 is in place, and I noticed other assignments that I should download the latest drivers for the 64-bit operating system.

    My list so far:

    OS: Windows 7 Home Premium 64-bit (preloaded)

    Memory: 8 GB of RAM, + 2.2 GHz (by heart), Quad core configuration, but favorite DDR3 settle for DDR2

    HDD: 750 GB to 1 t or as much as I can get for the dollars

    USB ports: at least 2 more is

    Graphics card: am I locked in NVidia?  If so, the GeForce GT220 looks like standard

    Optical drive: DVD + - R/RW, not interested in Blu - ray

    Audio: everything that makes noise.

    Thank you for your ideas,

    Mary126

    Many users prefer ATI cards.  Personal choice because they

    both work well.

    If you have other data and scratch disks you have at least a C drive is huge, in my opinion.

    There are places that build custom computers, look on the web.

    HP doesn't have a computer with an eSata Port.  Dell computers from model 7100 do.  I bought a 9000.  It has space for 2 additional internal hard drives.  But was disappointed that there only 3 sata ports and one is used by the optical drive.  In order to check that it there are enough ports for what you want before you buy.

    Suggestion: Find a computer close to what you want and then call anywhere in the nearest big city and see if someone can build you one for a similar price.

  • Button in the list of actions for the lines

    Hello

    My data object repeatedly for different processes with status as Started, completed, has not
    I want to show a button in the list of actions for instances failed. Once you click on this button I want to trigger an alert

    Is it possible

    Actions are there now they give button at the view level, I am unable to get a button or set up an action at the level of line

    11G version of BAM


    Any suggestions

    Alert will be triggered separately for each row that is changed, so if your goal is to trigger the action of webservice as many times as the number of lines you have chosen in the action list, it serves very well your purpose. And you want to pass values from lines to alert, I suggest that make you all fields editable in list of actions (view open in edit mode and go to properties-> editable fields) and choose "Insert" action button action and put the lines in an another dataobject temp (and not your real dataobject that gets corrupted) set the alert on this temp dataobject and finally in your list of actions during execution, if you want to pass values from the list to the alert or change these values to pass new values, everything is possible and clicking "submit" should give you the expected results.

Maybe you are looking for