Sorry, sovled it. Just needed to call the correponding function :-)
_Curtney
On Monday 26 July 2004 10:37 am, Curtney Jacobs wrote:
> Thanks so much!
>
> Is there a way to get the individual date valus (i.e year, month, day)
> without parsing the string?
>
> _Curtney
>
> On Monday 26 July 2004 04:18 am, Michiel Meeuwissen wrote:
> > > I am doing something like the following in my code:
> > >
> > > node.getStringValue ("publication_date");
> > >
> > > However, the result does not match what I am seeing in the GUI.
> > >
> > > Any suggestions?
> >
> > If you need the result from GUI, then you should ask the GUI value of
> > that field.
> >
> > node.getFunctionValue("gui", new ArrayList().add("publication_date")) or
> > node.getStringValue("gui(publication_date)") or so.
> >
> > Otherwise simply a String respresentation of the LONG value is returned.
> >
> > Michiel