Hi
My Name is DongSoon Park
I am export Data to MS Project File.
But i have a problem.
I set wbs Id but in the middle, There isn't data some place.
If you see the picture, There is no data in the middle.
Please help me.
Why There are no data?
// set Task
Task newTask = prj.addTask();
newTask.setWbs(activityID);
newTask.setName(name);
newTask.setOutlineLevel(Integer.parseInt(level) + 1);
newTask.setDuration(Long.valueOf(planDuration));
if (!"".equals(planStart)) {
newTask.setStart(format.parse(planStart));
}
if (!"".equals(planEnd)) {
newTask.setFinish(format.parse(planEnd));
}
if (!"".equals(realEnd)) {
newTask.setActualFinish(format.parse(realEnd));
}