I am using this code:
IInfoObjects instances = infoStore.query("select top 6400 * from CI_INFOOBJECTS where SI_INSTANCE=1 and SI_SCHEDULE_STATUS in (0, 1, 3, 8, 9);
for (int I = 0; I < instances.getResultSize(); I++) {
IInfoObject instance = ((IInfoObject)instances.get(I));
ISchedulingInfo schedulingInfo = instance.getSchedulingInfo();
}
how can I get the start/end/completion dates from the ISchedulingInfo or anywhere else?
Thank you.