The Omni Group Forums

The Omni Group Forums (http://forums.omnigroup.com/index.php)
-   OmniPlan Extras (http://forums.omnigroup.com/forumdisplay.php?f=45)
-   -   Export lists of tasks assigned to someone (http://forums.omnigroup.com/showthread.php?t=7248)

Owen Linzmayer 2008-02-21 07:33 AM

Export lists of tasks assigned to someone
 
I am new to OmniPlan, so forgive me if this is "obvious" to you old hands.

I have created a construction project chart with hundreds of tasks and have dutifully assigned most of them to different people (resources). What I'd like to do is print out a list of tasks that a given person has yet to complete. Essentially this could act as their checklist for what needs to be done on any given day.

Ideally I could crank out a batch of task lists, separated by who needs to complete those tasks.

It seems to me that this would be a natural need for almost all users of OmniPlan, but I can't for the life of me figure out how to do it in OP 1.5, which I downloaded just yesterday. Any help you can provide is greatly appreciated.

skwirl 2008-02-27 10:42 PM

[QUOTE=Owen Linzmayer;33330]I am new to OmniPlan, so forgive me if this is "obvious" to you old hands.

I have created a construction project chart with hundreds of tasks and have dutifully assigned most of them to different people (resources). What I'd like to do is print out a list of tasks that a given person has yet to complete. Essentially this could act as their checklist for what needs to be done on any given day.

Ideally I could crank out a batch of task lists, separated by who needs to complete those tasks.

It seems to me that this would be a natural need for almost all users of OmniPlan, but I can't for the life of me figure out how to do it in OP 1.5, which I downloaded just yesterday. Any help you can provide is greatly appreciated.[/QUOTE]

You can use OmniPlan's filtering feature to do this. Just go to "View" > "Filter Task" and set the criteria to only show tasks that match your criteria, like a resource containing a certain name.

Once the filter is applied, you'll only see tasks that match the criteria and you can export/print the filtered view.

Owen Linzmayer 2008-02-28 11:19 AM

Thanks. That's a step in the right direction, but there's no way to save filters for future use, and it appears I would have to step through the process for every worker resource because there's no batch capability.

Tom Dibble 2008-03-05 04:28 PM

[QUOTE=Owen Linzmayer;33653]Thanks. That's a step in the right direction, but there's no way to save filters for future use, and it appears I would have to step through the process for every worker resource because there's no batch capability.[/QUOTE]

My first thought was to create an AppleScript to do this. Under "Task" there is a "filtered" property, which (according to the dictionary) can be turned on and off (it is not marked "r/o").

However, a simple script (below) which just sets that value to "true" gets an error:

[QUOTE]OmniPlan got an error: [<OPTask 0x17795c60> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key isFilteredOut.
[/QUOTE]

So, this hit a dead end.

FWIW this is the script:

[CODE]
tell application "OmniPlan"
-- Note: Inspector has "" as its name, and is often the front!
set frontWindow to front window where name is not ""
set selTasks to selected tasks of frontWindow
set namelist to ""
repeat with curtask in selTasks
if namelist is not "" then set namelist to namelist & "; "
set namelist to namelist & (name of curtask)
end repeat
display dialog "Filtering view to remove tasks: " & namelist
repeat with curtask in selTasks
set filtered of curtask to true
end repeat
end tell
[/CODE]

sydneyshan 2008-09-03 03:12 AM

I don't suppose anyone has made any progress on this front...? I'm in a similar boat where I want to export an iCal file for each resource (person) in my project file... I know seven programming languages but can't work out Applescript!! Has anyone successfully written an Applescript that saves each resource's tasks out as an iCal .ics file (filtered to only include work that isn't 100% complete for each resource/person)...

Lizard 2008-09-03 08:26 AM

File > Export. Choose the HTML Report.
It will create iCal files for each resource, among other things.

sydneyshan 2008-09-03 02:21 PM

When I choose this the application freezes/hangs indefinately... 3 minutes and counting. I only have 5 resources and maybe 60 tasks... I've had the same happen when exporting an iCal document also. What should I do?

Lizard 2008-09-04 02:33 PM

Hmm...roughly how long is your project? I mean in calendar days.

If you'd be willing to send us a copy of your project, we can figure out why it's taking so long. If your document contains confidential information, OmniPlan can generate a generic copy for you to send us:

1) Open your file in OmniPlan
2) Choose "Send Feedback" from the Help menu.
3) Click the button to include your file
4) OmniPlan will generate a copy of your file, with all the task and resource names changed, and all the notes changed to x's. The file will get attached to an email.

5) Add a note in the email explaining that you're trying to export to iCal, and review the attachment if you'd like, to ensure none of your sensitive data is included. Then send it to us (omniplan@omnigroup.com).

sydneyshan 2008-09-04 03:14 PM

Thanks Lizard... I have now done this...


All times are GMT -8. The time now is 07:23 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.