Documenting process sequence - anyone got a better way?

Hi
I am using OWB v9.2.0.2.8
I am trying to document my process flows and the sequence the various activities run in. Unfortunately I can't find anywhere where the sequence of the activities is stored.
I have been trying to guess my way around the system tables/views but no luck. I got hopeful when I found ALL_IV_PROCESS_TRANSITIONS.TRANSITION_ORDER but all contain zero so it was no help.
The best method I have found is to edit the activity descriptions in the process flow and insert a sequence number, then the following SQL will give me the listing I want:
Select
L.PROJECT_NAME ,
A.PROCESS_NAME,
A.ACTIVITY_NAME ,
A.UPDATED_ON,
A.ACTIVITY_TYPE ,
A.BOUND_OBJECT_NAME ,
A.DESCRIPTION
from
ALL_IV_PROCESS_ACTIVITIES A,
ALL_IV_PROCESSES P,
ALL_IV_PACKAGES K,
ALL_IV_MODULES M,
ALL_IV_LOCATIONS L
WHERE A.PROCESS_ID = P.PROCESS_ID
AND P.PACKAGE_ID = K.PACKAGE_ID
AND K.SCHEMA_ID = M.SCHEMA_ID
AND M.LOCATION_ID = L.LOCATION_ID
ORDER BY L.PROJECT_NAME ,
A.PROCESS_NAME ,
A.DESCRIPTION,
A.ACTIVITY_NAME
Unfortunately this is a pain as I need to edit every activity in every workflow (to limit work in the future I have done the old BASIC trick of numbering each items in 10's)
Has anyone got any better ideas on how to document these?
(the standard GUI printout is a pain as it does not show the full activity name)
Sandra

Hi. To clarify my role is basically to set up this in a organization so If I fully had it my way I would stick with FCP Green Screen Tools. The reason Im using boris is because the user who will be editing on the machine really does not earn the title of "editor". So ive had to set them up with really easy, really fast ways to get this done.
To sum it up they are used to using 'Visual Communicator"
Go here to check it out----http://www.realnetworks.com/products/visualcommunicator/index.htm
Thankyou for your helpful advice though. I will check the realtime settings.
All of my sequence and capture setting look right though?
DV NTSC 48kHz?
DV NTSC 48kHz?
I mean I know they are right I guess Do you think I can change them to a worse quality or something because utmitly it will end up on the web?
Thankyou for you help.

Similar Messages

  • Anyone got a quick way to convert 1,158 AppleWorks files to MSWord?

    Welcome. Lion.
    I think.
    Before that happens I have 1,158 old AppleWorks files I need to be  able to consult, after Lion.
    So I need to convert them all to something that's going to be readabile in Lion.
    Some are Word Processing files, some are databases, some are drawing files, and some are spreadsheets.
    Does anyone have a quick fix for this?
    TIA

    as babowa says, iWorks will open Word Processing and Spreadsheets in Pages and Numbers respectively.
    Databases are a different kettle of fish. There currently isn't a database application in iWork, and Numbers won't open them (just tried a few to be certain).
    There is a database app called Bento from Filemaker which apparently can open Appleworks database files, but it appears you have to change the file extensions first. I can't make any recommendation as I've never tried it.
    Drawing files will also likely need a third-party solution. I don't have any, so haven't looked around on that front, but I think I remember someone mentioning a couple in another thread some time ago. Hopefully they'll spot this one and wade in to help.
    As for batch conversions - might be possible with AppleScript or Automator, but I'll leave that to others.

  • A better way to make Automator mount a volume?

    I made an Automator application, using the Record function, to mount a volume on a drive connected to my Mini. I also made a similar one to eject it. I use them as Calendar-triggered events as part of my backup scheme.
    They work well ... until I restart the Mini, when occasionally my two connected drives will mount in a different order. What happens then is that the sequence of mouse clicks recorded in Automator don’t find the correct volume.
    I wonder if there’s a better way to automate the mounting of a currently ejected disc (and later its ejection). Automator, as far as I can see, does not have the actions I need. It has Ask For/Connect to/Get specified Servers, but they seem only to be for network-connected stuff.
    Anyone know a better way?

    Welcome to Unix. 
    The key part of that shell script code is the test for the existence of the mount point (if [ -e /Volumes/dbamp ]), followed by a conditional block that — in the "else" section involved when the mount point wasn't found — creates it, and then mounts an AFP file system on that mount point.  Most of the rest of the baggage in that script is used to get the mysqldump database dumps over onto the target disk, once it's been mounted.
    Here's a very quick overview of the basics of scripting , Apple's introduction to the command line manual, there's a generic bash intro (which is good, but doesn't line up exactly with how bash is implemented on OS X) and O'Reilly has some reasonable books on bash and bash scripting.  Once you know and are comfortable with the basics, there are advanced bash guides available.

  • Is there a better way to stop a Method than Thread.stop()?

    First my basic problem. In one of my programs I am using constraint solver. I call the constraint solver with a set of constraints and it returns a Map with a satisfying assignment. In most cases this works in acceptable time ( less than 1 second). But in some cases it may take hours. Currently I am running the function in a Thread and using Thread.stop(). This look like that:
         public Map<String, Object> getConcreteModel(
                   Collection<Constraint> constraints) {
              WorkingThread t=new WorkingThread(constraints);
              t.setName("WorkingThread");
              t.start();
              try {
                   t.join(Configuration.MAX_TIME);
              } catch (InterruptedException e) {
              if(t.isAlive()){
                   t.stop();
              return t.getSolution();
         }where t.getSolution(); returns null if the Thread was interrupted.
    Unfortunately this sometimes crashes the JVM with:
    # A fatal error has been detected by the Java Runtime Environment:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000006dbeb527, pid=5788, tid=4188
    # JRE version: 6.0_18-b07
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (16.0-b13 mixed mode windows-amd64 )
    # Problematic frame:
    # V  [jvm.dll+0x3fb527]
    # An error report file with more information is saved as:
    # F:\Eigene Dateien\Masterarbeit\workspace\JPF-Listener-Test\hs_err_pid5788.log
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    #Does anyone knows a better way to do it?
    Thank you in advance.
    Note 1: the Constraint solver is a Third Party tool and changing it is unfeasible. (I have tried it already)
    Note 2: Using Thread.stop(Throwable t) only chances the error message.

    In case somebody have the same problem here my code which solves the problem. Note it requires to parameters and the result to be serializable.
    The Class which starts to Process:
    public class Solver{
         public Map<String, Object> getConcreteModel(
                   Collection<Constraint> constraints) {
                   try
                        Process p=Runtime.getRuntime().exec(...); //do not forget the classpath
                        new TimeOut(Configuration.MAX_TIME, p).start();
                        ObjectOutputStream out=new ObjectOutputStream(p.getOutputStream());
                        new ErrReader(p.getErrorStream()).start();//not that std.err fills up the pipe
                        out.writeObject(constraints);
                        out.flush();
                        ObjectInputStream in=new ObjectInputStream(p.getInputStream());
                        return (Map<String, Object>) in.readObject();
                   catch(IOException e)
                        return null;
                   } catch (ClassNotFoundException e) {
                        //should not happen
                        return null;
         // For running in a own process
         static private class TimeOut extends Thread
              private int time;
              private Process p;
              public TimeOut(int time, Process p)
                   this.time=time;
                   this.p=p;
              @Override
              public void run() {
                   synchronized (this) {
                        try {
                             this.wait(time);
                        } catch (InterruptedException e) {
                   p.destroy();
         static class ErrReader extends Thread
             InputStream is;
             ErrReader(InputStream is)
                 this.is = is;
                 this.setDaemon(true);
             public void run()
                 try
                     InputStreamReader isr = new InputStreamReader(is);
                     BufferedReader br = new BufferedReader(isr);
                     String line=null;
                     while ( (line = br.readLine()) != null)
                         System.err.println(line);   
                     } catch (IOException ioe)
                         ioe.printStackTrace(); 
    }And the class which executet the Program
    public class SolverProcess {
          * @param args ignored
         public static void main(String[] args){
              try {
                   ObjectInputStream in =new ObjectInputStream(System.in);
                   SolverProcess p=new SolverProcess();
                   p.constraints=(Collection<Constraint>) in.readObject();
                   p.compute();
                   ObjectOutputStream out=new ObjectOutputStream(System.out);
                   out.writeObject(p.solution);
                   out.flush();
              } catch (Exception e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              //System.err.println("solved");
              System.exit(0);
         private Map<String, Object> solution=null;
         private Collection<Constraint> constraints;
           private void compute()
    }

  • I have coloured vertical lines about a quarter of the way from the left of the picture when using my apple tv 2. Anyone got any idea what is causing it. Have done a reset but still same. ATV2 is only a month old.

    I have coloured vertical lines about a quarter of the way from the left of the picture when using my apple tv 2. Anyone got any idea what is causing it. Have done a reset but still same. ATV2 is only a month old.

    Just to make sure, try a different set of cables. If the problem persists, have the unit replaced by Apple.

  • Adobe support is hopeless, there must be a better way, if not it might be better to get a different movie program. is anyone having the same problem?

    adobe support is hopeless, there must be a better way, if not it might be better to get a different movie program. is anyone having the same problem? 

    This is like buying a GM car and being told to talk to otherGM customers on how to fix your car yourself.  It it the blind leading the blind.   I have wasted many days and weeks because I cannot find solutions.  I have rarely gotten a solution from any similar forum, and more often been told by other members that I should buy what they have or that I should not want to make this or that type a disc, etc., and rarely a suggestion that is useful.

  • Hi guys, I recently got a new MacBook Pro with a USB Superdrive. A disc won't eject, does anyone know of a way to eject it? I'm in Morocco for the next 10 days so going to an Apple store is not possible. Any help would be gratefully received, thanks

    Hi guys, I recently got a new MacBook Pro with a USB Superdrive. A disc won't eject, does anyone know of a way to eject it? I'm in Morocco for the next 10 days so going to an Apple store is not possible. Any help would be gratefully received, thanks

    Five ways to eject a stuck CD or DVD from the optical drive
    Ejecting the stuck disc can usually be done in one of the following ways:
      1. Restart the computer and after the chime press and hold down the
          left mouse button until the disc ejects.
      2. Press the Eject button on your keyboard.
      3. Click on the Eject button in the menubar.
      4. Press COMMAND-E.
      5. If none of the above work try this: Open the Terminal application in
          your Utilities folder. At the prompt enter or paste the following:
            /usr/bin/drutil eject
    If this fails then try this:
    Boot the computer into Single-user Mode. At the prompt enter the same command as used above. To restart the computer enter "reboot" at the prompt without quotes.

  • There's got to be a better way to do this (RAM preview frustration)

    I loaded a 1:20 second Full HD clip into after effects. I need to edit the video based on certain sounds in the video and see if I'm matching them up correctly by previewing it with sound.
    The problem is i'm getting frustrated due to After effects not behaving like Premiere. First who thought it was a good idea not to incorporate sound into after effects? Second, I have an i7 sandy bridge processor, and 16 gbs of ram, yet it still takes time to render the ram preview (with no effects on it yet).
    So ram preview is my only option for sound, but the problem is every time I hit ram preview it starts the video all the way from the beginning. This is frustrating as I want to start at a specific point. Imagine having a longer video where the editing needs to take place at the end.
    There are people out there doing a lot more complicated professional projects, what do you guys do to get around this?
    Why can't after effects do some basic things like premiere like render fast with sound? Is it due to Mercury engine and 64 bits?
    This is one of the best products on the market, surely there is a better way to do this right?

    but the problem is every time I hit ram preview it starts the video all the way from the beginning.
    Window --> Preview, enable the "From current time" option
    yet it still takes time to render the ram preview (with no effects on it yet).
    There is no magic button. If it is compressed, naturally it needs to be decompressed and decoded first. This can consume resources even on fast machines. Furthermore, drive speed matters a lot in such cases. This might actualyl multiply, if you use multiprocessing, so for this kind of simple setup it's usually better to not use it. If your harddrives are fragmented or simply generally slow, frames cannot be loaded as fast and neither will AE be able to use the disk cache. Ergo, convert the footage and move it to the fastest drive in your system.
    what do you guys do to get around this?
    We preview at reduced compo resolution to extend RAM previews and place markers while the RAM preview plays using the * key on the numpad.
    Mylenium

  • Have you got a better idea? Is there a better way? ( arrays )

    Hello!
    First post here and ofcourse it is a question I hopo you people don't mind. I will get right to the point:
    I have a picture , or to be precise the pixels of a picture stored as a 3 dimensional array in the form of
    img[y][x][color].
    Since I am working on grayscale the color doesn't matter , so de facto I have a 2dim array of X-Y coordinates. For my programm ( a line tracker of sorts) I need to be able to select a subgroup of this array. This subgroup should be equivalent to a small (appr. 10x20 pixels wide) box in the original picture. My problem is that this box could be at any angle, that is it's side do not have to run parallel to the x-y-Axis.
    Now how would be the best way of doing this?
    My idea is to calculate the lines of the rectangle geometricaly and then try to approximate them onto the array. After that I can use them as boundaries to select every pixel that is inside the box.
    Is there a better way? Does somebody have any experience with something similar?
    Any help would be greatly appreciated...
    Alexis

    Two things to try. Try rebuilding the mailbox. This can take awhile if you have a lot of mail.
    Rebuild mailbox
    Try reindexing the mailbox. This can take awhile if you have a lot of mail.
    Reindex messages

  • Order Process Sequence Problem

    Currently I have a FM that does data from an incoming PO IDoc, makes some conversions, changes, etc.  It saves these changes into a new IDoc structure and then uses IDOC_INBOUND_ASYNCHRONOUS FM to post them to create orders.  The problem is if I have 5 IDocs (1, 2, 3, 4, 5) and I bring them in like normal, the results IDocs will sometimes come out out of sequence (5, 2, 3, 4, 1) or some other sequence.  Currently I have the partner profiles for the customer's setup so that it goes directly to my FM.  I'm trying to learn as much as I can about the process flow and how it all works.  If anyone can point me to some good documentation or knows of a better way to do this, please let me know.
    Thanks,
    Curtis

    Dear,
    Go to SNRO t-code.
    In this t-code enter AUFTRAG object.
    This object is for Order type.
    Here you will get option No. of Numbers in buffer check it. This is the field which is responsible for number range buffering
    Regards,
    R.Brahmankar

  • What are the clustering 'gotcha's' - Anyone got a list?

    We plan to implement a very high load website using
    ColdFusion enterprise. Before we start coding we'd like to know
    what the various 'gotchas' are, unfortunately so far all we found
    in the docs and various sites are 'quick mentions' of this and that
    not working.
    For example I'm aware of the applcations variables not
    replicating, and the need to place all user-uploaded in a
    centralized location accessible by all nodes of the cluster. But
    there are many thing we don't know, for example we plan to
    load-balance the webservers using NLB at first then cytrix
    netscaler boxes in the longer term - and someone posted on the
    documentation comments that this would break session replication.
    Is that true?
    My question, are there any other 'gotchas' that will affect
    the way we write code? Anyone got a list?
    Any help or pointer would be greatly appreciated :D

    nagromme wrote:
    I didn't know OS X could do such a thing!
    I didn't know about it either but, apparently, the technique is common:
    http://en.wikipedia.org/wiki/Hard_link
    "If one of the links is removed with the POSIX unlink function (for example, with the UNIX rm command), then the data are still accessible through any other link that remains. If all of the links are removed and no process has the file open, then the space occupied by the data is freed, allowing it to be reused in the future. This semantic allows for deleting open files without affecting the process that uses them. This technique is commonly used to ensure that temporary files are deleted automatically on program termination, including the case of abnormal termination."

  • A better way to deal with lost hyperlinks when converting Robohelp to Printed doc?

    I have inherited a 750-page manual that is
    "single-sourced" in RoboHelp X5. When I generate printed
    documentation, all of my hyperlinks and converted to plain text.
    Everytime we release a new version of the manual with any changes,
    we have to re-generate, and then manually go into the MS-Word
    converted document and re-create some 350 hyperlinks and page
    number references. Somebody please tell me that there is a better
    way to do this, or a better tool to manage single-source
    documentation.

    Another post has been raised relating to this problem. See
    http://tinyurl.com/yvpaut
    I am replying here is this is where most of the relevant
    information is.
    You found that using the Style Mapping template solved the
    images problem but the document stopped generating at 450 pages.
    That was sort of what I hoped for. Rather than go to the step I
    will suggest in a moment, I suggested you try something else but
    you never came back to the forum to indicate you had tried it, so
    the assumption is you did and it worked. Patently it did not so
    let's try what I would have suggested next.
    On my website there is a topic on Print Issues and one of the
    them covers Malformed Topics. Try looking for <p
    style="mso-bookmark: as suggested in my earlier reply in this
    thread. You can try RH's Multi file find and replace but FAR from
    http://www.helpware.net/FAR
    may get better results. I think with this error you usually get a
    message. Do you have the Output pane opened and have you read right
    through it for clues? View | Output on the menu. Whether or not the
    Output pane mentions this error, I would search for it anyway.
    Other Points:
    A] It could still be a resource problem. The document is very
    large so, as Harvey mentioned, resources come into it. I know the
    PCs that won't play nicely have good resources but whilst I am no
    expert in this area, don't foget XP is using more of them leaving
    less available to you. It could be an issue but I am inclined
    towards it being something else.
    B] I also suggested a hunt for a rogue topic.
    "What I would try is copying your layout so that you have
    three versions of it. Then delete two thirds from each one. If all
    three work fine, it sort of confirms that size is a problem. If one
    fails, your on the track of the rogue topic."
    Did you try that? Like I said, if all three work fine, then
    we are back with the resource problem but we will have ruled out
    other issues. It should take less than fifteen minutes to set that
    up. Longer to run it but you can be doing something else at that
    point.
    C] On FrameMaker, no real answer but you will soon see
    evidence that Adobe are continuing to better integrate all the
    products we are using. I don't think you will see what you want in
    the upcoming version though.
    NEXT:
    1] Please search for <p style="mso-bookmark:
    2] If that fails, try creating the three layouts.
    3] Then post back how it went. If unsuccessful, tell us if
    the Output pane gave any information about things the process did
    not like.
    Let us know either way as if one succeeds and you post that,
    it helps the next person with the same problem.

  • I have question about hooking up an external hdd to a time capsule and still have my printer hooked up as well. Anyone got any tips for me, how to do it and what brand of harddrive that will work best for me 1 or 2 TB

    i have question about hooking up an external hdd to a time capsule and still have my printer hooked up as well. Anyone got any tips for me, how to do it and what brand of harddrive that will work best for me 1 or 2 TB

    You just need a powered hub.. if you already use one then fine.
    Plug in just about any external hard disk will work fine. Format has to be readable by the TC.. ie fat32.. or much better HFS+.. plug it into a Mac to prepare the drive.
    Pick whatever size suits.. nowadays 2TB are most economical.
    WD, Seagate have goobled up all the minor players.. so pick one.
    Whatever suits your budget and asthetics.
    NOTE.. The USB on the TC is fine for printers.. IMHO it is the wrong way to go with USB disks.. use the internal disk of the TC.. USB is less than half the native speed plugged into a Mac.. TC to USB is slow.. far slower than internal drive.. or using external drive as external.

  • Looking for a better way to backup end users

    Hello there.
    Not sure if this the best forum for this post but here goes.
    Last week my company had a break in and a couple of laptops got lifted. Not a big deal as I had backups of the machines on tape. It did take a while to recover the files though. During that time I got to thinking about a better way to backup and I am looking for any ideas of if this would work or not.
    First quick overview. About 60 end users majority with laptops.
    What I am thinking of doing is this. Take an xServe RAID configured in RAID 5, for redundancy and speed, and creating a shared folder on it for each of my end users. This way if they need to retrieve a file they can log in and will not have to call me. Then, this is where I need help, use some tool to copy all of their files at specified intervals into their folder, at least once a day. I am currently using Retrospect to backup everyone directly to tape and I could use that to do this but the only thing I do not like about Retrospect is it can only do one user at a time. With 60 users I have to start it pretty early in the day. I know copy files would be alot faster so I am not ruling it out. I was also thinking about using ChronoSync to accomplish this and then use Retrospect to backup the RAID to tape for long term storage. I am ruling out using Home directories on the xServe for my users because they are all laptops and are usually out of the office at least one day a week.
    If anyone could offer some ideas of whether or not this is going to work or not or if you have other suggestions, any help would be greatly appreciated.
    Thanks in advance.
    Daniel Krajc

    Hi,
    you could be using a combination of Mobile Accounts (for the settings of the ibook) and rsync (which is installed by default on 10.3 and 10.4), check man rsync for more info.
    regards.
    Dimi.

  • Anyone got Machine 1.5 to work with Logic

    Hey all,
    I've got Maschine loaded as an AU unit and it works in so far as I can hear sounds and play using Maschine. However, Logic doesn't record anything or remember anything about the state of Maschine, so it's not saving any midi or audio info.
    Has anyone got Maschine working in the same way as the Ultrabeat drum sequencer? So I can create patterns on the Maschine, then trigger them via Maschine while I'm recording.
    Failing that, has anyone got Maschine to actually record anything in Logic?
    Thanks

    Hey Faisal,
    I've watched the video at
    http://www.native-instruments.com/index.php#/en/products/producer/maschine/?cont ent=1150&category=1&sortby=relevance&splitscreen=1&page=1447
    I can drag and drop patterns, but it's unclear whether Logic then plays that pattern or simply triggers Maschine to start playing.
    I can't get Maschine to synchronise its midi as in the 'Record Events Directly into DAW' section. This might be because I can't set it up to both send and receive midi to/from Maschine. Any idea how this is done?
    Thx
    Sam

Maybe you are looking for

  • Unable to create post script file in framemaker.

              I installed TCS 4.0 licensed suite. Due to some reason I need to delete Adobe PDF from Devices and Printers. Since then I am unable to create post script file using framemaker. I have tried uninstalling and installing TCS 4.0 again, but all

  • Reader does not open, Win2K sp4

    For some reason, a client's installation of reader 7.1 failed and they tried to uninstall and reinstall.  When that didn't work they called me in.  I've tried manual uninstall, complete with confirming that no seemingly relevant registry entries rema

  • ERROR BUILDING SPATIAL R-TREE INDEX

    I tried building an R-tree index on a spatial table containing latitude/longitude points. There are only 9000 records in the table. I get the following error: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine ORA-13200: internal e

  • PDF option in the BEX Broadcaster

    hello all, We have a problem, have a BW 3.5 and want to know if in Bex Broadcaster when we want to send mail not able to see PDF option.Because i want to send mail in PDF formate. Thanks in advance. Oscar

  • Back button causing items in Cart to Disappear

    Hi BC Community, Need some help with something.  A few of my client ecommerce sites are having some major issues at the large product/cart level.  Customers are adding something to the cart (which works fine), but then they hit the back button to con