Workflow novice

I have never used WF and I need to see what steps have been defined for a particualr workflow becuase the users say that service notifications are not always being generated, so I guess there is some criteria in place.
I have gone to trans: SWE2 found my workflow BUS2080 which has 3 tasks assinged WS00200098, WS00200096, WS00200099.  I now want to go to the object builder to view the setup for this workflow, I thought I could do this in SWDD but none of the tasks or object seem to work, any tips on how to view the workflow steps and links?

First of all you should be able to see it in SWDD. Alternatively, use Trx PFTC, select Workflow template and enter the Id only.
Regards, IA

Similar Messages

  • Send Mail step in ready state

    Hello Experts,
    I am a workflow novice, just starting out.
    I have copied the standard PO release workflow - WS20000075 and inserted a send mail step before activity "Release of purchase order". This was because I would like to send the PO as a PDF attachment to the approver.
    The send mail step works fine (i have custom object and method to attach and send mail), it sends out the mail with the attachment correctly, but the work item is in "ready state" and needs to be manually "completed" for the workflow to proceed. After this, the workflow proceeds perfectly.
    The send mail is marked as a background task and synchronous object method.
    What do i need to do for the "Release of purchase order" to happen as soon as the email has been sent out?
    Thanks a lot for the help.
    Regards,
    Parag.

    Hello Ravi,
    Thanks for the prompt reply, there are no erros in the workflow log.
    SWU3 was definitely done, standard PO Release workflow works fine and so do other ones. Its just that I copied the standard and inserted a new step.
    Do I somehow need to "terminate" the send mail step for the workflow to move over to the next activity ?
    Regards,
    Parag.

  • Multiple Processes With Separate WAITFORFLOW?

    Hi,
    I'm revising some legacy code in which the client wishes to implement some parallel processing for notifications. In my process, I currently have a process that sends out a group of notifications, and the parent utilizes the WF_STANDARD.WAITFORFLOW API to wait until all the child notifications are complete, then the parent launches another process to send out a separate group of notifications, again waiting for all the child notifications to be completed.
    My client would like these two separate processes to run in parallel, rather than serially. However, I'm having a problem as at least one of the processes sits waiting, although all the notification responses are completed and the workflow should be able to continue.
    I believe this is because I have the parent process waiting on two groups of processes simultaneously with the WF_STANDARD.WAITFORWORKFLOW API. Is there anyone who can validate my theory and if this is the case, offer suggestions on how I can work around the problem?
    I apologize if the above isn't clear; I'm a complete Workflow novice but desperately need some help.
    Thanks in advance.

    Hi,
    I don't think this that there is a problem with what you are trying to do - have you set the activity attributes on the wait for flow and continue flow activities correctly?
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • How to loop a script... (novice in over head?!)

    At the core of it I want to be able to change the filelink from a tif extension to an ai extension if the appropriate file exists. I can do this through a contrived search and replace on the IDML files but it scares the people who work on the files... so I'm left coming up with an InDesign script which mimics this sort of workflow. One of the InDesign scripting references I purcahsed 'InDesign CS5 Automation Using XML and Javascript' by Grant Gamble has a great script for accomplishing this. However the script is written with a single file input in mind and I'd like to extend it to handle a list of files defined by the user.
    I've tried with my sub-novice skills to loop it and I end up with a bunch of null object garble.  I've managed to modify to the point where it will open up the next document in the 'files' list but InDesign doesn't seem to reckognize its existence for lack of a better term.  At the end of the day I might be in over my head, I've struggled with this for too long so at this point I'm hoping someone can help me along and I can backtrack how their solution worked! I feel that this type of solution would help to evolve my understanding of Functions and variable scope.
    I'm likely in need of a paradigm shift! In a perfect world I would like to be able to:
    myFolder = selectDialog();
    files = myFolder.length;
    for(i=0; i<files.length; i++){
    app.open(files[i])
    Run("other script")
    app.activeDocument.close(SaveOptions.YES)
    Here's the "other script":
    // Example
    var g = {};
    main();
    g = null;
    function main(){
        if(app.documents.length == 0){
            alert("Please open the g.document containing the images to be relinked.");
        else{
            intResult = buildDialog();
            if(intResult == 1){
                relinkGraphics();
    function buildDialog(){
        g.doc = app.activeDocument;
        g.win = new Window("dialog", "Re-link Images");
        g.win.add("statictext", undefined, "Choose file extension or enter text:");
        var arrExtensions = [".ai", ".bmp", ".eps", ".gif", ".jpg", ".png", ".psd", ".tif"];
        // From panel
        g.win.pnlFrom = g.win.add("panel", undefined, "Find:");
        g.win.pnlFrom.ddl = g.win.pnlFrom.add("dropdownlist", undefined, arrExtensions);
        g.win.pnlFrom.txt = g.win.pnlFrom.add("edittext");
        g.win.pnlFrom.txt.minimumSize = [200, 20];
        g.win.pnlFrom.ddl.onChange = function(){
            if(this.selection != null){g.win.pnlFrom.txt.text = this.selection.text;}
        // To panel
        g.win.pnlTo = g.win.add("panel", undefined, "Change to:");
        g.win.pnlTo.ddl = g.win.pnlTo.add("dropdownlist", undefined, arrExtensions);
        g.win.pnlTo.txt = g.win.pnlTo.add("edittext");
        g.win.pnlTo.txt.minimumSize = [200, 20];
        g.win.pnlTo.ddl.onChange = function(){
            if(this.selection != null){g.win.pnlTo.txt.text = this.selection.text;}
        // Add button
        g.win.btnAdd = g.win.add("button", undefined, "Add");
        g.win.btnAdd.onClick = updateListBox;
        // Criteria list box
        g.win.lstChanges = g.win.add("listbox", undefined, undefined,
        {numberOfColumns: 2,
         showHeaders: true,
         columnTitles: ['Find:', 'Change to:'],
         columnWidths: [100, 100]
        g.win.lstChanges.minimumSize = [200, 100];
        // Delete button
        g.win.btnDelete = g.win.add("button", undefined, "Delete Selected");
        g.win.btnDelete.onClick = deleteListItem;
        // Manual/Auto radio buttons
        g.win.radManual = g.win.add("radiobutton", undefined, "Manual");
        g.win.radAuto = g.win.add("radiobutton", undefined, "Automatic");
        g.win.radAuto.value = true;
        // Relink and Cancel buttons
        g.win.btnRelink = g.win.add("button", undefined, "Relink");
        g.win.btnRelink.onClick = function(){
            if(g.win.lstChanges.items.length == 0){
                alert("Please specify the relink criteria.");
            else{
                g.win.close(1);
        g.win.btnCancel = g.win.add("button", undefined, "Cancel");
        return g.win.show();
    } // End function buildDialog
    function updateListBox(){
        if(g.win.pnlFrom.txt.text == "" || g.win.pnlTo.txt.text == "" ){
            alert("Please enter text in both boxes.");
        else{
            var itm = g.win.lstChanges.add("item", g.win.pnlFrom.txt.text);
            itm .subItems[0].text = g.win.pnlTo.txt.text;
            g.win.pnlFrom.txt.text = "";
            g.win.pnlTo.txt.text = "";
            g.win.pnlFrom.ddl.selection = null;
            g.win.pnlTo.ddl.selection = null;
    function deleteListItem(){
        if(g.win.lstChanges.selection == null){
            alert("Please select the item to be deleted");
        else{
            g.win.lstChanges.remove(g.win.lstChanges.selection);
    function  relinkGraphics(){
        var strFeedback = "";
        var blnRelink;
        for(i = 0; i < g.doc.allGraphics.length; i ++){
            // Exclude embedded items
            if(g.doc.allGraphics[i].itemLink == null){
                continue;
            // Apply all changes specified by user to filepath of graphic
            strBefore =  g.doc.allGraphics[i].itemLink.filePath.toLowerCase();
            currentLink = g.doc.allGraphics[i].itemLink.filePath.toLowerCase();
            for(j = 0; j < g.win.lstChanges.items.length; j++){
                currentFind = g.win.lstChanges.items[j].text.toLowerCase();
                currentChange = g.win.lstChanges.items[j].subItems[0].text.toLowerCase();
                currentLink = currentLink.replace(currentFind, currentChange);
            // Relink image if applicable
            blnRelink = false;
            if(strBefore != currentLink){
                blnRelink = true;
                if(g.win.radManual.value == true){
                    app.select(g.doc.allGraphics[i].parent);
                    blnRelink = confirm("Relink this image?");
            if(blnRelink == true){
                try{
                    g.doc.allGraphics[i].itemLink.relink(File(currentLink));
                    strFeedback += "Relinked: " + strBefore + " ->\nto: " + currentLink + "\n\n";
                catch(err){
                    strFeedback += "Could not relink: " + strBefore + "\n-> to: " + currentLink + "\n\n";
        // Display user feedback
        if(strFeedback == ""){
            alert("No images were relinked.");
        else{
            var fleFeedback = File(app.activeScript.parent + "/relink-log.txt");
            try{
                fleFeedback.open("w");
                fleFeedback.write(strFeedback);
                fleFeedback.close();
                fleFeedback.execute();
            catch(err){
                alert("Sorry. Due to an error, the log file could not be created.");
    Any and all help is greatly appreciated,

    The full script runs on "the active document", and it's possible that is the point where ID gets confused. Can you re-write it as a function with *one* parameter -- the document to work on?
    Then you can do your loopy (sorry) looping like this:
    someDoc = app.open(files[i]);
    Run("other script", someDoc);
    someDoc.close(SaveOptions.YES);
    "app.open" returns a handle to the ID document once it's opened, and if you save it into a variable you can use this wherever you are using "app.activeDocument" now.

  • Cannot see the Workflow process in Application.

    Hi ,
    We have a strange issue with workflow.
    We wanted to customize the INVFLXWF workflow .
    We downloaded it from the apps into WorkFlow Builder.Added a process and a function.Saved it back into the database.
    Now , when you go into the application --> System Administrator --> Application --> Flexfield --> Accounts --> ctrl F11 -
    and you dont se the workflow Generate Cost of Goods Sold Account .
    Only if we see it then only we can change the Process Name to the newly created process.
    What puzzles us is that the AP Process calls the Generate Cost of Goods Sold Account and generates the COGS account .But we wanted to change it.Without seeign it in the application we cannot change the process.
    Can anybody help?

    Hi Andrew,
    Thanks again a lot for the help. It has really helped. Now I am trying to get a better understanding of how the platform, SCC and the simulator need to be configured.
    Let me write down some of my learnings:
    If one does not see the workflow then the following points should be checked.
    1. Check whether the simulator and the MDS are running properly or not. Like in my case I had installed MDS and 9800 simulator by getting 2 seperate installables. But later I got the BB 6.0 JDE and installed that. Probably this helped me out.
    2. If you dont see one of your already developed workflows not in the Simulator then develop a new workflow and try syncing that to the simulator. As you have shown it to Tapan one can get it from http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8028374d-6490-2e10-5391-b3cb0310ad1d?QuickLink=index&overridelayout=true and https://cw.sdn.sap.com/cw/groups/sup-apps?view=documents
    For me I was not able to move my already developed workflow to the simulator. Then I tried to get the EmpDir2_0_ESD1 from the above mentioned link and then this worked. Probably some error in my workflow. So try generating a new workflow and move that to the simulator
    3. If MDS does not comeup then it may be because you have installed it in C:Program Files. So better install the BB JDE in some other folder where you have write permission. This information I got from StackFlow.
    Hope this may help some novice like me...
    Thanks again Andrew...
    Best Regards
    Tapas

  • Workflow and General Use Questions

    Hello,
    I'll apologize right off the bat for these novice question because I'm sure the information is probably somewhere in the forum, I just haven't been able to find it. I just purchased Aperture after completing the demo as my library is getting too large to manage using standard file folders. I'm now trying to figure out the best practices for workflow and general use before I invest some serious time into importing and keywording all my pictures.
    1) Store files in the there current location, or in the Aperture Library? It seems to me that once they are moved to the Aperture library, you can only access them from within Aperture. I'm thinking I would be better off leaving them in their current location. For one, if I want to quickly grab a picture as an attachment to an email or something it seems easier to grab it from the standard folders. Second (and more important) I do not have room to keep all my pictures on my Macbook, thus most of them are stored on the Time Capsule.
    So... Keeping photos in their current location appears to be the best choice for me even though it adds an additional step every time I bring in new photos from my camera. Does this sound right?
    2) Is there a way to mark the photos that I have uploaded to my website (Smugmug)? Ideally, I would like to badge photos that have already been uploaded so I can quickly recognize them and ensure I'm not duplicating. I've considered using the rating, or keywords to indicate that a photo has been uploaded but both methods have disadvantages.
    3) Any suggestions for general workflow and organization resources (tutorials, books, websites, etc.)? I've looked at the videos on Apple's site but they obviously didn't get that detailed.
    Thanks for the help, sorry for the length.

    I recommend to Manage by Reference with Master image files stored on external hard drives (note that Aperture defaults to a Managed-Library configuration rather than a Referenced-Masters Library). Especially important for iMacs and laptops with a single internal drive. The workflow as described below in an earlier post of mine uses a Referenced-Masters Library.
    I feel pretty strongly that card-to-Aperture or camera-to-Aperture handling of original images puts originals at unnecessary risk. I suggest this workflow, first using the Finder (not Aperture) to copy images from CF card to computer hard drive:
    • Remove the memory card from the camera and insert it into a memory card reader. Faster readers and faster cards are preferable.
    • Finder-copy images from memory card to a labeled folder on the intended permanent Masters location hard drive.
    • Eject memory card.
    • Burn backup hard drive or DVD copies of the original images (optional strongly recommended recommended backup step).
    • Eject backup hard drive(s) or DVDs.
    • From within Aperture, import images from the hard drive folder into Aperture selecting "Store files in their current location." This is called "referenced images." During import is the best time to also add keywords, but that is another discussion.
    • Review pix for completeness (e.g. a 500-pic shoot has 500 valid images showing in Aperture).
    • Reformat memory card in camera, and archive originals off site on hard drives and/or on DVDs.
    Note that the "eject" steps above are important in order to avoid mistakenly working on removable media/backups.
    Also note with a Referenced-Masters Library that use of the "Vault" backup routine backs up the Library only, not the Masters. Masters should be separately backed up, IMO a good thing from a workflow and data security standpoint.
    Max out RAM in your MB and keep the internal drive less than 70% full.
    Good luck!
    -Allen Wicks

  • Aperture to Photoshop Workflow

    I am a novice at Photoshop, but will start a beginners course in a couple of weeks. I would like my workflow to be : camera to Aperture (Nikon RAW) and to edit select images in Photoshop. Is thee a good source for learning more about the Aperture / Photoshop interface?
    Thanks.

    A key point to remember is to make all of your Aperture adjustments first, then go to Photoshop last for any remaining work. Aperture will take all of your adjustments and create a TIF or JPG for you to work on in Photoshop. If you make any Aperture adjustments to a file that has already gone to Photoshop, a brand new TIF or JPG will be created.
    Here is a link to more info on working with Photoshop:
    http://docs.info.apple.com/article.html?artnum=302820

  • Automator: Why can't I add "Take a Picture" to workflow?

    I'm pretty sure the digital cameras I have are supported for this action, but I can't even get to that point because when I drag the "Take a Picture" action to the workflow, it won't "stick". Other actions such as "Take a Video Snapshot" add normally, but the "Take a Picture" action just snaps back to the library when I try to drag and drop.
    I'm automator novice, so I am hoping there is a simple answer to this question. Perhaps it can only be added to follow certain other actions? Or I have to somehow explicitly add the camera device earlier in the workflow? Any ideas?

    bizarre update:
    I'm starting to think this is a bug.
    I tried the record button in Automator to try to take a picture in Image Capture and see if I could capture the action that way. In order to do this I was prompted to turn on "Enable access for assistive devices" in the Universal Access system setting. I didn't get as far as testing the image capture (no camera was plugged in) -- instead I was playing around and recorded the launching of Photo Booth and snapping of a picture with the iSight. Suddenly all my Automator windows were disappeared, even though they were still listed under "Window" menu in Automator, and on closing Automator I was asked to save changes to them.
    What does this all have to do with the Take a Picture action? Well, all of a sudden on reopening Automator it started working and I could add it to any workflow. Still no camera connected at that time, so the dropdown list was empty. I quickly created a workflow with a single Take a Picture action and saved it. On a subsequent opening of this workflow, the action was disappeared, the workflow was blank, and I could no longer add the Take a Picture action to anything.
    I have since repeated this sequence, and it seems like the recording of the Photo Booth opening and snapshot does something unholy to Automator and then suddenly the Take a Picture action can be used.
    Obviously I'm going to try to reproduce this more definitively and also try to take a picture with a workflow. But this kind blew my mind so I had to share. I will update again if I learn anything else.

  • Using workflow to email and fax output documents

    The requirement is that everytime an output is triggered for a document, the document should be emailed and/or faxed to certain contacts that are maintained on the customer master. Currently you can only email or fax to one contact at a time but we would like to do it for multiple contacts.
    Can this be achieved using workflow? I am relatively novice in workflow but would like to implement it if possible.
    The solution we have right now, which works by the way:
    Add a function module in every driver program to extract the contact information and populate a database table
    Run a batch job ever 5 mins that reads the database table and emails/fax using the contact information.
    Am looking for some ideas for a more efficient way of doing it. Thank you.

    yes you can sedn the mail to multiple recipients  by using ythe workflows and even you can attach the Document to the mail as a ATTACHMENT
    by using differnet Fm that are available  just go to se 37 and SAP_WAPI click f4 you will find all the FM that are required.
    Important: You have to use a step ACTIVITY and make it as background step because there is no need of any sort of interaction with the user while determining the Agents and after getting the result  i mean the reposible users  store them ina internal table of type SWHACTOR and
    in the mail step use EXPRESSION and assign these determined agents
    For this you have to bind the Task conatiner elements and workflow conatiner elements ok

  • 2 novice question

    Hi
    i have 2 question about premiere pro cs3
    1) import video , install Qlite http://www.free-codecs.com/download/QT_Lite.htm  can increase the video import or export feature ?
    2) i'm reallya  novice , i'm a photoshop cs3 user , can i with premiere pro cs3 edit the colors ? make some some part more dark like curve or selective colors ?
    thanks

    1 - For SD (Standard Definition) work, Premiere works best with DV AVI Type 2 files
    This cannot be stressed enough. This is the designed workflow for most NLE's, and holds for everything in the Premiere lineup. While some CODEC's can be worked with internally, most cannot. Conversion to DV-AVI Type II w/ 48KHz 16-bit PCM/WAV will always work best. Even if you have the proper CODEC and it's installed properly on the system, there is no guarantee that Pr can use it. In most cases, it's a certainty that they will not. Also remember that because a player on your system can play a file, there is a great difference between playing a file, and editing a file.
    2 - Look in the user guide you just downloaded to see what effects are available
    There are many Effects in Pr, that have a correlation to the adjustments in Photoshop, Brightness & Contrast, Highlight & Shadow, Levels and Luma Curves are but a few. The PremierePro-wiki is a great place to explore, after you read the guide from the link that John furnished. I'd suggest that one read all of the FAQ's and then start working through the tutorials. Do not limit your reading to just your version of Pr. Much from earlier and later versions will still apply, though you may have to look for a menu, or be aware of a name change someplace. With a little study, you'll find a lot of similarities between PS and Pr.
    Good luck,
    Hunt

  • Advice for logical workflow for color correcting and color grading

    I am an experienced user of  PPRO CS5.  I am a novice with color correcting and color grading.  I am also just barely competant in AE CS5.  It has been suggested that I use AE for color correcting my footage.  Can you advise me as to the most logical workflow for doing this in coordination with PPRO CS5?  Are there some tutorials that you recommend?  I subscribe to Lynda.com and I think that they have some great tutorials, I am unsure as to where to begin looking and what to search for.
    Thanks so much,
    Lisa

    lisaellensegal wrote:
    I am an experienced user of  PPRO CS5.  I am a novice with color correcting and color grading.  I am also just barely competant in AE CS5.  It has been suggested that I use AE for color correcting my footage.
    You can do it that way, sure. But you don't have to. You can accomplish quite a lot without leaving PPro. This has two major advantages. First, if you aren't using AE for anything else, it gets you out of using AE at all, so gets you out of climbing another set  of learning curves.
    Second, even if you are using AE for other things (I use AE to make motion lower thirds, for example), doing the work in PPro can improve exporting speeds. This is because AE gets restricted to a single processor core in some workflows as discussed in this thread and others (search around if you're interested). This can make exporting take 3x as long or longer, depending on how much footage has to be processed by AE.
    So, how to do color correction without leaving PPro? Use either a luma corrector or luma curve effect to set black and white points, and contrast (use a waveform monitor to help). Then use a three way color corrector effect to get rid of any residual color casts (use the vectorscope to help, and the RGB parade, etc.).
    If you find you have specific colors that need to be fixed, you can apply another three way color correction effect and use it to make that secondary color correction (for example I find the blue dyes used in many labels tend to fluoresce under fluorescent lighting, and has to be desaturated with a secondary color correction or it "blooms" on an HDTV -- IOW, it has to be made "broadcast safe").
    If you want tutorials for using these tools, the ones on Creative Cow by Andrew Devis are quite good, and free. The ones on color correction with PPro cs6 start at tutorial number 47. There's a bunch of them. All good.
    Finally, get a copy of Van Hurkman's Color Correction Handbook. May be the best technical book I've ever read, and it'll certainly point you in the right direction for doing color correction work regardless of which tools you use to do it.

  • Workflow process does not complete for 3500 but works for about 10 records

    Hi Gurus,
    I am a novice in workflow. Pls bear if the questions are very basic.
    We have a old custom workflow process which is inistaed by a PL/SQL procedure
    WF_ENGINE.CreateProcess ---
    WF_ENGINE.StartProcess ---
    COMMIT; ---
    Now this process has run for over 6-7 years but has always processed max upto 8 or 10 records at a time. Now we had about 4000 records in a table and the process was running for more than 4 days now and it has been termiinated.
    I could not see any new item_keys. Is it because we have a commit only at the end.
    This process has 3 sub processes. they are connected by 'AND' and then we have an 'End' node.
    The first sub-process is simple and we can see a record in wf_items .
    Howver no records are there in wf_items for the 2nd and 3rd sub processes.
    How can we check the point where it has hanged. Querying Status monitor just gives the first sub-process that has completed. How to debug for these cases.
    This has always worked for small volumes. Now we have about 4000 records and we face this problem
    The process actually checks data from the table and based on some conditions , it send 5 different notifications to 5 different mail groups. So we expect about 4000*5 mails to be sent.
    Any help is welcome.
    Thanks,
    L
    Edited by: 901929 on 20-Jul-2012 01:38
    Edited by: 901929 on 20-Jul-2012 01:39

    L,
    Please check the following:
    1. Since this is pure PLSQL you can have a SQL script where you enable a database event to get a trace and then run tkprof on the output to spot any performance problem. You can use something like:
    alter session set tracefile_identifier='Background' max_dump_file_size='unlimited' events '10046 trace name context forever, level 12';
    begin
    wf_engine.CreateProcess(...);
    wf_engine.StartProcess(...);
    end;
    commit;
    alter session set events '10046 trace name context off';
    select fnd_debug_util.get_trace_file_name() tracefile from dual;
    2. Do you happen to know if WF runtime tables are being purged regularly? If this is not done you can expect serious performance problems. If this is WF Apps embedded you need to clean data using the concurrent request Purge Obsolete Workflow runtime data, if not then you can use the APIs in package WF_PURGE.
    3. You will only find one record in WF_ITEMS for this process if those sub-processes belong to the same item type
    4. About the notifications, make sure you are not running into this design problem: https://blogs.oracle.com/oracleworkflow/entry/looping_within_a_workflow_process
    Regards,
    Alejandro

  • Idoc errors workflow

    I need to createa workflow from scratch that triggers emails to a set of users when a certain IDoc type errors.  Is there a standard SAP workflow template that I just neeed to copy?
    I am a novice to workflow, but I am familiar with SWDD and some of the workflow transactions, so if someone could just list the steps I need to carry out then hopefully I can figure it out from there.

    Show thousand what?
    You can find all the standard workflow templates in your IDOC environment. e.g. WE47 for workflows/tasks associated with process codes. Most IDOCs use single step tasks as standard.
    You can also have a look at SWE3 to see what's assigned for which idoc type and get some ideas.
    Cheers,
    Mike

  • Adobe needs users for video and button workflow studies - get an Amazon gift card

    Adobe is looking for participants for a brief (~1 hour) online work observation and interview. Compensation will be a $100 Amazon gift card.
    The studies involve users who are in the beginning/novice stages of learning Flash Professional, or more experienced users who have not yet done the workflows being studied.
    There are two sets of criteria, each applying to a different study. Please read the criteria carefully before responding. Also, it is important to indicate in the subject line of your response which one of the two studies you meet the criteria for and wish to participate in.
    There will be 2 studies of Flash workflows. One is about deploying video content in Flash. The other is about creating a button to perform some control of the Timeline. The studies will be conducted over the telephone and Adobe Connect (software for screen sharing).
    For the video study, participants must meet the following criteria:
    - some experience with Flash CS4
    - some experience viewing video on the Web
    - no experience using video in Flash
    - have any version of Creative Suite 4 or Flash Professional CS4 installed (with most recent updates) on a computer that can be connected to the Internet
    - ability and willingness to install and use Acrobat Connect on the same computer as the above software
    - a 90-minute block of free time between 10:00 and 16:00 Pacific Time (GMT-8) on a weekday during the first two weeks of August (3August-14August).
    If you meet these requirements and would like to participate in this study, please contact me at jarmstrong [at] adobe [dot] com, with the subject line "Flash video study".
    For the button study, participants must meet the following criteria:
    - some experience with Flash CS4
    - no experience creating buttons in Flash
    - have any version of Creative Suite 4 or Flash Professional CS4 installed (with most recent updates) on a computer that can be connected to the Internet
    - ability and willingness to install and use Acrobat Connect on the same computer as the above software
    - a 90-minute block of free time between 10:00 and 16:00 Pacific Time (GMT-8) on a weekday during the first two weeks of August (3August-14August).
    If you meet these requirements and would like to participate in this study, please contact me at jarmstrong [at] adobe [dot] com, with the subject line "Flash button study".
    Participants in these studies will be thanked profusely in addition to receiving the Amazon gift card.

    @Karl, Thanks. If you are interested in participating, please send me an email as instructed in the original post. - Jay

  • Workflow learning

    Dear Friends.
       I am novice in workflows and supposed to develop workflow for employee exit clearance. may i ask you to please give me some material on workflow so i can study it and complete my task. Can you please tell me Is there any Standard workflow available for the same task in the ECC 6.0 (if i wish to know what are the other workflows available in Ecc 6.0 , How i will do that ? please send me the material, ideas, suggestion. I will greatly appreciate your help.
    Regards
    Naeem
    I am giving you my mail address [email protected]

    Hi,
    In the <a href="http://help.sap.com/saphelp_nw70/helpdata/en/fd/517b42303e0e53e10000000a155106/frameset.htm">SAPHelp</a> and the <a href="https://wiki.sdn.sap.com/wiki/display/HOME/SAPBusinessWorkflow+FAQ">WIKI</a> you can find a lot of info and all kinds of info you need.
    To find workflows you can check transaction PFTC select Workflow Templates and in Task use F4 and the structure search to find relevant templates.
    Regards,
    Martin

Maybe you are looking for

  • Macbook Connected To Playstation 3

    Is there any way to set my Macbook and my Playstation 3 upp threw bluetooth or anyhting. Want I want it to do is share music and such. Please help if you can in anyway. I try to pair them together and they never find eachother

  • Archieved Data Loading

    Hi sap gurus, I'm using 0FI_AR_4 data source. I figure out some of data isn't collected by data extractor. eventhough bsid and bsad tables have these data, extractor can't collect them(I can't see rsa3 and psa). when I search these FI documents, I re

  • Multiple recording passes for cycle/autopunch

    Okay, this is a basic tracking question: I've got a cycle area defined, and within that cycle an autopunch region. What I want to do is record multiple takes within that autopunch region every time the cycle repeats. The problem is, every time the cy

  • Need help with white spaces/halos when creating PNG

    I'm using Illustrator CS6 on Windows 7. I'm trying to create some pushpins that will go on an online map. I've created the graphic in Illustrator and everything looks nice and sharp. My problem is when I try to convert this .ai file to png. The ai fi

  • Older model Airport Express won't work with Mountain Lion Airport Utility

    just upgraded to Mountain Lion and noticed that of my network of three airport expresses connected to various stereo speaker systems throughout the house, one of the older models won't work with the supplied version of Airport Utility (v 6.1). Here i