Workflow a folder with records

Has anyone tried to route a record folder through workflow? content records in folder may or may not need their own workflows.
thanks,
terri

terri from virginia wrote: Has anyone tried to route a record folder through workflow?A "records folder" itself is not a workflow-able item. It's just a virtual container, or logical grouping.
You can indeed create a criteria workflow for the content items themselves associated with this virtual folder, if the desired objective is to workflow an entire folder. The criteria would be based on the record folder id (xFolderID).
terri from virginia wrote:content records in folder may or may not need their own workflows.Create the appropriate workflow for such items. Again, the records folder isn't a true object, but just an additional metadata element applied to a given content item.

Similar Messages

  • Bug with workflow that creates a folder and sub folder with the same name.

    Hi,
    I've found a possible bug in SharePoint 2010 workflows. I only have access to SharePoint 2010 and SharePoint Designer 2010 over my companies intranet, afaik I don't have access to to logs or anything server side so sorry for the any missing information.
    I had some problems with a workflow in one list that needed to create some folders and subfolders in a second list. The production version did a lot more so I setup a test area with 1 list and a workflow that only does the folder creation part and have managed
    to consistently replicate this problem.
    The test list has two columns, [title] and [sub folder title]
    The workflow starts by getting the values for [title] and [sub folder title] into variables.
    It then creates a folder in the same list with the same name as [title], and then creates a sub folder under this with the name from [sub folder title]
    So the resulting structure would be:
    Test List:-
        List item with fields [title] and [sub folder title]
        [folder: title]:-
            [folder: sub folder title]
    If both folder names are different (e.g Folder1 and Folder2) then it works perfectly fine, if both folder names are the same (regardless of character case, e.g. samefolderName and sameFolderName) then the workflow fails.
    As part of the test i made the first action of the workflow to log the message "Workflow Started" to the history list. When the workflow fail there's nothing logged in the history list other than the error: "The workflow could not update the
    item, possibly because one or more columns for the item require a different type of information."
    Creating a sub folder with the same name as it's parent works fine manually but for some reason a workflow can't seem to do it in one action.
    As there's no history list entries before the error it looks like the workflow is just failing to start but if i do something like add an if statement to check if [title] and [sub folder title] are the same, and only create the subfolder when they are not
    then it runs fine doing what it's set to.
    The function of the workflow in our office was for convenience so were just working without it. Just wanted to post to see if anyone else has come across this/could try to replicate or explain this  and see if it's a SharePoint bug or something specific
    to our setup.
    thanks,
    Martin

    not sure about the specifics of your workflow, but if you're querying the list for the folders... keep in mind that a list lookup will only ever bring back ONE item... even if there are several items that meet the filter criteria... example: if i search
    a list for an item assigned to "john doe", there may be 15 tasks that meet the criteria, and it'll only grab one... this is why SP Designer WARNS you when your list lookup may exhibit this behavior.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • How do I use Automator to duplicate a folder with graphics on my desktop and erase their Resource forks?

    How do I use Automator to duplicate a folder with graphics on my desktop and erase their Resource forks?
    I do not use command line and tried to use ZapResourceForksAMAub_1.2 which I downloadedand instaled the Zap Resource Forks.action. Next I tried to use their sample copy-zap-rsrc.workflow in Snow Leopardon my Mac Pro. The 3 different steps are displayed in Automator but there is no place to put in which folder (on my deskto) to copy, and remove the resource forks from the graphic files.
    Can sombody please step me through this please please.
                                                                                          W.W.

    Unfortunately, Back to My Mac only works across computers using the same iCloud account.

  • Automator and applescript to copy new files in a folder with same name as parent folder

    I have an iMac with a pictures folder (Finder folder) containing several subfolders with pictures. As per now, all these subfolders are imported into an iPhoto library (and the structure of the Finder pictures folder is thus maintained: The iPhoto events are named the same as the Finder subfolder). I.e. I have not created any albums in iPhoto.
    I have also set up a workflow, where new iPhone photos are automatically being synced to specified Finder folders within the iMac pictures folder. So what I want to do is to make a workflow to import potential new photos from week to week into the existing iPhoto structure. I know iPhoto has this Autoimport folder, so this one is unpacked and "mapped". So, this is what I´m hoping to do:
    Automator (iCal - want to do this on a weekly basis):
    - Get specified Finder items -- set to target folder = iMac pictures folder
    - Get folder content (with subfolders)
    - Filter Finder items
         - Items from the last 7 days (which then would be any new files created last week)
    - Applescript/shell script loop(?)
         - Get folder name for each file´s (from previous step) parent folder
         - Create new folder with same name as the file´s parent folder (if not already existing) under the iPhoto Autoimport folder
         - Copy the given file into the folder from above
    - Run iPhoto application (Automator task), which then should just auto import the new photos according to the Finder folder structure
    Whith the workflow above, I aim to maintain the existing iPhoto structure, and just import new photos into the existing structure. Creating folder names under the Autoimport, similar as the existing Finder folder names / iPhoto events should make it possible to have the new files imported under the existing event, right?

    Anyone?
    I have now switched to Aperture (from iPhoto) due to Aperture´s capability to handle Finder folder structure, and due to the possibility of having the pictures within Aperture as referenced files to the pictures within the Finder folders (i.e. possibility to delete pictures from both library and Finder folder at the same time).
    So I have a superior Finder folder called "Album". Within "Album" I have several subfolders (sub albums) containing pictures. The "Album" folder with subfolders are imported into Aperture as "Projects and albums", and the pictures are uploaded within the Aperture structure as referenced files. So for now the Aperture structure is more or less a direct mirror of the Finder folder structure, whereas "Album" is the project.
    And this is my current workflow in Automator, but I´m searching help with my Applescript:
    - Get specified Finder items (target folder = the superior Finder folder "Album")
    - Get Folder content
    - Filter Finder items (to look for potential new files to import into Aperture)
         - Kind is not folder
         - Date created last X days
    The output files from this task enters an Applescript
    on run {input, parameters}
           repeat with f in input (**Loop**)
                   tell application "Finder"
                          set fileName to name of (f)
                          set parentFolder to name of container of (f)
                          tell application "Aperture"
                                 tell library 1
                                        tell project "Album"
                                               if (exists album parentFolder) then
                                                 ** I then would like to check if fileName already exist within the existing album**
                                                 ** If not existing, I would like to import file f into the existing album as a referenced file**              
                                               else if not (exists album parentFolder) then
                                                       make new album with properties {name:parentFolder}
                                                ** I then would like to import file f into the new album as a referenced file**
                                               end if
                                        end tell
                                 end tell
                          end tell
                   end tell
           end repeat
    end run

  • How to create a folder with date each day?

    I've not used Automator, just once to "create" a workflow to create a new folder with a name; but what I want is this:
    Each morning at 12:01 am, a new folder to be created with the correct date as the name of the folder.
    So for tomorrow, Sunday 23 Nov 2008 at 12:01, I'd suddenly have a folder on my Hard Drive that would have the date like 23 Nov 2008 or 11/23/2008 or 23-11-2008 or similar.
    Then at the end of a week I'd have 7 of these; - but I can manually trash them-- I want to create these on my HD since I backup via SuperDuper! each morning (automatically) at 3:35 am (incremental backup to an external La Cie HD) and I want to know if was done, so by having a folder with the date on it I can open the external HD and if I see that that folder with the recent date is there, then I'm confident the BackUp was run.
    I have been able to create a workflow to create a folder in Automator, but not sure how to:
    1. Have the folder created automatically each day at 12:01
    2. How to have the folder label be the date
    Thanks for any comments or certainly any other work-around or other way to do this or similar.
    Regards, Steve

    Open the AppleScript Editor. Copy the following into it:
    set dt to date string of (current date)
    set mth to word 2 of dt
    set dy to word 3 of dt
    set yr to word 4 of dt
    set dtt to mth & " " & dy & " " & yr
    tell application "Finder"
    make new folder at alias "Macintosh HD:Users:username:Desktop:" with properties {name:dtt}
    end tell
    Amend the path with your Hard Disk name and username. Save as an application to anywhere suitable.
    In iCal, set up an event with a daily repeat and an alarm at the time you want it: under 'Alarm' choose 'Open file': then in the next menu which will appear change from 'iCal' to 'Other' and navigate to your script. Enter the date and time.
    Your folder will be created as required: iCal does not need to be running. This script gives the folder name as, for example, 'November 22 2008', but it's easy to amend the script if you want something a bit different - for example:
    property zro : ""
    set yr to year of (current date) as string
    set dy to day of (current date)
    set mt to month of (current date)
    set dyy to dy as string
    set nmm to the number of items in dyy
    if nmm is 1 then
    set zro to 0
    end if
    if mt is January then
    set mth to "01"
    else if mt is February then
    set mth to "02"
    else if mt is March then
    set mth to "03"
    else if mt is April then
    set mth to "04"
    else if mt is May then
    set mth to "05"
    else if mt is June then
    set mth to "06"
    else if mt is July then
    set mth to "07"
    else if mt is August then
    set mth to "08"
    else if mt is September then
    set mth to "09"
    else if mt is October then
    set mth to "10"
    else if mt is November then
    set mth to "11"
    else if mt is December then
    set mth to "12"
    end if
    set dtt to mth & "-" & zro & dy & "-" & yr as string
    tell application "Finder"
    make new folder at alias "iBook HD:Users:roger:Desktop:" with properties {name:dtt}
    end tell
    This gives the folder name as, for example, 11-22-2008. (The days will have leading zeros, if you don't want these just remove the references to 'zro'.)

  • Copy Folder with Joins. Export/Import Folder with joins. In EUL.

    Ok, I've got a custom folder which has been made up by dragging items from 2 or 3 other folders into it.
    It then has some joins of it's own, quite a few.
    When trying to create a workbook from it, it takes 9 mins to run a query.
    I need to work out what is slowing it down. If I create the same workbook against the folder which has the majority of the items in the custom folder, it runs instantly.
    So I suspect it is one of the joins causing it.
    My plan was to duplicate the folder, then remove joins until I find out which one is causing it.
    However, if I cut n paste the folder, I get a copy without the joins.
    If I export the folder and import it I get a copy without the joins.
    Question then - how can I get a copy of a folder WITH the joins ?
    I'm slightly concerned that when I export my EUL from the dev database and import it into the live database that I'm not going to get any joins since the export and import into the dev database is not retaining the joins.
    Anyone ?

    Hi,
    The preferences for Disco Plus are set in the pref.txt file on the apps server and for Disco Desktop in the Windows Registry. I think the defaults are set on so unless you have changed them this is unlikely to help.
    I think I read somewhere that the 11g optimiser will remove unused outer joins or where there is a foreign key constraint. I may have made that last bit up as I cannot find a reference to it, but it may be worth exploring.
    To speed things up you could look at why this join is slowing things down. It could be that you need an index on the join column.
    The join actually is used, in that it has to check in the other table that a record exists. This is why Discoverer cannot remove the join from the complex folder query. If it did and there where no matching records in the other table then you would get a different result.
    Rod West

  • How to create a folder (with subfolders) with Applescript

    Good afternoon,
    Filemaker has the ability to ake use of AppleScript.
    From within Filemaker I want to create a new folder (with the name of a FileMaker field) that holds 6 subfolders.
    I am a complete noob where it comes to Applescript.
    This is my script so far:
    tell application "FileMaker Pro Advanced"
    set folder_name to cell "FolderName" of current record
    end tell
    tell application "Finder"
         activate
         make new folder at folder "Desktop" of folder "dick" of folder "Users" of startup disk with properties {name:folder_name}
    end tell
    tell application "Finder"
         activate
            make new folder at folder {name:folder_name} of folder "Desktop" of folder "dick" of folder "Users" of startup disk with properties {name:"subfolder"}
    end tell
    My problem is: the creation of "Subfolder1"
    What is my mistake there?
    Help is much appreciated
    Dick
    Ps: I need to make 6 subfolders there

    When you crate a new folder you can define various properties, but when refering to the folder just use the name, for example:
    make new folder at folder folder_name of folder "Desktop" of folder "dick" of folder "Users" of startup disk with properties {name:"subfolder"}
    Note that the result returned from making a new folder is a reference to that folder, so you can also do something like:
    tell application "Finder"
      set newFolder to (make new folder at folder "Desktop" of folder "dick" of folder "Users" of startup disk with properties {name:folder_name})
      make new folder at newFolder with properties {name:"subfolder"}
    end tell

  • Create new folder with name of file?

    I am generating about 20 files from a 3d model. I open the model let's say the name is "delorean" then I want to create a new folder with all the generated files. I'm using a watch me Do to generate the files. The watch me do will save them in whatever folder I specify ahead of time. Should I just specify new folder each time, then rename it with the file name afterwards? If so how do I get the original file name so that I can use it to rename the file. Is there an example of doing something like this somewhere?
    Thanks.
    This forum is great.
    Dan

    I am going to guess that you start off with a single file - what are you doing to generate these files? My *Get Names of Finder Items* action can get a name to use in the *New Folder* action - items passed to the New Folder action will get copied to it, so a little more detail may help in creating the workflow.
    The *Dispense Items Incrementally* action can also be used to dole out the items one at a time - knowing what the workflow is doing would help with the use of this action as well.

  • Automator: Create folder with name and subfolders in it.

    Hello everyone, my question is related to Automator. I work in a company where we have a huge server. Every time a new job comes in it gets a six digits number and a folder with 5/6 subfolder needs to be created. The main folder will be xxxxxx_nameofbrand and will contain 5 subfolder each one of them starting with the six digit number assigned initially followed by 5 tags (always the same ones).
    Everytime it's a long thing to create it manually and copy and paste every number and name, so I thought I could use automator to do it easilly but I always get stucked at the part where I want the 5 subfolder to go in the main one. This is what I had done, but I'm pretty sure there is a faster/easier way to do it.. I'm really new to automator, I know it's potential but don't know how to use it very well..
    I thank you all for the help.

    For this kind of exception, you can just add a Run AppleScript action at the end of the workflow - for example, the following will rename all folders ending with the specified name that are at the specified depth in the structure:
    on run {input, parameters} # remove prefix from folder name
      set sourceFolder to quoted form of POSIX path of (input as text)
      set exceptionName to "Links" # will find a name ending with this (case sensitive match)
      set exceptionDepth to 2 # at a folder depth of this
      set theFolders to (do shell script "find " & sourceFolder & " -name " & quoted form of ("*" & exceptionName) & " -depth " & exceptionDepth)
      repeat with anItem in paragraphs of theFolders # rename without prefix
        tell application "System Events" to set name of folder anItem to exceptionName
      end repeat
      return input
    end run

  • Help! Export iTunes Playlist to Folder with Play Order

    Hello all,
    I run a community internet radio station, and to upload songs to the server, a .zip file has to be uploaded. However, when a playlist, or a bunch of songs in a set is carried over, Finder reorganizes the files alphabetically, and it doesn't preserve song and play order which is essential. So, I did a few searches and there seemed to be a solution at macosxtips.com, this is the link: http://www.macosxhints.com/article.php?story=20080424194133862.
    Basically, what it said was: start an automator workflow, and get selected itunes items, then copy finder items, and finally, rename files (sequentially). However, when I do this, the workflow seems to process endlessly without any results. It doesn't prompt me to add the files to a folder, and seems to get stuck at step one.
    When I checked the log in Automator, it said, in regards to Get Selected iTunes Items, "The action 'Get Selected iTunes Items' was not supplied with the required data."
    I've tried this both on my 24" aluminum iMac and my 15" new aluminum Macbook Pro with the same results.
    I'm stuck, and I need to provide my team with a solution to upload their playlists. Any suggestoins? Thanks in advance, all of us here at www.itntradio.com appreciate your help.
    See screenshot below -

    OK, since you are desperate and all...
    An AppleScript can easily do the same thing, so give this one a try. The following script works the same as your example workflow - it copies the selected iTunes items into the specified folder, renaming them by adding a prefix (I used your workflow example for the details):
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #FFEE80;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    (* copy and rename iTunes items *)
    if application "iTunes" is not running then
    display alert "iTunes is not running" message "Please activate iTunes and select items."
    return
    end if
    -- set up a few things
    choose folder with prompt "Choose a folder to copy the selected iTunes items into:" default location (path to desktop)
    set DestinationFolder to the result
    set {PrefixNumber, TrackLocations} to {0, {}}
    -- get filepaths of the selected iTunes items
    tell application "iTunes" to repeat with SomeTrack in (get the selection)
    try -- skip items that are not file tracks (no location)
    set the end of TrackLocations to location of SomeTrack
    end try
    end repeat
    -- copy and rename
    repeat with SomeFile in TrackLocations
    set PrefixNumber to text 2 thru -1 of ((1000 + PrefixNumber + 1) as text) -- prefix with leading zeros
    tell application "Finder"
    set NewName to PrefixNumber & "-" & (get name of SomeFile)
    set the name of (duplicate SomeFile to DestinationFolder) to NewName
    end tell
    end repeat
    tell application "Finder" to reveal DestinationFolder
    </pre>

  • How to trigger a workflow when a bank record of an employee is delimited

    Hi Friends,
      I want to trigger a workflow when a bank record of an employee is delimited(Infotype  IT0009). When delimiting the bank info, the old record's ENDDA is changed and a new record is created with the BEGDA. In this case two events are triggered one is BANKDETAIL-CREATED and other one is BANKDETAIL-DELETED.
    Which one should i use to trigger my workflow.
    Note : If we use the creation of new record for triggering workflow, then in case when the record is created for a new employee then the workflow will be triggered. To control this can we check whether there is an existing entry in IT009 for the employee or not. If an entry already exist then trigger the workflow else not. Is this ok? Please advice.

    Hi sapient,
    Here i think none of the events would actually help you in achieving what you want because you want to trigger the workflow when the account is delimited not when the account is either created or deleted.Please look for some other information to trigger your workflow.Will get back to you if i had any ideas.
    Thanks,
    Bhumika

  • How to import only RAW images from folder with RAW & JPEGs?

    My system is set up that I have both RAW & JPEGs in the same folder since I shoot JPEG+RAW. How can I import just the raw images without also sucking in the jpegs? There is no way to distinguish the difference in the Import box and also no way to easily separate the the two in the Import box. I've tried using the List View and separting them by File Size, but Aperture has a stupid bug here and it tells me that the JPEG file sizes are in the teens (like 17-18 megs) and they are still hard to separate from the RAW which are about the same size.
    Why can't Aperture do this basic thing?

    I'm not doing anything. What I wrote in my workflow example above is exactly what I'm doing. I've been trying some experiments to see if it was "A Better Finder Rename" that is causing the issue. So far, no go. I have taken just a couple of JPGs only and pointed Aperture's Import to the folder that contains them. Aperture is reading that there are only 2 jpegs (which is what there is) and their file size is right on the mark.
    Ok. I just narrowed it down to something. The flaw is showing up after the RAW files are converted to DNGs. The JPEGs do not show up in the Import box when there are camera raw files like NEFs or CR2s and the corresponding JPEGs. That is Aperture's normal behaviour. But, and this is a big BUT, when the raw files are converted to DNGs and they are in the same folder as the corresponding JPEGs, that's when Aperture pulls its shenanigans. It has something to do with the JPEGs and DNGs having the same name. Even though the files have different extensions, Aperture is doing something to the file size of the JPEGs that make them seem that they are much larger files than they actually are.
    I figured it out like this:
    I had 2 CR2 files and the corresponding JPEGs in a folder. Pointing Aperture's Import to that folder, Aperture did what it is supposed to do; it saw only 2 raw files (doesn't matter that the G9 CR2 files are not supported yet). So, I renamed all the files using A Better Finder Rename and Aperture still only saw 2 raw files.
    So far so good.
    Then, I converted just the 2 CR2 files to DNG and kept them in the same folder. Aperture saw 2 DNGs and 2 CR2 files. No jpegs were seen. Business as usual. Then I removed the CR2s and renamed the jpegs so they had the same names as the DNGs (except for of course different extensions) and that's when Aperture saw the jpegs as separate files and saw them with bogus file sizes.
    So I tested that by altering the jpeg names so that they were different from their corresponding DNGs and Aperture went back to seeing the jpegs with the correct file sizes.
    Therefore, Aperture is having some difficulty with two separate files, one JPEG and the other DNG, when they both have the same name (different extensions, of course).
    Try it if you have a moment. Take one raw file and convert it to DNG and place it in a folder with its corresponding jpeg. Rename both to the same name and different extensions (.dng + .jpg) and see what happens when you try to get Aperture to import. Chance are Aperture will show bogus file sizes for the jpeg.
    Let me know if that's clear.
    Antonio

  • Workflow for Maintenance of records

    What is the best practice for MDM workflows for Product Master data maintenance?  This is specifically about manual vs automatic workflow trigger. 
    Automatic Trigger - As and when record change, workflow trigger.  No Need for people to go manually and initiate the workflow.  Easy for user(s) to maintain.  But with this, we will loose the functionality (Compare from original Records) as records change happen before trigger.   We never know what changes made in user friendly manner.
    Manual Trigger - Item needs to be attached manually to maintenance workflow.  User needs to know about this step and have this additional work.  This will not work, if somebody is changing record on portal.  But this way, we will use the functionality for (Compare from original records) as record change happen after workflow trigger. 
    Any suggestion?

    Hi Rt,
    If you compare Automatic Importing to Manual importing.
    Automatic will be the prefered option as any business process will prefer Automation over manual due to serveral reasons some of them being lesser manual error,Less time better efficiency etc.
    If you have a set of say 1 million records and in a delta import process say 10000 records gets changed.If you wish to run a maintainence workflow on these 10000 records mnaully will be a hectic and tedious task.
    On the other hand if you have set the trigger to automatic trigger action for record update.Automatically these updated records will move to the workflow.
    If you really wnat to keep a track of the updated records you can try using one of the below strategies:
    - Enable change tracking wherein you will be able to view the old value and new valueof the changed records.
    Kindly refer the below link:
    http://help.sap.com/saphelp_mdm550/helpdata/en/45/c7b20339ee570ae10000000a114a6b/frameset.htm (change tracker)
    http://help.sap.com/saphelp_mdm550/helpdata/en/45/c87d0243e56f75e10000000a1553f6/frameset.htm (Change Tracker Configuration)
    - Use a time stamp field which will get updated everytime a records gets modified for a particular field.
    Hope It Helped
    Thanks & Regards
    Simona Pinto

  • Roles vs Workflow for manual update record issue

    I am sorry for taking your time but I need some HELP as we go life with MDM and there is still one open topic that is connected to workflow implementation. 
    Do you have maybe someone who can advice me a solution or workaround to solve this issue. See description below.
    We are using role based workflow (few of workflows triggered one by one depends on the task that needs to be performed)
    As agreed with our client the several users are not allowed to:
    Modify (add/remove) original records
    Start workflows
    Check out / roll back records 
    Our solution provides them with option to do any kind off modification on Check Out records, and that action is triggered as automatic result of import records.
    NOW a small issue appeared since the import from MDP is made based on a new rapport that does not have several fields that we where using to determinate what items from materials will change. 
    So the next idea was to do that manually since it happens only few times a year for more or less 10 items. And that is where the problems started.
    I want to have a small workflow that will do as follows:
    Check Out Record -> Allowed to make changes -> Send to the next step (Approval process will be started)
    but we do not want to allow them do Checkout record or add to job
    (It can be only acceptable if we can allow them to add to ONE of the workflows but not all of them)
    I tried also to use the trigger actions Record Update2 but Workflow checkout occurs after record update (update applied to original record) so that is not applicable to, as since we want to keep original data in case someone rejects the new changes (that way we can always go back to original records). I would rather need something like Record Import only without the import part (it checks out the record and only then it allows to do any changes). ;P
    If the description is not clear let me know I will try to “translate it to easier English”
    Hope to hear from someone soon 
    Aleksandra

    From reading your question, I gather the following:
    You would like for users to be able to edit a record, which will automatically trigger a workflow, and if it's rejected then it should roll back the changes.  However, the user should not be able to manually start the workflow, it must be started and launched automatically on record edit.  Does that sound correct?
    If so, then you may have an issue.  While an edit can be used to launch a workflow, the workflow is not geared towards approving that edit.  It's assumed that other changes will be made, and those changes are the ones that will be approved or rejected.  This seems a bit strange I know, and hopefully this issue will be addressed in future versions.  However, I think you're only alternative is to have the users be able to start their own workflows.  You can probably use a security role such that a user can't modify normal records, but can only modify records that are checked out to them.  Then you would have to modify your workflow such that it only contains one record at a time, this way the user would not be able to add multiple records to the workflow.
    Does that make sense?  I hope this helps.

  • Problem with recording device

    Try to use Echo/Sound test service, as well as a couple friends on the list and get the following message "Problem with recording device".  I have also searched in the community, but found many issues releated, but no solutions that fit the problem.  Headset: Turtle Beach XP SevenSkype Version: 6.22.81.105Operating System: Windows 7 Ultimate Service Pack 1; 64 - bit Tested in sound recorder, and records my voice, and able to playback and hear my horrible singing. I did find a rather odd way to resolve the issue temporarily. I also use hangouts from time to time, and when I start a video call, it will ring, and send out, and I can then call out using skype to a friend/sound test and it will work fine for the rest of the call. Able to talk, and do whatever.  Unfortunatley, with the listed method above I have to repeat the process everytime I want to make a call, or accept someones call. Rather... Annoying. Any solution to this, or what can be causing this issue?  

    I suggest  you download and install the latest generic Realtek audio drivers as they should be compatible with the computer model you listed in a previous post.  I run a similar model to that one and have no issues with it.  Skype is rather resource intensive on that netbook when participating in video calls due to the limitations of the processor and onboard video chipset. The latest generic Realtek audio drivers (Select "High Definition Audio Codecs" - 32 bit Windows 7)http://www.realtek.com/downloads/okay, i have pretty much given up trying to use Skype on this netbook but i came back to report the known data just in case anyone else might find it useful. to begin with 1) let's get this upfront. i am ignorant, ill-informed, tech-illerate and stupid. i stipulate to this going in. i've NO idea what the hell i'm doing. 2) hardware = ASUS eeePC1005HA, Win7Starter32, 1G DDR2, Intel Atom280, 250GHDD 3) per the above suggestion i went to the RealTek site and looked for the driver, but first 4) i had SlimDriver look around for me and it said there was a newer driver (i think dated 2011) which i had it download & install 5) so that didn't seem to make the slightest difference in Skype performance (i.e. none) so 6)as in (3) above i went to http://152.104.125.41/downloads/downloadsView.aspx?Langid=1&PNid=24&PFid=24&Level=4&Conn=3&DownTypeID=3&GetDown=false and it offered me 2 choices of sites from which to download Version R2.78 for 32bit Win7 so i picked one at random and it downloaded 2 files, 1 a .exe and the other a PART which i have no idea what the hell that is. i barely know enuf to double clic on the filename in WinExplorer Downloads so that's what i did first on the .exe file cuz that one had a file size greater than zero (unlike the PART file) and got an error message saying Win7 didn't know what to do with this file and could i please suggest a software to use on it. 7) so i deleted it and started over with the same result and then i repeated step 7) only this time i got only the .exe file in my Downloads folder and when i double-clicked it i actually got the Install Wizard to run. 9) so while the Wizard was running i went and looked in my "Windows 7 In Depth" by Cowart & Knittel and found nothing in the index under RealTek so i went and looked at Drivers and based on clues i found there i went to Control Panel ->Hardware & Sound -> Device Manager ->RealTek HD Audio [hidden under expandable Processors - Sound, Video & game conrollers]->(LeftClick to get Update Driver Software), and wait about a year and a half for 'Onliine Search for Software', followed by the message "the best driver software for your device is already installed". 9)so by this time the Install Wizard has finished Uninstalling the previous version of the driver and wants me to RESTART and that's right now in real time so i am now closing this browser and if i ever finish restarting i will continue this response in a new reply window starting with step (10), whatever that turns out to be. the suspense is killing me.

Maybe you are looking for

  • Updating error

    So I'm at a loss here. I put new music on my itunes and went to update my nano and it gave me an error message that said that my nano "can not be updated because all the playlists no longer exist" I then went and looked at my ipod and all of the song

  • How to play Youtube on my W995??

    How to play youtube application on W995? It keep on buffering, but failed at last!

  • Do I need flash of can I get rid of it and somehow use HTML or anything else? XPSP3 FF7b

    Please no details on how to troubleshoot. I'm looking for alternates to flash player and don't know enough about this topic despite googling this subject (alot)...

  • CS6 not opening EPS file

    I'm running Adobe Design Standard CS5 on my Mac and Adobe Design Standard CS6 on my PC. A client gave me an EPS file which I cannot open. The message in Illustrator says it was created in a newer version of Illustrator. But CS6 is the newest I though

  • BEA 10.2 proxy plugin

    Dear all, i don't know that i am a correct place, but i have a question about a bea weblogic proxy plugin. The situation is, that we have a BEA 10.2 32 bit application server in use, and want to use 64 bit iPlanet webserver. I have an error message w