I am having an issue with storing a FULL datetime back to SDE when using FeatureLayer.applyEdits.The scenario is the user has a dialog where they choose a date from a mx DateField and also has a yahoo TimeStepper where they choose the time. A new date is created in ActionScript using this line:vvar bDate:Date = new Date(DTPicker1.selectedDate.fullYear,DTPicker1.selectedDate.month,DTPicker1.selectedDate.date,DTPicker3.value.hours,DTPicker3.value.minutes,0,0);
Which when debuging shows the date as:bDate = <Sun Nov 6 19:00:00 GMT-0600 2011> (@d3150c1)
This is accurate as the date entered in the Dialog was 11-6-2011 7:00 PM Central Standard Time. What is entered in SDE though is 11/7/2011 1:00:00 AM (not talking about what is returned by Flex).I'm not sure what do do here.