Sort Nested Object - 2 properties

Hello,
I am trying to sort based on a few properties of an object. The only issue i am having is the properties are within a nested object.
For example.
I would like to stort the following object by StreetNumber and StreetName, but these properties are inside 'locations_attributes' array.
    "commute": {
        "minutes": 0,
        "startTime": "Wed May 06 22:14:12 EDT 2009",
        "locations_attributes": [
                "StreetNumber": "12",
               "StreetName": "Main"
                "StreetType": "St"   
                "StreetNumber ": "17",
               "StreetName": "Morning Side ",
                "StreetType": "Dr"
                "StreetNumber ": "26",
                "StreetName": "Blake",
                "StreetType": "St"               
Can this be done ?
Drew

I get a JSON result from a REST service and I have a custom component that I populate.
I am not usin a datagrid, but a extended version of the List component.
I am just trying to sort the returned result sorted by street number and street name.
I was using a compareFunction in a sort() method, but only found samples for sorting off of one field.. not 2.
Here is  is a sample of what I was using for 1 field.
private function sortByAttribute(a:Object, b:Object):Object
            var x:String = a.attributes[this._activePanel.SortField].toLowerCase();
            var y:String = b.attributes[this._activePanel.SortField].toLowerCase();
            return ((x < y) ? -1 : ((x > y) ? 1 : 0));

Similar Messages

  • Using Nested Object Properties as DataGrid dataField

    I am populating a DataGrid with an ArrayCollection of
    Objects. Each of those Objects has a property that is itself an
    Object. I want to use a property of the second (or "nested") Object
    as a dataField for one of my columns.
    Any idea how to make this work? Would a custom item render be
    the only way?

    Using the labelFunction property of the DataGridColumn would
    be enough:
    <mx:DataGrid width="100%" height="100%"
    dataProvider="{myAC}">
    <mx:columns>
    <mx:DataGridColumn dataField="myProperty1" />
    <mx:DataGridColumn dataField="myProperty2" />
    <mx:DataGridColumn
    labelFunction="myOwnLabel" />
    </mx:columns>
    </mx:DataGrid>
    function myOwnLabel(item:Object,
    column:DataGridColumn):String
    return item.myProperty;
    The function must have that signature in order to work, where
    item is an instance of the objects in your dataProvider and column
    is the DataGridColumn calling the function.

  • [svn:bz-4.0.0_fixes] 20586: backporting nest object level fix and nest collection level fix from blazeds trunk to 4 .0.0.fixes branch

    Revision: 20586
    Revision: 20586
    Author:   [email protected]
    Date:     2011-03-03 13:44:51 -0800 (Thu, 03 Mar 2011)
    Log Message:
    backporting nest object level fix and nest collection level fix from blazeds trunk to 4.0.0.fixes branch
    checkintests pass
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/common/src/flex/messaging/errors.properties
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.j ava
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/SerializationContext.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf0Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf0Output.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf3Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf3Output.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/AmfIO.java

    Revision: 20586
    Revision: 20586
    Author:   [email protected]
    Date:     2011-03-03 13:44:51 -0800 (Thu, 03 Mar 2011)
    Log Message:
    backporting nest object level fix and nest collection level fix from blazeds trunk to 4.0.0.fixes branch
    checkintests pass
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/common/src/flex/messaging/errors.properties
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.j ava
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/SerializationContext.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf0Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf0Output.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf3Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf3Output.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/AmfIO.java

  • Can we show the nested objects in Powershell?

    I am adding a .NET type to Powershell session using Add-Type and then creating object of that type using New-Object. This is done as follows:
    Add-Type -AssemblyName OuterObj
    $a = New-Object OuterObj
    Object of type OuterObj is successfully created. Now .NET type $a has a field named innerObj which is object of another .NET type innerObject. So I add "innerObject" .NET type and create an instance using New-Object.
    Add-Type -AssemblyName innerObject
    $b = New-Object innerObject
    Object of type innerObject is also successfully created. Now I do as follows:
    $a.innerObj = $b
    Now when I print $a, it shows something like this:
    innerObj : innerObject
    Thus it does not display the contents of innerObject by default. When I go and explore, innerObj has the fields. I know Powershell does not show the nested objects by default but instead just shows their types, but is there a way I can specify that what
    level of nesting of objects powershell should show by default? Is there something to specify to show 1 or 2 levels of nested objects?
    Any help would be highly appreciated.

    The simplest approach, if you're writing these C# classes yourself, is probably to override the class's ToString method.  That way it will just display that way by default in PowerShell, without any extra effort on the scripter's part.
    If that's not an option, then you can write PowerShell code to accomplish something similar.  Here are examples of both:
    # C# ToString version:
    Add-Type -TypeDefinition @'
    public class innerObject
    public string Property1;
    public string Property2;
    public override string ToString()
    return string.Format("Property1: {0}, Property2: {1}", Property1, Property2);
    public class OuterObj
    public innerObject innerObj;
    $a = New-Object OuterObj
    $b = New-Object innerObject -Property @{ Property1 = 'First Property'; Property2 = 'Second Property' }
    $a.innerObj = $b
    $a | Format-List
    # PowerShell version using constructed property values with
    # Format-List.
    Add-Type -TypeDefinition @'
    public class innerObject
    public string Property1;
    public string Property2;
    public class OuterObj
    public innerObject innerObj;
    $a = New-Object OuterObj
    $b = New-Object innerObject -Property @{ Property1 = 'First Property'; Property2 = 'Second Property' }
    $a.innerObj = $b
    $a | Format-List -Property @{ Label = 'innerObj'; Expression = { "Property1: $($_.innerObj.Property1), Property2: $($_.innerObj.Property2)" } }

  • Auto nesting objects

    Is there some way (script / plugin?) to auto nest objects on page?
    In other words, to place all objects as tight as possible to eachother.

    @Meate
    Our rip software (Wasatch Softrip) uses rectangles too. In most cases this is good enough (and allow easy cutting), but some cases where cutting isn't needed, tighter fitting would be helpful if available. See simple example in attachment.
    But like i said, i was just checking if some script existed already. If not, it's not worth writing one for the rare occasions it would be helpful.

  • ODS Object-Specific Properties BUG

    Hi Bhanu & Experts,
    I have a Variable on particular InfoObject. The RSD1 property is "Only Value in the Infoprovider".
    When i use the variable from Infocube it only show the values from the Infoprovider in the Variable screen.But when i use the same variable with an ODS it shows all the values in the variable sceen.
    I tried ODS Object-Specific Properties for my Infoobject in the ODS Maintenance it didn't work.
    Is there any specific setting to be made to the ODS?
    Any idea why the same infoobject show all the values from the master table even in the Query definition?
    Thank you
    Arun

    Hi Bhanu,
      Variable screen is really bugging me a lot.All the requirements i get is in and around this variable popup.
      Don't you think the following line in the SAP Note 626887 is wrong,
    The same applies to the settings to the ODS object ("Edit ODS object" under "Key fields" Context menu call for an InfoObject (right-click), ODS object-specific attributes").
      Why does it tell only "Key Field" if it is whey do you need this setting for the "Data Fields"
    Thank you
    Arun

  • How to send nested object collection to PL/SQL Procedure as an Input param

    How to send nested object collection to PL/SQL Procedure as an Input parameter.
    The scenario is there is a parent mapping object containing a collection(java.sql.Array) of child objects.
    I need to send the parent object collection to PL/SQL procedure as a input parameter.
    public class parent{
    String attr1;
    String attr2;
    Child[] attr3;
    public class Child{
    String attr1;
    SubChild[] attr2;
    public class SubChild{
    String attr1;
    Urgent!!!
    Edited by: javiost on Apr 30, 2008 2:09 AM

    javiost wrote:
    How to send nested object collection to PL/SQL Procedure as an Input parameter.There are a few ways to do this, all of which likely depend on the particular database you're using.
    Urgent!!!Not to me...

  • Nesting Objects

    I am looking for advice on how to nest objected created from
    cfcs...
    The place I have seen this sdone is in the fusebox framwork
    in the following:
    #myFusebox.getCurrentCircuit().getAlias()#
    What I would like to do is create an object called called
    users from a users.cfc with methods such as listUsers() and
    findUser(userID)...
    Ex. #users.findUser(34)#
    Then from there I want to next another object (object might
    not be the correct term) or set of functions that deal with the
    user specified such as getName() and getEmail()...
    Ex. #users.findUser(34).getName()#
    Ex. #users.findUser(34).getEmail()#
    Can someone explain to me how this can be done?
    Thanks!

    jeby wrote:
    > Can someone explain to me how this can be done? Thanks!
    >
    How this is done depends largely on how the objects are
    related to each
    other. I.E. Does one object extend (inherit) the other object
    creating
    an is-a or parent child relationship. Or does one object
    contain an
    instance of the other as a property|variable (composite)
    creting an
    has-a relationship.
    I'm doing some web service with complex object testing and I
    have just
    written this simple testing code. See if it makes some sense
    to you.
    basic.cfc
    <cfcomponent>
    <cfproperty name="foo" type="string">
    <cfproperty name="bar" type="string">
    <cfscript>
    this.foo = "George";
    variables.bar = "Gracie";
    </cfscript>
    <cffunction name="getBar" access="remote"
    returntype="string">
    <cfreturn variables.bar>
    </cffunction>
    </cfcomponent>
    complex.cfc
    <cfcomponent>
    <cfproperty name="anObj" type="basic">
    <cfscript>
    variables.anObj = createObject("component","basic");
    </cfscript>
    <cffunction name="getObj" access="remote"
    returntype="basic">
    <cfreturn variables.anObj>
    </cffunction>
    </cfcomponent>
    index.cfm
    <cfscript>
    complexComp = createObject("component","complex");
    </cfscript>
    <cfdump var="#basicComp#" expand="no">
    <dl>
    <dt>complexComp.getObj()</dt>
    <dd><cfdump
    var="#complexComp.getObj()#"></dd>
    <dt>complexComp.getObj().foo</dt><
    dd>#complexComp.getObj().foo#</dd>
    <dt>complexComp.getObj().getBar()</dt>
    <dd>#complexComp.getObj().getBar()#</dd>
    </dl>

  • Sorting My objects

    I have a class with some fields.
    I want to sort the objects based on a particular field.
    How to use comparable(Oject o)

    I've posted an example here,
    http://forum.java.sun.com/thread.jsp?forum=31&thread=448348

  • CS4- nested object error

    I used DWCS4 to install a flash swf animation into a asp
    page. (I have html pages on the site the swf plays no problem.) I
    recieved the following error.
    Active Server Pages error 'ASP 0139'
    Nested Object
    /index.asp, line 86
    An object tag cannot be placed inside another object tag.
    ----->below is the source code that was genereated by CS4
    when I installed the swf <-----------
    <object id="FlashID"
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800"
    height="80">
    <param name="movie" value="rdslogo2.swf">
    <param name="quality" value="high">
    <param name="wmode" value="opaque">
    <param name="swfversion" value="9.0.45.0">
    <!-- This param tag prompts users with Flash Player 6.0
    r65 and higher to download the latest version of Flash Player.
    Delete it if you don’t want users to see the prompt. -->
    <param name="expressinstall"
    value="../Scripts/expressInstall.swf">
    <!-- Next object tag is for non-IE browsers. So hide it
    from IE using IECC. -->
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash"
    data="rdslogo2.swf" width="800" height="80">
    <!--<![endif]-->
    <param name="quality" value="high">
    <param name="wmode" value="opaque">
    <param name="swfversion" value="9.0.45.0">
    <param name="expressinstall"
    value="../Scripts/expressInstall.swf">
    <!-- The browser displays the following alternative
    content for users with Flash Player 6.0 and older. -->
    <div>
    <h4>Content on this page requires a newer version of
    Adobe Flash Player.</h4>
    <p><a href="
    http://www.adobe.com/go/getflashplayer"><img
    src="
    http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif"
    alt="Get Adobe Flash player" width="112" height="33"
    /></a></p>
    </div>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>
    Does anyone know how to correct this problem?

    Found the answer here:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=189&threadid =1419395&enterthread=y
    I was inserting the .swf into an .html page with my IIS
    server set to read .html pages as .asp.
    CS4 puts in different code for asp pages compared to html
    pages.
    Rich

  • Sort gfx objects

    This dump - http://s3.postimage.org/t1m03xnaj/dump.png - and this thread - Re: GUI/Swing (although the code is outdated by now) - may provide some context.
    I have written a sorting method:
    public void sortPriority() {
              Container c = getContentPane();
              Component[] rawComps = c.getComponents();
              int numComps = c.getComponentCount();
              ItemPanel[] comps = new ItemPanel[numComps];
              for (int i = 0; i < numComps; i++) comps[i] = (ItemPanel)rawComps;
              ItemPanel[] sorted = new ItemPanel[numComps];
              for (int j = 0; j < numComps; j++) {
                   ItemPanel highest = null;
                   int highestPriority = -1;
                   int highestIndex = -1;
                   for (int i = 0; i < numComps; i++) {
                        if (comps[i] == null) continue;
                        ItemPanel current = comps[i];
                        int currentPriority = current.getPriority();
                        if (currentPriority > highestPriority) {
                             highestIndex = i;
                             highest = current;
                             highestPriority = currentPriority;
                   sorted[j] = highest;
                   comps[highestIndex] = null;
              c.removeAll();
              for (int i = 0; i < numComps; i++) c.add(sorted[i]);
              c.validate();
    1) Is this a good way to do it?
    2) If for example I would like another method, to sort according to some other property - say the Date date - do you usually write separate methods to accomplish this, or do you write a generic sort method and pass some flag to it? I my case, the loop uses a buffer variable to get the highest (above an int, as the priority is an int) - so even though the comparison itself is easy to implement (date.before(Date dt)), I run into trouble trying to make it generic as the "outer " top notation must have a type. Or what do you say about instead of an int, a wrapper Integer and then casting back and forth?

    Ok!
    Better?
    public void sortDate() {
          Container c = getContentPane();
          Component[] rawComps = c.getComponents();
          int numComps = c.getComponentCount();
          ItemPanel[] comps = new ItemPanel[numComps];
          for (int i = 0; i < numComps; i++) comps[i] = (ItemPanel)rawComps;
    Collections.sort(Arrays.asList(comps));
    c.removeAll();
    for (int i = 0; i < numComps; i++) c.add(comps[i]);
    and, in ItemPanel.java:
    public class ItemPanel extends JPanel implements Comparable<ItemPanel> {
          public int compareTo(ItemPanel item) { return date.compareTo(item.getDate()); }
          //...But, what about sorting according to different properties?
    How about a property of the list (.sortAccordingTo = "date") and then, in the compareTo method above, select case and return different comparisons depending on sortAccordingTo?

  • Nested object property in a form?

    Hi,
    I have a problem with nested object property in a form; the nested property could be business.address.zipcode, however, the Flex data binding doesn't support the "." operator. Any advice/hint/code sample will be greatly appreciated.

    It does support the dot operator, there are several examples below:
    http://livedocs.adobe.com/flex/3/html/help.html?content=databinding_4.html
    Have you tried? What problems did you have?

  • Nested object assignment to super type object

    Can anybody explain how objects, which are nested as attributes into other object and have type hierarchy, are assigned?
    Let view the following type hierarchy
    create or replace type OT_A as object (
    num number
    ) NOT FINAL;
    create or replace type OT_A1 under OT_A (
    num1 number
    In the next PL/SQL code I assign objects which are in type hierarchy:
    declare
    v_a OT_A;
    v_a1 OT_A1;
    begin
    v_a1 := OT_A1 (1,2);
    v_a := v_a1;
    dbms_output.put_line (v_a.num);
    end;
    After executing the fragment, '1' will be printed.
    Let now add a new type
    create or replace type OT_B as object (
    a1 OT_A1
    In the next PL/SQL code I will try to assign attribute (which is nested object) to its super type.
    declare
    v_a OT_A;
    v_a1 OT_A1;
    v_b OT_B;
    begin
    v_a1 := OT_A1 (1,2);
    v_b := OT_B (v_a1);
    v_a := v_b.a1;
    dbms_output.put_line (v_a.num);
    end;
    After executing the fragment, nothing will be printed. Variable v_a will not contain valid num attribute.
    Do I do something wrong or I can't do something like this at all?
    Oracle version: Oracle9i Enterprise Edition Release 9.2.0.2.0 - 64bit Production
    OS: HP-UX

    Elena,
    This looks like a bug. Do you have an Oracle customer id to file a TAR at http://metalink.oracle.com?
    Regards,
    Geoff

  • Queue Table on Nested Objects

    Queue Table with Nested Objects
    I need to create a queue table based on nested object
    These are my declarations
    TYPE TESTATATYPE AS OBJECT (
    CODICE VARCHAR2(5),
    DESCRIZIONE VARCHAR2(30)
    TYPE DETTAGLIOTYPE AS OBJECT (
    CODICE VARCHAR2(5),
    DESCRIZIONE VARCHAR2(30),
    VALORE NUMBER
    TYPE DETTAGLITYPE IS TABLE OF DETTAGLIOTYPE
    TYPE MESSAGGIOTYPE AS OBJECT (
    TESTATA TESTATATYPE,
    DETTAGLI DETTAGLITYPE
    Now i'm trying to create queue table
    DBMS_AQADM.CREATE_QUEUE_TABLE(queue_table => 'MsgQTab',
    queue_payload_type => 'MessaggioType',
    storage_clause => 'NESTED TABLE
    dettagli STORE AS dettagli_tab_Q',
    sort_list => 'priority,enq_time'
    but I get
    ORA-00904: invalid column name
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 2012
    ORA-06512: at "SYS.DBMS_AQADM", line 55
    ORA-06512: at line 3
    maybe the problem is storage clause, can you help me ?
    null

    Andrea,
    You cannot currently use a nested table even as an embedded object within a message payload.
    However, you can create an object type that contains one or more VARRAYs, and create a queue table that is founded on this object type. I guess this might be the problem you are facing.

  • How to get value of a nested object?!!

    I am writing a small game program in java(applet). I am not getting the value of a nested object in the paint method. Please help.
    the text marked as code is wrong. Can u tell me a simple method?
    s1.a[0].x will give error. What should I use?
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    class SnakeBit
         int x,y; //x and y are coordinates
         int position;
    public SnakeBit(int x, int y)
         this.x=x;
         this.y=y;
    public SnakeBit copy(SnakeBit a)
         this.x=a.x;
         this.y=a.y;
         return this;
    public int getValueX()
         int a;
         a=this.x;
         return a;
    public int getValueY()
         int b;
         b=this.y;
         return b;
    }//end of class SnakeBit.
    class Cell
         public int x,y;
    //************************************************Snake class***************************************
    class Snake
         public Snake()
                             SnakeBit a[]=new SnakeBit[5];
                             a[0]=new SnakeBit(8,4);
         public static void main(String args[])
                             SnakeBit a[]=new SnakeBit[5];
                             a[0]=new SnakeBit(8,4);
                             a[1]=new SnakeBit(8,5);
                             a[2]=new SnakeBit(8,6);
                             a[3]=new SnakeBit(9,6);
                             a[4]=new SnakeBit(10,6);
                             a[5]=new SnakeBit(10,7);
                             a[6]=new SnakeBit(10,8);
              Snake a1=new Snake();
         public void up(SnakeBit a[])
              move(a);
              a[0].y=a[0].y-1;
         public void right(SnakeBit a[])
              move(a);
              a[0].x=a[0].x+1;
         public void left(SnakeBit a[])
              move(a);
              a[0].x=a[0].x-1;
         public void down(SnakeBit a[])
              move(a);
              a[0].x=a[0].y+1;
         public void move(SnakeBit a[])
              a[6].copy(a[5]);
              a[5].copy(a[4]);
              a[4].copy(a[3]);
              a[3].copy(a[2]);
              a[2].copy(a[1]);
              a[1].copy(a[0]);
    }//end of class Snake.
    public class Game1 extends Applet //implements KeyListener
         Snake s1;
         SnakeBit aa;
         int sizeOfCell=10; //default=10
         int startX=20; //starting x position of board.default=20
         int startY=20;     //starting y position of board.
         int maxX=200;          //max x value of board, ie width. default=200
         int maxY=200;          //max y value of board ie height.
         boolean drawBoard;
         //int arrays which will store the values of the objects
         int x[]=new int[5];
         int y[]=new int[5];
         public void init()
              s1=new Snake();
              //drawBoard=false;
              //x=s1.getValueX();
              //y=s1.getValueY();
              //aa = s1.a[0];
         public void paint(Graphics g)
         //public void Mpaint(Graphics g, Snake s1)
              //if (drawBoard==false)
                   drawBoard=true;
                   g.setColor(Color.cyan);
                        for(int i=startX;i<=maxX;i=i+sizeOfCell)
                        for(int j=startY;j<=maxY;j=j+sizeOfCell)
                             g.fillRect(i,j,sizeOfCell,sizeOfCell);
                   g.setColor(Color.red);
                                  for(int i=startX;i<=maxX;i=i+sizeOfCell)
                                  for(int j=startY;j<=maxY;j=j+sizeOfCell)
                                       g.drawRect(i,j,sizeOfCell,sizeOfCell);
              for(int i=0;i<7;i++)
    <code>
              g.drawRect(s1.a[0].x * sizeOfCell, s1.a[0].y*sizeOfCell,sizeOfCell,sizeOfCell);
    </code>
    }//end of class Game.

    Those who feel the program is too big to solve,( actually the code is not well written, and documentation is nill)
    I will try to explain in my own words.
    There are only 3 classes
    1)SnakeBit
    2)Snake
    3)Game
    SnakeBits draws a small part of a snake.
    Snake draws the whole snake.
    In the constructor of the Snake class , one SnakeBit is created.(Actually we create 5 or more, but right now to make the problem clear, I have created only one.)
         SnakeBit a[]=new SnakeBit[5];
         a[0]=new SnakeBit(8,4);
    In the game class, a Snake is created.
    In the game class, I can access the members of the Snake class. But I cannot access the members of the SnakeBit class.
    I need to access the members of the SnakeBit class from the paint method. otherwise How am I going to draw it on the screen.
    So tell me a way to do it.
    I want to get the x and y variable of the SnakeBit class from the Game class.
    Please help.

Maybe you are looking for

  • Itunes 7 error

    idk if it too soon for anyone to help, but i just installed itunes 7 and restarted and not i get the error, "The iTunes application could not be opened. An unknown error occurred (0x666D743F)" and no i have no wave or synth playback on my computer. d

  • While in use, my Macbook Pro screen will go blank and the computer seems to freeze.

    I have a 13 inch MBP running Maverick.  Starting a few days ago, it will occasionally (once or twice a day) go blank (as does my second screen which is hooked to it) and the computer seems frozen.  I've tried the key strokes to force quit but it does

  • PO Hold Status

    Dear All, we have requirement like, If i created Purchase order with reference to UN-released Purchase requisition the PO has been saved on HOLD. I want to make validation, If my Purchase Requisition has been not released than User can not save PO on

  • Udiskie is only loading one external partition at once

    I tryed to set up udiskie according to the tutorial in the wiki. I created /etc/polkit-1/localauthority/50-local.d/10-udiskie.pkla and added udiskie & to my .xinitrc. And it works "a little bit" meaning that it recognizes a CD and one partition of my

  • SunFire E4900 Mysterious Reboot

    Hi!, One of our SunFire E4900's went down today and I am trying to figure out why. This is one of our most critical systems and any crash is considered a major issue to the company. I have opened a ticket with Sun but they were not too helpful statin