Org-mode job dependency

I am trying to set up an org-capture or org file for the following problem:

Objective A is the main objective. It depends on the secondary tasks B and task C. Now, in the org-agenda view, I should be able to see task B and task C.
 When they are done, I can see task A in the agenda. I want to generalize if possible, for example task B might depend on task D and task E.

How can I achieve this?
Thank.

+3


source to share


1 answer


Take a look at org-enforce-todo-dependencies

. Here is the help line:



org-enforce-todo-dependencies is a variable defined in β€˜org.el’.
Its value is t
Original value was nil

Documentation:
Non-nil means undone TODO entries will block switching the parent to DONE.
Also, if a parent has an :ORDERED: property, switching an entry to DONE will
be blocked if any prior sibling is not yet done.
Finally, if the parent is blocked because of ordered siblings of its own,
the child will also be blocked.

      

+4


source







All Articles