When to use CoS versus Roles ? Examples ?

based on my title... I would like to define some values in DS5.1 that can be factorized. for instance, two examples : Fax numbers for division/department, and managers for each employees....
examples are very very welcome.

You should find some examples and principles of Roles and Cos is the product documentation on http://docs.iplanet.com
The general philosophy is that you use Roles to group the people in the tree and you use COS to assign virtual attributes to the set of users that have been grouped in the Role.
Regards
Daniel

Similar Messages

  • In my iPad mini,when my use in app streaming , there is no sound.. Can anybody help? It used to be ok before. For example, there is no sound when I use YouTube clip in a news item or magazine like pulse..

    nno sound when I use in app streaming

    Hello Saranginotes,
    After reviewing your post, I have located an article that can help with iOS audio issues. It contains a number of troubleshooting steps and helpful advice for the issue you are experiencing:
    If you hear no sound or distorted sound from your iPhone, iPad, or iPod touch speaker
    Can't hear anything from the built-in speaker of your iPhone, iPad, or iPod touch? Maybe you can hear, but the sound is distorted, muffled, intermittent. Or maybe you hear static or crackling noises. If your iOS device has any of these issues, follow these steps.
    Follow these steps and test the sound after each one.
    Go to Settings > Sounds and drag the Ringer And Alerts slider to turn the volume up.
    If you can hear sound from the speaker, then the speaker works. Continue with these steps to find the setting or switch that's affecting the sound. If you can't hear sound from the speaker, contact Apple Support.
    Make sure the Ring/Silent switch is set to ring. If you can see orange, it's set to silent.
    Restart your device.
    Open an app that has music or sound effects. Adjust the volume with the volume buttons or the slider in Control Center.
    Go to Settings > Bluetooth and turn off Bluetooth.
    If there's still no sound, connect a headset. If you can hear sound through the headset, remove it and clear any dust or debris from the headset jack of your device.
    If the device is in a case, make sure that the case doesn't block the speaker.
    Use a brush to gently clear any debris from the speaker and Lightning connector (or 30-pin dock connector). The brush should be clean and dry and have soft bristles.
    Update your device to the latest version of iOS.
    If you followed these steps and still hear no sound or distorted sound, contact Apple Support.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • Why when i use a new apple Id and new id for icloud all my information is gone? For example all my contracts are all gone.

    I don't know why when i used a new apple ID and new icloud ID all my information is done. My contracts are all gone. This only happen on on phone. When i was changing the other phones it works fine. Nothing is lost. So i dont understand when i was changing the apple ID and icloud Id the information is lost. You know when you go to setting and you click iCloud and i saw that the contracts book was light on. Does that matter? Does that cause i lost my contracts?

    I don't think the iPhone is really designed for people to be switching from one Apple ID to another so when you do so you may experience problems.  You have two options on the iPhone for where you can be accessing contacts, from iCloud and the iPhone itself.  You can also pull contacts off of a SIM card but they are then stored on the iPhone and not accessed from the SIM card.
    You could try this;
    1. Go to Settings > iCloud
    2. Sign in to the Apple ID that you want the Contacts from,
    3. Turn "On" the Contacts slider and let it download all of your contacts
    4. When it's done downloading, turn the slider back to "Off" and you should get a message like this..."What would you like to do with the previously synced iCloud contacts on your iPhone?"
    5. Then select "Keep on My iPhone"
    Then after that you can then sign out of that Apple ID and into your other Apple ID and the contacts shouls still be there.

  • I have 3 laptops and when i use google maps wanth to move the map its begin role oat of control and cant stop it

    When I use google maps in my three laptops one with XP one with Vista and then one with win7 64 when it happens that when I want to move the map when the map starts scrolling uncontrolled one way that can not be stopped without turning off the google maps ?

    When I use google maps in my three laptops one with XP one with Vista and then one with win7 64 when it happens that when I want to move the map when the map starts scrolling uncontrolled one way that can not be stopped without turning off the google maps ?

  • When to use the new file based content repository

    In Service Pack 4 there's a new implementation of the CMSPI interfaces which is configured by using the following implementation class:
    com.bea.content.spi.internal.FileSystemRepositoryImpl
    When should one use this new file based repository versus the existing one (configured by using the following class: com.bea.content.spi.internal.RepositoryImpl).
    I've read the edocs, but it doesn't state when to use this new one compared to the previous implementation.
    We consider using a third party content repository, but for the time being we will use the content repository provided by BEA.
    Trond Andersen, Invenia AS, +4798290811

    use the new keyword when you don't have an instance of that object in memory that you want to use.  For example...
    if you have an object already in memory that is holding a property with a "CamelQuery" object, then you can say 
    var query = myobject.Query;
    however, if you have to write the query, or instantiate the object from nothing, then you need to use the "new" keyword.  A good example is SPSite object...
    if you can get a new SPSite object by either "newing one up and passing the URL" or getting the farm and getting a site from that object. 
    using(SPSite site = new SPSite("url to my site"))
    now I can use site.
    //or
    SPSite = myWebApp.Sites[0];
    // this gives you site at index 0 of current webApp
    most of the time in SharePOint you will be using the "new" keyword to open site collections, and then getting your subsites from there. BE CAREFUL using the "new" keyword. If you "new" up an object that is iDisposable... you
    MUST dispose of that, but if you use that same object but it comes from the "current context", you mustn't dispose of it.
    //dispose of this by using statement
    using(SPSite site = new SPSite(<url>))
    //do stuff
    //after this bracket it is disposed.
    //do not dispose of this:
    SPSite mysite = SPContext.Current.Site;
    //unpredictable behavior can occur because you will still need references to your current site.

  • When should use request scope

    hi
    i don't know when i should use request scope, the example is use session scope always.
    Can anyone help me?
    thanks!

    SpiderFromMars wrote:
    > What are the best practices for using the variables
    scope versus using the
    > request scope when assigning variables.
    >
    > In other words, when should I use <cfset variables.x
    = 'barf'> and when
    > should I use <cfset request.x = 'barf'>?
    >
    The variables scope is only accessible in the current
    template. The
    request scope is accessible in the current template and any
    other
    template, such as a custom tag or include file, that is used
    to build
    the current request.
    I.E
    <!---index.cfm--->
    <cfset variable.x = "foo">
    <cfset request.x = "bar">
    <cfoutput>#variable.x##request.x#</cfoutput>
    <cf_myCustomTag>
    <!---myCustomTag.cfm--->
    <cfset variable.x = "bob">
    <cfoutput>#variable.x##request.x#</cfoutput>

  • Can I set a default home page when people use my router?

    Can I set a default home page when people use my router?
    Can I set it to my web site for example so that people have to go there when they connect?
    Thanks,
    Paul

    Hello EireReality. Welcome to the Apple Discussions!
    Can I set a default home page when people use my router?
    No, at least not that I'm aware of. Setting a "default home page" is typical feature of a web browser, not an Internet router.

  • How can I remove ASCII text from a field when I use it in a query

    How can I remove ASCII text from a field when I use it in a query?
    I am running a select statement on a table that appears to have ASCII text in some of the fields. If I use these fields in the where statement like the code below nothing returns:
    SELECT FIELD1 FROM TABLE1 WHERE FIELD1 IS NULL
    But the field looks empty if I do a straight select without the where clause. Additionally, one of the fields has text but appears to be padded out with ASCII text, which I need to strip out before I can use this field in a where or join statement. I have tried using a trim, ltrim, rtrim, to_char, nvl, decode and nothing works. When I use excel to run the same query it looks as if these ASCII fields are boxes.
    I have asked our DBA team to see what they can do to prevent these from going into the table, but in the mean time I still need to run this report.
    Do you have any suggestions?

    Can you provide an example? I've been trying (for
    example) "select translate(' test one', ascii(' '),
    'X') from dual" with no luck.
    Thank you.To replace space, you should query like this:
    select translate(' test one', chr(32), 'X') from dual instead of select translate(' test one', ascii(' '), 'X') from dual Thanks,
    Dharmesh Patel

  • A user is having trouble printing. Print jobs take FOREVER when they used to speed through

    A user is having trouble printing. Print jobs take FOREVER when they used to speed through (despite linked images, etc)
    These are just some notes from our troubleshooting:
    User was trying to print out InDesign document however during the flattening phase, the computer would stall and would not print out the document.
    The document does not print out using double sided or single sided.
    The first time I went out, all I did was a system restore and uninstalled mcafee security plus because we're on a university network and sometimes the firewall blocks network printing, and that worked. She tried to print again later and it went back to taking 30 minutes for a print job of about 19 pages. These print jobs used to take about 5 minutes at the most to print entirely, but they queued up immediately, versus now, it takes about 5 minutes just to get to the printer.
    Further troubleshooting that I did on a separate day:
    Printer was printing fine in November - problem started at some point this month (December)
    Printing is fine elsewhere, including in Adobe Acrobat
    I was able to print one page just fine - it had no images (tried to print the same page later, took forever)
    Some of the images are very large (100MB+) photoshop files (again, they were there before and it printed fine) - these images are linked (with no link errors)
    She prints to a network printer, but there's no firewall on (again, printing is fine elsewhere)
    She's essentially printing with the default settings, she just centers her print, instead of the default layout.
    Now even printing with the default print set (not changing any print settings at all) doesn't work. Jobs take 30 minutes. I can't figure out if it's file specific or where the problem is. Since she has no custom settings, my next option is to just do an uninstall and reinstall, but I'm worried that the problem will still be there. I was starting to think that maybe the file is just so corrupted from all the force quits that that's causing the problem, but... I'm running out of solutions.
    Any help? 

    I have only worked doing layout for one business in my past. In that job our department would sometimes experience slowdown in printing from time to time. However, we began to see extreme slowdowns over a month period. It was finally tracked down to two things. One was something about the RAID array going bonkers. The other was some of the CAT cabling going bad. It only affected large print jobs and copying large files through the network. Even so, it was not 100% of the time. Sometimes things went along smoothly.
    Point is, have your IT people been invited in to experience the issue and see if anything in the network is causing at least latency issues?
    Take care, Mike

  • When to use which mapping in Scenario

    Hi,
           When to use
    1. ABAP MAPPING
    2. JAVA MAPPING
    3. XSLT MAPPING
    4. GRAPHICAL MAPPING
    When to use these mapping at what type of interfaces we should use them.
    Regards,
    Nissi

    Hi,
    Hope the following link gives you an idea of use case of different mapping techniques
    [Mapping Technique|http://wiki.sdn.sap.com/wiki/display/XI/Mapping+Techniques]
    [ABAP mapping implementation|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/a15a5f77-0c01-0010-cfa1-94ca75306537]
    [XSLT mapping implementation|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/0654b462-0c01-0010-4d9d-d2d5a7fee0d6]
    [Java mapping implementation|http://help.sap.com/saphelp_nw04/helpdata/en/e2/e13fcd80fe47768df001a558ed10b6/frameset.htm]
    To give an example, Usually file content conversion feature of file communication channel does not support the content conversion of structures with deep hierarchy then in that case we can go for XSLT mapping as with graphical mapping we cannot create text file for structure with deep hierarchy.
    You get more understanding on the use case when you develop different scenarios there are too many to list.
    Hope this helps !!!
    Regards,
    Amit

  • When I use Firefox for Yahoo mail the tabs such as sign out, search email, help seem to be disabled. How do I make them work? Works in Internet Explorer

    There are a number of tabs at top of my inbox such as sign out, search email, help, etc. They do not work. For example cannot insert a name for search email- will not give me the curser to do this. When I use internet explorer these tabs do work so not a problem with Yahoo mail- must be problem with Firefox. Recently updated Firefox.

    SafeBrowser posted Recently, the Yahoo Toolbar and the Babylon extension have been reported to cause that problem. They seem to overlap invisibly over the top of the web page display. If you have either or both, uninstall or disable them/it, or see if an update is available that solves the problem.
    See --> http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    I disabled the Babylon extension and Yahoo Mail works now.
    Thank you SafeBrowser

  • JavaFx Lighting Effects : When to Use which ???

    Hi,
    I know that this question in more design oriented than technical,
    but still i'm posting this question in this forum .
    I wanted to start off with javaFx lighting effects and i have found very good examples online .
    I have seen the implementation of lighting effects at:
    [http://code-better.com/javafx/lighting|http://code-better.com/javafx/lighting]
    and [http://jfxstudio.wordpress.com/2009/03/18/javafx-light-effect/|http://jfxstudio.wordpress.com/2009/03/18/javafx-light-effect/]
    These applications just gave us the ability to configure the lighting options .
    I also have found a file effects.fx online and in that i see that
    effect: Lighting{
    light: DistantLight{azimuth: 90}
    } // to be used to make a button look pressed
    and
    effect: Lighting{
    light: DistantLight{azimuth: 270}
    } // to be used to make a button look upbeat .
    But this hasn't worked for me in few scenarios .
    For example i have tried to apply these 90 and 270 distant light effects
    to buttons made of various gradients and for some it seemed to have worked and
    for some it doesn't seem to have worked .
    I think we will have to change the color of distant light for that .
    Could any one point me to a guide or online site or some tips
    that will help be in understanding which effect to use when and which color
    should i use for the lighting effect and other stuff .
    It would be of great help for me .
    Thanks a lot .
    bye

    Hi JavaFx Duo,
    Thanks for your reply .
    Actually I wanted to find out info like how to make an image ( or button of any gradient )
    look gone inside or look up ( in a measurable way, i mean depth or height below/over the surface )
    using lighting effects . And how does the azimuthal angle
    and the color of the light source have an effect on it .
    Earlier i have posted a forum in which Phi Lho has answered me
    on how to make the button text look gone down and i can try to achieve
    that by trying similar here .
    [http://forums.sun.com/thread.jspa?messageID=10844582&#10844582|http://forums.sun.com/thread.jspa?messageID=10844582&#10844582]
    But i thought of making use of the lighting effects and i want to know if any guide or tutorial
    is available which describes the lighting effect with various Colors
    and angles and when to use distant light/point light and spot light effects .
    I would also like to know a few practical implementations
    of these effects in javaFx ( i.e as i have posted earlier 90-for making it look deep and 270 for looking elevated
    and such stuff ............................. ) by varying the angle and Color ,
    So that i can use them in my applications rather than trying various combination
    each time .
    Thanks

  • When to use foreach in a pipeline?

    Hello
    I keep running into this confusion - when to use foreach cmdlet in a command line and when not to? (Please note I am not talking about foreach loop construct).
    For example I have seen the following 2 do not work in the same way:
    import-csv input.csv | foreach {
    $UserPrincipalName = $_.UserPrincipalName;
    Get-ADUser -filter {userprincipalname -eq $userprincipalname} -properties *
    | foreach { set-aduser $_ -UserPrincipalName "$($_.samaccountname)@test.local"}
    and
    import-csv input.csv | foreach {
    $UserPrincipalName = $_.UserPrincipalName;
    Get-ADUser -filter {userprincipalname -eq $userprincipalname} -properties * |  set-aduser $_ -UserPrincipalName "$($_.samaccountname)@test.local"
    The first one above does what I want but not the second one.
    Is there any logic to this?

    Hi Guys,
    I think I got my head straightened out, so here's the best attempt at explaining this:
    The basic pipeline
    The $_ is the dynamic variable that describes the object currently precessed in the pipeline. However, it only exists within the scope of the currently processing command. An Example:
    Get-ExampleObjects | Process-ExampleObjects -ToLower -Description "I'm a new description" | Set-ExampleObjects
    Get-ExampleObjects passes its output (whatever it might be) to the pipeline
    This output is piped to Process-ExampleObjects, a command that is designed to handle Pipeline Input.
    Within Process-ExampleObjects (which is its own scope), the currently processed Pipeline Object is referenced by the variable $_ and can thus be used. HOWEVER: This does not mean it exists within "| Process-ExampleObjects |" but within "Process-ExampleObjects".
    This means that while Process-ExampleObjects can have parameters, they need to be static as far as the current pipeline is concerned.
    Once Process-ExampleObjects is done, it passes its output via pipeline to Set-ExampleObjects. This moves the object out of the Process-ExampleObjects scope and directly into the Set-ExampleObjects scope within which the current object is again available
    in $_.
    Adding Scriptblocks
    So far, this is 'fairly simple'. As far as this is concerned, you would never see or use $_ at all. However, complexity is added when we add scriptblocks. Let's modify our last pipeline a bit:
    Get-ExampleObjects | Process-ExampleObjects -Filter {$_.Name -like "RAS*"} | Set-ExampleObjects
    Now, you may think "Hey! Aren't we using $_ as a parameter!?" on the -Filter Parameter of Process-ExampleObjects.
    No, we are not.
    What we do, is pass a Scriptblock into Process-ExampleObjects. Think of this above line like this:
    Get-ExampleObjects | Process-ExampleObjects -Filter [Scriptblock] | Set-ExampleObjects
    The scriptblock thing is passed as it is into the Process-ExampleObjects scope of the pipeline, and is applied to the objects while they are within the command. It's similar to passing a static line of text to a function, which means, on the inside "$_"
    arrives as it is, not as its value (which after all would still be null).
    Static external variables are still read as such and work. This should work:
    $string = "RAS*"
    Get-ExampleObjects | Process-ExampleObjects -Filter {$_.Name -like $string} | Set-ExampleObjects
    The reason this was implemented in such a way is simple: It allows us to dynamically alter the behavior of a function. But for us to be able to do this, we must somehow be able to refer to the input. That's what $_ is for.
    Cursed Nesting
    Finally what probably messed with your mind the most, we reach nesting pipelines.
    An example where it went wrong:
    Import-csv input.csv | foreach {$UserPrincipalName = $_.UserPrincipalName;Get-ADUser -filter {userprincipalname -eq $userprincipalname} -properties * | set-aduser -UserPrincipalName "$($_.samaccountname)@test.local"}
    is the same as
    Import-csv input.csv | foreach [Scriptblock 1]
    This means you get the content of input.csv, pass it via the pipeline to the foreach command, which applies the Scriptblock to each of them.
    This scriptblock then is this:
    # Scriptblock 1
    {$UserPrincipalName = $_.UserPrincipalName; Get-ADUser -filter [ScriptBlock 2] -properties * | set-aduser -UserPrincipalName "$($_.samaccountname)@test.local"}
    Scriptblock 2 is not an issue and works just fine (though it is its own special case, but not the issue of the matter).
    However, here comes the catch:
    The "Get-ADUser | Set-ADUser" segment is a nested pipeline, and as far as "$_" is concerned, that's like working with braces in mathematics: Inner brace first.
    Which means for all practical purposes, that once you are past the first pipeline symbol ("|") you can no longer refer to the $_ of the outer Scriptblock 1 until the pipeline is finished. However, before you enter Set-ADUser, $_ doesn't hold a value
    yet, which is why the UserPrincipalName will be set to "@test.local"
    Takeaway notes:
    - When creating nested pipelines in scriptblocks, after the first "|" you can no longer refer to the original "$_" of the scriptblock until the nested pipeline concludes.
    Cheers and I hope that was more comprehensible,
    Fred
    There's no place like 127.0.0.1

  • Checked and unchecked exceptions - when to use which ?

    Hi,
    Example:
    public void go(String[] args) {
       if(args.length==0)
          throw new //   <= what type of an exception should come here ?
    }Is there a good explanation when to use which one ? I know that generally
    unchecked exception are the exceptions associated with errors in the logic
    of your applications and checked are those which you can not determine
    (like files, networks problems ....).
    Thanks,
    Adrian

    There is no, "I think it is better to us a type-XXX exception here because of conditions 1, 2, and 3" scenario.
    Checked exceptions are of type java.lang.Exception and must be handled in one of two ways- try/catch constructs or having the method state it throws the checked exception.
    Unchecked exceptions are of type java.lang.Error or java.lang.RuntimeException. If the problem is an Error, something very bad has occurred like running out of memory. If it is a RuntimeError, then it probably came from a program bug. In both cases, there is no way for you to know when they will arise. Therefore the compiler does not force you to handle these unusual circumstances.
    If you think of piece of code may throw an error like an I/O operation, and you do not have code to handle that possibility, the compiler will let you know. After you have been programming long enough, you'll begin to know when you need try/catch constructs without Mr. Compiler yelling at you. ;-)
    Edited by: filestream on Sep 14, 2007 5:37 PM

  • How to use rules and roles in workflow?

    Hi experts,
    I am a beginner in  workflow. Could  any one tell me how to use rules and roles in workflow ?
    Can u pls tell me the steps to follow?
    and more over what are all the <b>important things</b> we have to learn in workflow module ??
    I shall be thankful to u.
    Thanks
    uma

    Hi
    Workflow automates the steps and activities in a business process according to predefined procedures and rules.
    Workflow presents information and documents to the appropriate knowledge worker or agent (another entity such as a program) to make a decision or perform an activity.
    Workflow tracks each and every step in the process flow and maintains an ongoing status.
    Workflow also collects and reports all of the metrics associated with the execution and completion of the process.
    Check the below links u will get lot of info..
    http://www.sap-press.com/product.cfm?account=&product=H950
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Go through the following links on FORK :
    http://help.sap.com/saphelp_nw04/helpdata/en/24/e2283f2bbad036e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/25f1e7454311d189430000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/c5/e4a930453d11d189430000e829fbbd/content.htm
    http://www.insightcp.com/res_23.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    For more reference on workflow: http://****************/Tutorials/Workflow/Workflow.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/04/9277a346f311d189470000e829fbbd/frameset.htm
    Check these links.
    http://www.sapgenie.com/workflow/index.htm
    /people/ginger.gatling/blog/2005/12/01/link-workflow-business-objects-to-your-collaboration-tasks
    http://help.sap.com/saphelp_nw04/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw33/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw31/helpdata/en/8d/25f94b454311d189430000e829fbbd/content.htm
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Workflow tutorials with step-by-step and with screenshots are available at http://www.****************/Tutorials/Workflow/Workflow.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/42/c14a9b55103116e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    http://www.sapgenie.com/workflow/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2857887
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2855919
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2735228
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    Debug a workflow.
    This has a step by step procedure :
    http://fuller.mit.edu/workflow/debugging.pdf
    www.erpgenie.com/sap/workflow/debugging.htm
    http://www.erpgenie.com/workflow/debugging.htm?2b5de440
    Workflow tutorials with step-by-step and with screenshots are available at
    http://www.****************/Tutorials/Workflow/Workflow.htm
    http://www.sapgenie.com/workflow/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2857887
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2855919
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2735228
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/WORKFLOW_tutorial.html
    Regarding Work Flow   
    work flow scenarios.
    1. applying for a leave.
    2. approval process.
    3. material creation process.
    4. mainly work flow is for notification purpose.
    chk this links
    http://help.sap.com/saphelp_erp2005/helpdata/en/fb/135962457311d189440000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.erpgenie.com/workflow/index.htm
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    http://www.insightcp.com/res_23.htm
    A good tutorial
    http://www.thespot4sap.com/articles/Invoice_Verification_Automation_Using_SAP_Workflow.asp
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    /people/alan.rickayzen/blog
    /people/jocelyn.dart/blog/2006/06/19/why-use-abap-oo-with-workflow
    a good book
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.sap-press.com/downloads/h950_preview.pdf
    Check the following PDF
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    also seach the workflow forum: SAP Business Workflow
    Regards
    Anji

Maybe you are looking for

  • String To Time Stamp including milliseconds

    Hi, The below image show me converting the time into a timestamp (and substituting the date from a different time stamp. This works fine except for the miliseconds. you can see here the milliseconds are defines as "%2d" and this does not work. If I r

  • Blackberry Desktop Software - Stops working at the end of synchronization

    During synchronization, the same handful of calendar conflicts come up.  After clearing them, and at the very end of synchronization, I get a pop up that "Desktop Software stopped working"...info fades out and the only option is to hit a CLOSE button

  • Does the 6.1 update cost anything?

    I was wondering if the update costed anything. There is an app now for messaging and I was wondering how is the ipod different from the phone now. Does the messaging cost. I'm just wondering before I use it so that there are no charges.

  • My computer Died now what

    My desktop died and I want to transfer my Itunes to my labtop. Im more worried about the songs I bought from Itunes then the CDs I have convertedI transfer teh data from my Ipod to wy laptop?

  • Icloud Status Waiting?

    I don't know about any of you guys, but a majority of my songs have this. Any wat to fix it?