Mike
I do not think that you need retreval code for this
maybe a calcuated property
property D1 as %Integer;
index customID on D1[primarykey,idkey];
property AppointmentDateTime as %String[calculated];
method AppointmentDateTimeGet() as %String
{
quit $zdt(..D1,3) //or whatever
}
once you have the data mapped you can put all the other Cache Object
stuff ontop of the storage layer !
Hope this is what u need
Peter
On Fri, 30 Jul 2004 13:54:26 -0800, "Mike Baker"
<[EMAIL PROTECTED]> wrote:
>I have a global mapped using SQLstorage and I am wondering about the
>retrieval code box. I have always just used the node delimiter and piece
>but I have a property that is actually a date and is substitute name for the
>subscript. What I was hoping to do is to have the subscript named D1 and
>the Property named AppointmentDateTime with D1 being a numeric and
>AppointmentDateTime being a user defined date class that I have. So
>something like AppointmentDateTime=D1. Can you do this with retrival codes?
>