I'm working on a project where I have to extract data from mpp files, that are Sprint Project files. I'm using MPXJ, and now stuck as I cannot seem to find a way to retrieve data from the 'Sprint' and 'Boad Status' fields.
I have tried the Task.getFieldByAlias() method unsuccessfully and when I list the ProjectFile.getCustomFields() result, the problematic fields are not included there either.
I have also looked it up in the MPXJ documentation and I discovered that there is a TaskField enum type that has these elements and that TaskContainer.getPopulatedFields() returns with Set<TaskField> however when I list it in my code, 'Sprint' and 'Board Status' aren't in there either, even though in the mpp file they are not empty.
Does anyone know a way to extract data from those fields peferably via MPXJ? I'm even open to new ideas regarding the parser at this point.