Maximum Number of Substitutions in UWL

What is the maxium number of substitutions you can set in the Universal Worklist?
Thanks
WB

Hi,
If a substitution works as a Dynamic iView, then the max number is 7.
Check : [Configuring iView Properties  (in UWL Configuration Wizard)|https://help.sap.com/saphelp_nwce10/helpdata/en/0a/ad68c125ae496f8c04a25090bd2e3c/frameset.htm]
Cheers,
Remi

Similar Messages

  • Manage Substitution Rules UWL

    Dear.
    I have the following doubt with the Manage Substitution Rules UWL :
    Is posible have a rule in where Only some WF should go to the inbox of the substitute?
    Ie. The Boss have process of Workfow of modules OM, TV, PA, PY that arrives at UWL, and the boss only need delegate to the substitute only the item for the process of WF of PY and PA for a date.
    How can solve this?
    Regards

    Yes there is something called Task classification!
    You can do so via filtering or classification of tasks
    read here
    You will need to enable the support information in order to get the
    associated task number that corresponds to the backend task.
    If you wish to hide certain tasks, the easiest way to do it is to
    redirect the task type that you want to hide to some unused item type.
    You can create your own XML file and give
    each task number its own entry in the XML
    They each need to be given a different item type name. They can't
    all be directed into the same item type since there would be
    multiple conflicting definitions for that item type in the file.
    No view definition is needed, you can just give it a garbage
    defaultView name (HiddenView).
    I have attached an example for you in the attachment area. This is
    stored as a text file. Also,
    Where you see the following:
    systemId="<YOURSID>" externalType="<YOURTASK>" in the XML, this
    obviously needs to be replaced with your sid and your task id which
    you are looking to exclude.
    For ex
    For example, if it is the following task pasted below:
    <ItemType name="uwl.task.webflow.TS01000096.SAP_R3_MUS"
    connector="WebFlowConnector" defaultView="DefaultView"
    defaultAction="launchSAPAction" executionMode="default">
    If you were trying to hide this, you would write it in the XML file
    as follows:
    <ItemTypes>
    <ItemType name="uwl.someHiddenType1"
    connector="WebFlowConnector" defaultView="HiddenView">
    <ItemTypeCriteria systemId="SAP_R3_MUS"
    externalType="TS01000096" connector="WebFlowConnector"/>
    </ItemType>
    ***************And for the next one:*********************
    <ItemType name="uwl.someHiddenType2" connector="WebFlowConnector"
    defaultView="HiddenView">
    <ItemTypeCriteria systemId="SAP_R3_MUS"
    externalType="TS01000097"
    connector="WebFlowConnector"/>
    </ItemType>
    Classification
    You can arrange tasks and workflows into various classes within the SAP
    System. The classes professional, personal and disciplinary are
    standard. The system checks the task class under the field name
    TASK_CLASS in the authorization object S_WF_WI. This system uses this
    authorization object to check the authorization for carrying out
    specific actions on particular work items. The assignment of tasks to
    classes is also important in the definition of substitutes. You can
    also define that only those classes are displayed which refer to tasks
    or workflows of a particular class. Take this into account when you
    create new classes and assign tasks or workflows to the classes.
    You can set this classification via:
    SPRO
    => IMG
    => Basis Components
    => Business Management
    => SAP Business Workflow
    => Basic Settings
    => Maintain Task Classes.
    Once the classification has been added as above you can then add this to
    your task. Goto PFTS => Enter task ID => Change Mode => Menu: Addition
    data => Classification.
    See SAP online help at:
    http://help.sap.
    com/saphelp_nw70/helpdata/en/c5/e4b5eb453d11d189430000e829fbbd/framese
    t.htm
    [2] Substitute Profile
    You can define one or more substitutes for working with the Business
    Workplace. The authorizations of a substitute are determined by the
    substitute profile which you assign to him/her when you set up the
    substitution. A substitute profile comprises specific task classes.
    Task classes describe individual tasks or standard tasks. This
    assignment is made in the task definition. A user you have specified
    can then log on as your substitute. "Your" work items are displayed to
    the substitute in their Business Workplace with the restrictions
    resulting from their substitute profile.
    You can set the substitution profile via:
    SPRO
    => IMG
    => Basis Components
    => Business Management
    => SAP Business Workflow
    => Basic Settings
    => Substitute Profile
    => Define Substitute Profile
    or
    See SAP online help at:
    http://help.sap.
    com/saphelp_nw70/helpdata/en/c5/e4b5eb453d11d189430000e829fbbd/framese
    t.htm

  • Illustrator won't run: "unable to set maximum number of files to be opened"

    I have an intel macbook pro (core duo with 2GB ram) and a copy of purchased adobe creative suite 2. Other applications in the suite like photoshop, acrobat, etc can run on my mac without any problem. But when I try to run illustrator, it just shows an error message "Unable to set maximum number of files to be opened" and quits. I also installed a trial version of illustrator cs3 and got the same problem. Can anyone help? Thanks.
    CC

    Hi, I realize this is an old thread but it was unanswered and the issue has come up again in a newer thread:
    http://forums.adobe.com/message/2534652
    If the original poster sees this, can you reply tin the new thread and let us know if you were ever to solve this problem?
    Thanks!

  • How to find maximum number of users we can assign for Hyperion Planning.

    HI,
    How to find maximum number of users we can assign for Hyperion Planning.i.e., how to find license limit in hyperion planning 11.1.2.1.
    In Essbase propreties, the system is showing maximum planning users could be 65535.
    what would be the number for concurrent scenario?
    Thanks
    Giri
    Edited by: Giriprasad on Jun 18, 2012 2:18 AM

    The number of users would be based on your license agreement with Oracle, the system is not aware of your license agreement so it is up to you to stick to it.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to set up the maximum number of messages on a queue programmatically

    Hi,
    I am using IMQ 3.5 to implement a message layer for one of my projects. I created a "Job Status Queue", which receives job status report from a java application every minute. But I just want to keep the most current status report instead of all the job running history. How can I restrict the maximum number of messages to 1 programmatically?
    Any suggestion or help will be appreciated.
    Xiaoyun Tang

    You can't limit the destination size programmatically, but you can do it administratively and associate a behavior to occur when the limit is reached. In your case it sounds like you want a queue, 1 message deep, and to discard the oldest message when the queue is full. When you create the physical queue on the broker you can specify these attributes (you can also update them on an existing queue). For example:
    imqcmd create dst -t q -n StatusQ -o maxNumMsgs=1 -o limitBehavior=REMOVE_OLDESTFor more information see Chapter 6 of the Message Queue Administration Guide. In particular the "Managing Destinations" section:
    http://docs.sun.com/app/docs/coll/MessageQueue_35_SP1
    Joe

  • I am trying to setup iCloud account and when I login I see a popup. The Maximum number of free accounts have been activated on this iPhone. Pls, help me fix it. What other accounts? Thanks

    I am trying to setup iCloud account and when I login I see a popup. The Maximum number of free accounts have been activated on this iPhone. Pls, help me fix it. What other accounts? Thanks

    Then you'll have to use another iOS device or Mac running OS X Lion or higher to create a new account for you to use on your phone.  If you don't have one, perhaps a friend would allow you to create and account on their device (note: this will use one of their three maximum accounts).  To do this, they would need to go to Settings>iCloud, tap Delete Account (which will delete the account from their device but not from iCloud), then allow you to sign back in with your ID to create the new account.  Then tap Delete Account to delete the new account from their device, and finally, sign back in with their iCloud ID to restore their iCloud account to their device.  Then you can sign in with your ID on your phone in Settings>iCloud and use the new account.

  • Error message in the report: Exceeded configured maximum number of allowed

    Hi,
    When i'm running one report, it's throwing the following error.
    Error
    View Display Error
    Exceeded configured maximum number of allowed input records.
    Error Details
    Error Codes: EKMT3FK5:OI2DL65P
    SQL Issued: 3302~v9p2gfbm0sfk91lrj16oe7srm2
    This is most common error. my report is retreiving 469,501 rows in the database.
    These are the settings in the instanceconfig.xml :
    <Views>
    - <Pivot>
    <MaxPagesToRollOutInDelivery>1000</MaxPagesToRollOutInDelivery>
    <MaxVisibleColumns>500</MaxVisibleColumns>
    <MaxVisiblePages>2500</MaxVisiblePages>
    <MaxVisibleRows>1000000</MaxVisibleRows>
    <MaxVisibleSections>10000</MaxVisibleSections>
    <DefaultRowsDisplayed>1000000</DefaultRowsDisplayed>
    - <!-- This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware Control
    -->
    <DefaultRowsDisplayedInDelivery>1000</DefaultRowsDisplayedInDelivery>
    - <!-- This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware Control
    -->
    <DefaultRowsDisplayedInDownload>100000</DefaultRowsDisplayedInDownload>
    - <!-- This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware Control
    -->
    <DisableAutoPreview>false</DisableAutoPreview>
    </Pivot>
    Max visible rows are higher than my report rows, but still it is throwing error.
    Please any suggestions !!!!
    Thanks in Advance

    Just in case try to set other views and see how it works
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10541/answersconfigset.htm#CIHHBHEB
    In WebLogic FMW Control or EM:
    http://server.domain:7001/em
    Click on Fam_bifoundation_domain -> Business Intelligence -> coreapplications -> Capacity Management -> Performance
    Maximum Number of Rows Processed when Rendering a Table View
    Number Of Rows:
    Maximum Number of Rows to Download
    Number Of Rows

  • I'm using acrobat pro in my project after debuging the project and after opening a certain number of PDF files I receive the message: the maximum number of files opened has been reached, you have to close some files to continu.even doing that, I steel rec

    I'm using acrobat pro in my project after debuging the project and after opening a certain number of PDF files I receive the message: the maximum number of files opened has been reached, you have to close some files to continu.even doing that, I steel receive the same message.Some one can tel what to do please? Thanks

    Hi Memalyn
    Essentially, the bare issue is that you have a 500GB hard drive with only 10GB free. That is not sufficient to run the system properly. The two options you have are to move/remove files to another location, or to install a larger hard drive (eg 2TB). Drive space has nothing to do with SMC firmware, and usually large media files are to blame.
    My first recommendation is this: download and run the free OmniDiskSweeper. This will identify the exact size of all your folders - you can drill down into the subfolders and figure out where your largest culprits are. For example, you might find that your Pictures folder contains both an iPhoto Library and copies that you've brought in from a camera but are outside the iPhoto Library structure. Or perhaps you have a lot of purchased video content in iTunes.
    If you find files that you KNOW you do not need, you can delete them. Don't delete them just because you have a backup, since if the backup fails, you will lose all your copies.
    Don't worry about "cleaners" for now - they don't save much space and can actually cause problems. Deal with the large file situation first and see how you get on.
    Let us know what you find out, and if you manage to get your space back.
    Matt

  • HT204053 I have an iPhone 4S and when I try to add an iCloud account is gives me an error "Cannot Sign In, The maximum number of free accounts have been activated on this iPhone." Is there any way to deactivate an account?

    I have an iPhone 4S and when I try to add an iCloud account is gives me an error "Cannot Sign In, The maximum number of free accounts have been activated on this iPhone." Is there any way to deactivate an account? I have one for myself, one for my family and one for my work. I had all three on my iphone and then I deleted my work. I wanted to get my own person @me.com account. It wouldn't let me create it from my iphone, so I created it from my Macbook Pro. I am trying to add it to my iphone, but it keeps giving me that error. If there is a way I can deactivate my work one so I can use my @me.com personal account?

    Welcome to the Apple Community.
    Unfortunately once all the 3 iCloud accounts have been created on your mobile device, you cannot create any more regardless of what you do. You will need to re-use one of the accounts that you have already created or create your new account on another device or computer.
    You should however be able to add existing accounts to your device, are you sure you aren't trying to create on rather than simply use an existing one.

  • Maximum number of photos that can be imported into an iPhoto library?

    1. Does iPhoto have a maximum number of files or photos that it can handle in a single library?
    I have a lot of photos (20GB) that have not yet been imported into an iPhoto Library. I am going to set up a new library with the iPhoto Library Manager (iPLM), but am wondering if there is a maximum number of files that can be handled in a single library?
    2. Also, I don't think I want to import these, since that would create an iPhoto library as large as the source files. Are there any problems if I set up the preferences so that this library will not have the graphics imported into it?
    3. With iPLM, can you have different sets of preferences for each library?
    Thank you for any advice or suggestions.

    1. Does iPhoto have a maximum number of files or photos that it can handle in a single library?
    Apple advertises that iPhoto will handle 250,000 photos - I doubt that anyone has come close to that (or will)
    I have 19,278 in 237 events - 22 GB - on a G5 iMac and it is snappy with no issues
    I have a lot of photos (20GB) that have not yet been imported into an iPhoto Library. I am going to set up a new library with the iPhoto Library Manager (iPLM), but am wondering if there is a maximum number of files that can be handled in a single library?
    If you want those should be fine in one library
    2. Also, I don't think I want to import these, since that would create an iPhoto library as large as the source files. Are there any problems if I set up the preferences so that this library will not have the graphics imported into it?
    It is a choice - if you do NOT import them then you will be responsible for all future management - deleting, etc. Moving to a different location or computer is much more difficult if you reference your photos instead of importing them.
    Many people import them, burn the original source photos to CD or DVD and delete them from their disk letting iPhoto manage them
    3. With iPLM, can you have different sets of preferences for each library?
    I'm not sure but I do not think so
    Larry Nebel
    Message was edited by: LarryHN

  • I cannot sign in to my icloud i reached the maximum number of free accounts for my phone. how will i log in now? it is an i phone 5 and was used for work before and now i want to use it for personal use

    I cannot sign in to my icloud. I have reached the maximum number of free accounts on my phone.
    I am not sure what to do next.. i need to set up an icloud but i cant now.

    Welcome to the Apple Community.
    Unfortunately once all the 3 iCloud accounts have been created on your mobile device, you cannot create any more regardless of what you do. You will need to re-use one of the accounts that you have already created or create your new account on another device or computer.
    You should however be able to add existing accounts to your device, are you sure you aren't trying to create on rather than simply use an existing one.

  • How can we increase the maximum number of records which we export from UME

    Hi All,
             Is there any way to increase the maximum number of records which we can export from the UME.
    Please give your valuable suggestions as soon as possible.
    Thanks in Advance
    Regards,
    Ramalakshmi.S

    I didn’t find any configuration you can set to increase the number. I think it is related UI. The number is designed programmatically.
    Lisa Zheng
    TechNet Community Support

  • How can we delete the icloud accounts from main website.Iam trying to log in to my account and it says that MAXIMUM NUMBER OF FREE ACCOUNTS ARE ACTIVATED?What can i do guys plz tell me?

    How can we delete the icloud accounts from main website.Iam trying to log in to my account and it says that MAXIMUM NUMBER OF FREE ACCOUNTS ARE ACTIVATED?What can i do guys plz tell me?

    You can't delete an account, you can only stop using it.  If you're getting that error message you won't be able to create a new account on your device.  Your only options are to re-use one of the accounts previously created, or create a new account on a different iOS device or Mac (running OS X Lion or higher), if you have one.

  • I changed my AppleID/Password and now am locked out of iCloud. iCloud says maximum number of free accounts have been activated. tried Settings, Mail etc but iCloud does not appear. I was going to delete it and start again.

    Had to change Apple ID/Password recently now cannot access iCloud. In settings when tapping iC, log in screen appears with old ID and request for (old) password.
    In Settings  Mail, Contacts etc iCloud does not appear. I was going to delete account.
    Trying new ID/Password message appears "maximum no. of free accounts have been activated".
    Using old ID/Password message apperas "you can,t sign in because account was disabled for security reasons ......reset password at iforgot.apple.com which i did.
    Can anybody help please??

    Hi,
    I tried to log in to iCloud but a message appears telling me I "can't sign in because my account was disabled for security reasons....reset password at iforgot.apple.com". I don't know why this happened.
    I reset both my Apple ID and password.
    When I tap Settings iCloud is listed on the left side between General and Mail, Contacts etc.
    Tapping iCloud brings up a log in screen for iCloud which shows my old Apple ID and requests the password. If I put the password in I get the message as above.
    If I use the new Apple ID/Password I get the message "the maximum number of free accounts have been activated....
    In settings there is no option to "Delete Account"
    Any suggestions??

  • I bought a used iPod touch and when I try to set up my iCloud account, it says that the maximum number of free accounts have been activated on this device. Is there a way around this?

    I bought a used iPod touch and when I try to set up my iCloud account, it says that the maximum number of free accounts have been activated on this device. Is there a way around this? I thought I could maybe set up the account on my PC and go from there, but it won't let me do that. It is forcing me to set up on the iPod. Am I doomed to have no iCloud account because I opted for a used device?

    See this previous discussion.
    icloud: The maximum number of free...: Apple Support Communities

Maybe you are looking for

  • Encapsulating Data in XML Output in CDATA tags

    Hi, I have a simple pdf fillable form that I created in LiveCycle Designer ES that saves/submits form data as XML for parsing into a database.  The database parser requires all form data to be encapsulated into CDATA tags inside the XML fieldnames or

  • Q10 Won't turn on tried all the suggestions

    Q10 started acting unresponsive, attempted to restore to original using the post here security settings. 3 hours later it still wasn't finished apparently...took battery out, reinstalled....now it won't turn on. Plugged into wall charger, waited an h

  • Scheduled feature

    In the Nokia9300 phone you can add timing to send a text message (If you select Scheduled, you must define the date and time when the message will be sent). My question is what are the new phones have this feature ????

  • Delta Update with flat file into infocube

    Hi Can any one explain me the steps how to achive the delta update with falt file into infocube? Thanks

  • Event 106-VMSwitch Error:Available processor sets of the underlying physical NICs belonging to the LBFO team...............

    I am Using Hyper-V 2012 R2. and the NIC Teaming mode is "Switch Independent (Dynamic)", I am getting the following Error on NIC Teaming on Both Hyper-V. Available processor sets of the underlying physical NICs belonging to the LBFO team NIC /DEVICE/{