When do you need a subprocess

In a discussion with some colleagues and the topic came up around rules of thumb for recognizing when you need to move a part of you workflow to a sub-process?
For example . . . when you clearly to define a new work unit to keep your token moving! When you need to change organizational levels might be a guide as well.
Thoughts?

My guess is that books could be written about this, but I can think of a
few common reasons:
1- The overall process is overly complicated
2- You can reuse the process
3- That part of the process changes very often
4- You talk and think about a part of the process as a single entity in
one ocasion and as a sequence of activities in another.
5- For some sequence of activities, you care when they start, but not when
they finish (asynchronus processing).
6- Division of labor: one person designs/implements process A, another one
process B.
7- etc.
My experience is that when you start talking about the process on early
stages, you leave some details out, draw some boxes, etc. Then you start
filling in the blanks and what at first looked like a single activity, has
now become several.
That moment is usually a good indicator that you might need to extract a
subprocess.
Regards,
Juan
On Thu, 29 Nov 2007 19:59:33 -0300, Andrew Davis wrote:
In a discussion with some colleagues and the topic came up around rules
of thumb for recognizing when you need to move a part of you workflow to
a sub-process?
For example . . . when you clearly to define a new work unit to keep
your token moving! When you need to change organizational levels might
be a guide as well.
Thoughts?--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/

Similar Messages

  • I am new to Macs and, although I like it, I still don't understand it's behavior. When would you need to provide the administrative password at boot time? Safe Mode?

    Background...
    I joined the Mac bandwagon about 2 months ago. I am still getting used to it, but like it so far. Last week, I activated a new Iphone on my Imac. I needed to key in my userid and password. 3 days later, my itunes account was hacked into. My itunes information was scrambled. My itunes email, home address, and password were changed. Also, they didn't use my credit card which was attached to my account to make any purchases (they deleted my card and put someone else's card on my account to buy $100 worth of gift cards). I didn't receive any emails from Apple that my password, or email were changed, but I did get 2 receipts from the Itunes Store identifiying the purchases. Apple support fixed everything, but couldn't offer any explanation on what happened, other than to say my account was "modified". I don't like coincidences.
    I freely admit that I didn't do enough to protect my login credentials as I used the same userid and password on multiple sites (since corrected). I still don't know how my account was accessed. I started to wonder if there may have been a key logger installed on my Imac without my knowing it. I am pretty careful with installing software and have purchase about 15 applications, all either from the itunes store, or from other reputable sources. I have never made any in-app purchases.
    I understand that to install a key logger you would need to supply the admin password, which brings me to my question....
    About 4 weeks ago, my wife was using the Imac on facebook. While she was there, the Imac experienced a hard crash. We had to do push and hold the button on the back of Imac to get it to shut down and reboot. When it came up, it required the admin password, and dropped me into a mode where it wouldn't recognize the external disk drive which was attached via USB. I needed to restart the machine and everything appeared to be normal. I assumed that this was Apples version of "safe" mode, but now I am not so sure. Could a key logger have been installed during this event? Is this expected behavior after a hard reset?
    I have McAfee for Mac installed and it hasn't detected any threats, but McAfee is pretty wishy-washy on it's ability to detect key loggers. I am thinking about Macscan or Little Snitch. I would do a reinstall of the OS, if I only knew how.
    Any help?

    your itunes accoutn have nothing to d with your computer
    you can go to any computer with internet access in the world and
    login into your itunes account if you have the appleID and password
    the itunes account is placed on apples itunes servers

  • When do you need to transfer from iPhoto to Photoshop?

    I have a new macbook, with iPhoto and am enjoying it. i hear photoshop C2 is amazing and wanted to ask when and if i should transition to it?
    i usually just edit photos simply to put on my myspace or make albums and print out. would it be wise to invest in photoshop or is iphoto good enough?

    Decemberist
    i usually just edit photos simply to put on my myspace or make albums and print out. would it be wise to invest in photoshop or is iphoto good enough?
    If this is what you're doing, stick with iPhoto. PS doesn't 'do' albums. PS is an image editor. It's industrial level, with a considerable learning curve. It's expensive, very expensive. And while what it can do is amazing, learning how to do the amazing things takes a long time. I have a 600 page book here about an earlier version of PS. If you feel the editing facilities are not enough for you on iPhoto, then check out Photoshop Elements, a consumer level version of PS. A lot less expensive.
    Regards
    TD

  • When do you need to register the message bundle in the faces-config

    hello
    i have applied two examples to localize messages, label, title by creating message.properties file and utilizing the f:loadbundle component the EL expression. It works like a charm without having to register anything, I have only registered the locale, but not the bundle
    also , i have used a programmatic approach
    FacesContext fc = FacesContext.getCurrentInstance();
    ResourceBundle msg = ResourceBundle.getBundle("message",fc.getViewRoot().getLocale());
    fc.addMessage(FacesMessage.SEVERITY_FATAL.toString(),new FacesMessage(msg.getString("ok")));
    which also worked without registering the message bundle!!
    although many article i read ask to register the message bundle.
    Another thing is that in Oracle Jdeveloper 10g for FORMS and PL/SQL Developers states that the message file needs to be located in \resource subdirectory
    and using getBundle (resources.message) to get it. In fact i kept getting errors indicating that the base bundle cannot be read until i located the file in the ViewContoller directory itself (and that is why i reference it with getBundle("message") rather than resources.message as indicated in the book.
    appreciate your response
    ammar sajdi
    amman - jordan

    Hi,
    Your question is not very clear. But let get through some various guideline.
    <f:loadBundle/> is horribly buggy and was all but removed from the specification. As a tag, it gets only evaluated during the render view phase, meaning that if you have EL expression referring the loadBundle's var during another phase, it's going to fail. The most common case is during validation with overridden messages.
    About the programmatic access, the problem is that you're linking your application to a specific bundle at code level. Meaning that you're preventing it to be reused in a different context, while the following get the most application local bundle name (faces-config.xml's message-bundle property)
    Resourcebundle.getBundle(FacesContext.getApplication().getMessageBundle())Registration is also the only way to override the default conversion / validation messages.
    For JSF 1.1 (10g), those are your option. However, if you're using JSF 1.2 (11g), you can also register resource bundles in the faces-config file, you then register the bundle and the var associated to it, removing the need of f:loadBundle and fixing the non render phase issues. furthermore, the code version is also simplified to:
    FacesContext context = FacesContext.getCurrentInstance();
    ResourceBundle bundle = context.getApplication().getResourceBundle(context, "varName");
    bundle.getString("myKey");You other part about \resource I never heard of nor cared for. You can place the bundle where you like on the classpath.
    Regards,
    ~ Simon

  • When do you need Internet Tethering rather than Blackberry Bridge?

    I've been using my new Playbook Bridged to my Bold 9700 since I got it. Since I've been able to get to every site I wanted to get to on the browser all of this time using the Bridge, I didn't even know about Tethering.
    Today I was attempting to setup some new email addresses to the Playbook, and it said that it couldn't do it till I enabled the Internet Tethering option. The tethering would occur to the same Bold 9700 anyways that it is currently Bridged to. So what are the times that Tethering is required rather than the Bridge?
    Solved!
    Go to Solution.

    Bridge mode works as an extension of the phone. Browsing with tether gives greater speed and better stability especially with sites that stream or load with a lot of data.
    Tethering uses the phone as a mobile modem rather than a pass through data device. When bridged the tablet is read back as if it is a phone rather than a stand alone tablet computer type device. In the bridge mode some sites may appear as if for a mobile phone rather than for a tablet or computer.
    My preference is to use tethering whem web browsing. I use the bridge mode mainly for email, schedules, and PDA type functions.
    Jerry G.
    Jerry G.

  • What do you do when what you need to open is in adobe flash? Is there an app that can be used in place do adobe?

    I am unable to access anything that is in adobe flasH on my ipad2.  Is there an app or way to access items in adobe?

    Patricia ~ Click here:

  • When I try to open a recent document I get the following message "You need a newer version of Pages to open this document."  I have downloaded version Pages version 5.2.2 and the app store confirms this, but my Pages About reports that I am using 4.3

    When I try to open a recent document I get the following message "You need a newer version of Pages to open this document."  I have downloaded version Pages version 5.2.2 and the app store confirms this (and won't let me download it again), but my Pages About reports that I am using 4.3

    Here is the solution that I received from the chat line.
    When you update applications like Pages it usually keeps both versions on the computer. So what most likely happened is it didn’t put the new version on your dock. So to fix this, open a finder window. And go into applications which should be listed on the left. Scroll down and you will see Pages listed in here. And the icon should look different. You can drag that icon down onto your dock.Open that and you then can access your documents

  • When I try to open a spreadsheet on my Mac that I worked on with my iPhone, I get "You need a newer version of Numbers to open this spreadsheet." When I go to the App store, it says I already have it. I have v. 2.3 and can't seem to download newer version

    When I try to open a spreadsheet on my Mac that I worked on with my iPhone, I get "You need a newer version of Numbers to open this spreadsheet." When I go to the App store, it says I already have it. I have v. 2.3 and can't seem to download newer version.

    If you are running Mavericks, and the Mac App store says you are up to date, then you have Numbers 3.2 as well as Numbers 2.3. You are getting the "Need a newer version message because your Mac is trying to open the document using Numbers 2.3.
    Launch Numbers 3, then open the document from within that app, or right click/control-click the document and choose Open with Numbers 3.x.
    Regards,
    Barry

  • All of a sudden my itunes wont come up when i hit the desktop icon. un and re installed many times, tried new users, it finally gave me "you need to reinstall sqmapi.dll " im a noob and i have know idea what that is or where i can get it. i cant open any

    all of a sudden my itunes wont come up when i hit the desktop icon. un and re installed many times, tried new users, it finally gave me "you need to reinstall sqmapi.dll " im a noob and i have know idea what that is or where i can get it. i cant open any file or library that has anything to do with itunes except safari and quicktime are fine. im about to pull out whats left of my hair.

    Okay, that's got one thing ruled out at least.
    Can you check something for me, big? I'd like to see if iTunes launches with the Bonjour Service disabled.
    In your Start menu, right-click Computer and select "Manage".
    Expand "Services & Applications".
    Open "Services". (Perhaps maximise the screen to better see what's going on.)
    Right-click the Bonjour Service and select "Properties".
    In the General tab, set the Startup type to "Disabled":
    ... and click OK.
    Restart the PC and try launching iTunes. Does it open this time?

  • When I try and open adobe illustrator I get a pop up message saying "To open "Adobe Illustrator CS6" you need to install the legacy Java SE 6 runtime."

    When I try and open adobe illustrator I get a pop up message saying "To open “Adobe Illustrator CS6” you need to install the legacy Java SE 6 runtime." it also says "Click “More Info…” to visit the legacy Java SE 6 download website." When i click more info it transfers me to an apple page which never loads, its just a blank page. I downloaded Java SE 6 like it says it needs but it did nothing. All of my other Adobe programs such as bridge, dreamweaver, lightroom, Photoshop, indesign, and flash all work except for illustrator. What can I do to fix this?

    Go to Apple and look for the Java for OSX 2014-001 link. Download from there and install it.

  • To open you need a Java SE 6 runtime. Why, when I have 1.7 installed?

    PREFACE: I've read most of the posts on here that discuss this issue but none have provided a real answer to this.
    I'm on Moutain Lion w/ all the latest updates from the App Store.
    I've installed Oracle's latest Java JDK (7u11) because of the recent security issue. When I go to Terminal and type in "java -version", it's the latest version of Oracle's 1.7. I don't have Apple's 1.6 version of Java on my system. I've verified that by checking in the appropriate System folder for the 1.6 JRE & JDK.
    So all seems to be fine so far and per Apple's recommendation, I'm using Oracle's latest version of Java.
    So when I go to run Charles debugging proxy, which is a Java desktop app, I get the following message in a dialog:
    "To open "Charles,” you need a Java SE 6 runtime. Would you like to install one now?"
    If I have the latest Oracle Java version installed, why am I being prompted to install Apple's 1.6 version?
    I've had this prompt in the past and went through the install before. Contrary to what another poster in another thread says, choosing install at the prompt ignores the fact that 1.7 is installed and does in fact install Apple Java 1.6. It's an outdated version of Java which I don't want on my system.
    Why do I need to install Apple's 1.6 when Oracle's Java 1.7 latest is already there?
    Rey

    Rey Bango wrote:
    If I have the latest Oracle Java version installed, why am I being prompted to install Apple's 1.6 version?
    Rey
    You would need to ask the "Charles" developer that question. There seem to be quite a few issues regarding Java 1.6 and 1.7 with the Oracle version causing the most trouble. This, of course, is not an Apple problem to solve. The Java community and Oracle need to sort out their troubles.
    You can, of course, have both versions on your system but you need to do some terminal work to switch between them. Apple has a tech support document that explains how to do that.

  • Updated pages today but when I try to open a document I created I get a message saying you need new version, but i have the new version! So frustrating - HELP!

    Updated Pages today - created a document. Went back few hours later to send it as email attachment - got a message saying Pages needs to be updated to open. Went to Mac app page and it said it was updated. Document won't open - what do I do???? Keeps saying to upgrade but it is upgraded - ARGH!

    Here is a possible solution.
    You should still have Pages 4.3, the old version, on your computer in Applications>iWork09. If you have the old Pages 4.3 running when you open the file, Pages 4.3 will warn you that you need to update because the new Pages uses a different file format. You can open the file in two ways.
    Quit Pages 4.3, then open the file.
    Right-click the file and choose to open the file in Pages 5.0.
    I hope this helps.

  • Pages '08 says "You need a newer version of Pages to open this document." when opening a Pages '08 Document

    Created a document 3 years ago with Pages '08.  Got a new Mac last summer, migrated my user account, reinstalled Pages '08.  Upgraded to Mavericks recently.
    Now when trying to open the document I get the message "You need a newer version of Pages to open this document." 
    Note that I have read a number of the messages here that are similar.  To be clear there is only one Pages (Pages '08) on this system.  Its in the iWork folder.
    Is it the case that this document and all the other Pages '08 documents on my system are lost forever? 
    BTW I have looked at the new version of Pages.  Its just plain awful from UX to quality.  What has gone wrong at Apple and specifically in the iWork group in the past few years???
    Thanks for any help!
    K
    And in trying to post this I got the "You are not allowed to create or update this content"  Changed the Community from what was automatically selected and seems to work now.  Whats with Apple Engineering and QA these days??? 

    I've never had Pages 5 on my system.  Just to confirm I copied the file to a USBDrive and gave it to a friend to try out.  He has Pages 5 on a new MBP with latest Mavericks.  When he tried to open it he got the following message:
    "You document will open in the new Pages for Mac.  If you save it or edit it, you'll need the latest Pages on iOS7 to open it on an iOS device."
    But it did open on his system.  He closed it, no save, and reopened but did not get the above message again.
    We concluded that the file is actually a Pages '08 file because of the above message.
    However we also suspect that when this file was simply opened in Pages 5.2.2 on his system it got flagged and possibly converted which is actually quite offensive!
    Thoughts/Advice?

  • "I have pages 5.1 but when I try to open a page on my desk top.. a message comes up - You need a newer version of pages to open this document.  How do I set my computer to open a page?"

    "I have Pages 5.1 but when I try to open a page on my desk top.. a message comes up - You need a newer version of pages to open this document.  How do I set my computer to open a page on my desktop?"

    You have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Pages 5 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Note: Apple has removed over 90 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • When I click on a saved document or spreadsheet, I get this message You need a newer version of Numbers to open this document.  When I go Software update, there is no update for pages or numbers.  can't purchase or update?

    when I click on a saved document or spreadsheet, I get this message 'You need a newer version of Numbers to open this document'.  When I go Software update, there is no update for pages or numbers.  can't purchase or update?
    Trying re-purchasing.  won't let me.  says to check for updates?
    any suggestions

    It sounds to me as though you are attempting to open a Pages 09 document with the Pages 08 application. If you do have Pages 09 on your computer, it may be that for some reason an existing Pages 08 application is invoked accidentally.
    Jerry

Maybe you are looking for

  • Reading XML file having various foreign languages from web application.

    Greeting.. I'm dealing with a so-called serious problem where-in: I've to read one of the configuration files(XML files) having values in different foreign languages (like Chinese, Japanese, Arabic etc). I've to read that file contents, in as it is f

  • Clicks and Pops Soundtrack Pro does not get rid of?

    How do I edit out (reduce) clicks, pops? (Soundtrack Pro's fix all does not take care of that!) What I call clicks (noise) show up in the sample editor as a straight line. I have seen videos of somone erase, shorten these noise-spikes in other applic

  • MultipartRequest java.io.IOException: Corrupt form data: premature ending

    i try to upload a file using MultipartRequest i want to get the name of the file uploaded with html form and display it on jsp page (just for now to see if it works) in server.log i see Error creating file: java.io.IOException: Corrupt form data: pre

  • Count me in. iMac can't read burned DVD-Rs. Fixes?

    I've browsed through the posts here and see quite a few people with the same (or a similar) issue. My computer no longer "sees" burned DVD-Rs. It spins and spins, then (without any sort of error message) spits it out. It recognizes commercial DVDs ju

  • Loading external text, transition effects

    does anyone know how the text effect seen on addition.com (under the details section) is made? Also, can it be made by loading an external text file? if anyone can help or point me in the right direction of a tutorial, it would be greatly appreciated