Limit the amount of tasks that a user can claim

I have a custom worklist and I need to develop a requirement for not allowing the users to claim more than one task at a time. Does the Worklist API have something to limit the amount of tasks that a user can claim at a time?.
Thanks in advance.
Neuquino

Apparently the Family Base add-on (https://my.verizonwireless.com/vzw/nos/safeguards/SafeguardProductDetails.action?productName=familybase) from Verizon will allow you to set limits on how much data a particular device can consume.  I think it is free for the first 3 months (not sure) after that it will cost $5 per month.  I have heard rumors though that it does not work well with iPhones???

Similar Messages

  • How to limit the max dialog no that one user can use at the same time?

    Hi,
    I meet one performance problem that one user can open 6 sessions in the GUI and he/she can run 6 reports at the same time witch could occupy 6 dialogs in the sap R/3 instance. It makes poor performance for other users.
    Would you pls tell me how to limit the no. of sessions one user can create at the same time or how to limit the no. of dialogs one user can occupy at the same time?
    Thanks a lot!
    I used this parameters in the default profile as blew:
    rdisp/rfc_check 1
    rdisp/rfc_use_quotas 1
    rdisp/rfc_max_own_used_wp 20 (means: 20%)
    It still didn't work.
    Sean

    Hello,
    We can reserve DIA W.P by giving value to the parameter :- rdisp/rfc_min_wait_dia_wp=1(default)
    that have to necessarily remain free for other users.
    This parameter is used to reserve a number of dialog work processes for Dailog mode.
    For eg. If 10 dialog w.p. are configured for the instance(rdsip/wp_no_dia=10) and the parameter rdisp/rfc_min_wait_dia_wp=3 is set,parallel RFC's can occupy a maximum of 7 DIA W.P.3 DAI W.P. always remain free for dialog mode.
    But now the question is how we assign/restrict this free dialog w.p. to the specific user.
    Reply...
    Regards,
    JUNAID

  • Can you limit the amount of data accessed per user on an AirPort Extreme?

    Can you limit the amount of data accessed per user on an AirPort Extreme?

    Your question was whether the AirPort Extreme is able to establish data limits per user.
    If you add another router that has this type of capability or install software on another router, then you will be able to establish data limits for each user. The AirPort Extreme will have no control over this.

  • Limit the amount of copies that can be printed

    Is there a way to limit the number of copies that can be printed of a pdf from inside the form in LiveCycle? I would like clients to only be able to print  only two copies of a form with Adobe Reader. How can I do this?

    This should be doable, but not very pretty...
    First, put a text-field on the form, and make it hidden with a defaullt value of 0;
    in pre-print, check if the value of the hidden field is >= the limit, if so set
    xfa.event.cancelAction = 1
    that will prevent the print dialog from even showing.
    if the value of the hidden field is < the limit, add one to the value of the field.
    That should do it. If you need a hand with the actual code, just let me know.
    - Scott
    (limitations: if the user doesn't save the changes, the hidden field will remain at 0... as such, you may have to script the docClose event to trigger a save. The issue with this is that the user will be stuck with any changes made, regardless of whether they want to keep changes.. Like I said, it's not pretty. You could go one step further and save the state of all fields on open/save, then restore those values on close, except for the hidden field before triggering a save... As you can see, this can get complicated fast....)

  • Is there any way to limit the number of times that a PDF can be opened?

    I run a small publishing company and we want to provide exam copies of our books to professors.  At present our exam copies have the words EXAM COPY as a water mark on every page and we've also made the files so that they can't be printed or easily copied.  However, we'd like to also restrict these PDFs so that they can only be opened 5 times.  I've read about FileOpen but that approach seems a bit more complex than needed.  Is there any other way to restrict the number of times that a PDF file can be opened once it is downloaded?  Thanks in advance for any suggestions.

    DRM soltions like FileOpen are your best bet for PDFs. Others include Adobe's LiveCycle Rights Managment, LockLizard, Armjisoft PDF Security OwnerGuard, etc.
    They all work and are priced differently, but there's really nothing for what you want to do that is both simpler and secure.

  • How to get the global create tasks that a user is authorized to initiate?

    Hi,
    I am using SOA Suite 11g.
    I want to develop a custom workspace using Workflow Service API and BPM Service API.
    What I need to implement is, When a user login in into the custom workspace, I need to show him a list of processes that he is permitted to initiate as the out-of-box Workspace does. I wonder how can I implement this using API.
    thank you guys!

    Hey Ramy,
    A bit off the top of my head, but try this:
    IPortletContext PortletContext;
    IRemoteSession PTSession;
    PortletContext = PortletContextFactory.CreatePortletContext(Request, Response);
    PTSession = PortletContext.GetRemotePortalSession();
    privatevoidgetCommunities()
    IObjectManager Manager = PTSession.GetObjectManager(ObjectClass.Community);
    IObjectQuery Query;
    Query = Manager.QueryObjects(-1, 0, -1, ObjectProperty.Name, true);
    for(inti = 0; i <= Query.GetRowCount() - 1; i++) {
    string sCommunityName = Query.GetRow(i).GetName();
    string sCommunityID = Query.GetRow(i).GetID().ToString();
    Cheers!John

  • Auto claim a Task in the Worklist and limit the amount of assings per user

    Hi, I have two questions:
    1) Is there a way to implement "auto claim" in the worklist? I need to assign the task to the logged user as soon as the task is opened by the user.
    2) Is there a way to limit the amount of tasks that the user claims? I need to avoid the situation of a user claiming more than one task. In other words, I need that "If a user claims a task, he MUST release or action it before claiming another task"
    Thanks in advance,
    Edited by: Neuquino2 on Apr 30, 2010 1:03 PM
    I'm working with 11g

    Ok, I understand your use case for question 1. I actually have this same problem I have been trying to solve for a couple of weeks and haven't found a solution. My use case is slightly different. I have to assign to a group, but in some cases, I know which user in the group the task should be assigned to. However, the requirement is that I assign to the group. So I am trying to figure out how to use the routeTask method of the task service to route the task to the user after the task has already been created and assigned to the group. Not sure yet if that works. I have an SR open with Oracle Support. In your case, it sounds like you want the first member of the assigneeGroup who looks at the task to become the acquiredBy user. I would assume you would need to use routeTask in the Workflow API (in my case, I am using routeTask from BPEL).
    On the second question, I doubt that you will find any out-of-box mechanism to do this. There are the three workload balancing rules built into workflow API and available in the worklist application - round robin, least busy, and most productive. But none of those will fit your requirement. However, supposedly you should be able to create your own algorithm. I don't know how to do this, but there should be some place in the documentation that tells you how to do it.

  • Any way to limit the amount of songs..

    Hi,
    I have an iPod mini and a nano and I'd like to use them both on the same system. I know the mini holds more songs than my 2gb nano so I was wondering if there was a way to limit the amount of songs that I can put into iTunes so I can have an equal amount of songs on both iPods, up to the 500 limit of the nano or would I just have to create seperate playlists? Thanks.

    Making a few Smart playlists can help you solve the problem.
    You can limit the number of songs, MB, GB etc. by checking 'limit to'.
    Hope this helps.
    M

  • When I sync my iphone 4S using iTunes it only syncs 8.5GB of music, not the entore library as specified.  Is there a capcity default limit of the amount of storage that can be used for music and if so how do I change it?

    When I sync my iphone 4S using iTunes it only syncs 8.5GB of music, not the entore library as specified.  Is there a capcity default limit of the amount of storage that can be used for music and if so how do I change it?

    The only limit is that of the device. No restrictions on how much of it you can use for music. Is part of your music library unchecked?
    tt2

  • HT204264 How do I limit the amount of space used by photos on my phone - now that I turned iCloud on it is taking over my phone

    How do I limit the amount of space used by photos on my phone - now that I turned iCloud on it is taking over my phone

    Hello Maahk,
    Welcome to the Apple Support Communities!
    I understand that you would like to optimize your Photos storage. If you are using iCloud Photo Library on your iPhone, please read over the information in the attached article. 
    iCloud Photo Library FAQ - Apple Support
    Can I use iCloud Photo Library to save space on my device?
    iCloud Photo Library automatically keeps all your photos and videos in the original, high-resolution version. Follow these steps to choose how you store your photos and videos on your device:
    In iOS, tap Settings > iCloud > Photos or Settings > Photos & Camera, then select a storage setting.
    In OS X, click Photos > Preferences > iCloud, then select a storage setting. 
    If you turn on Optimize [device] Storage, iCloud Photo Library will automatically manage the size of your library on your device, so you can make the most of your device's storage and access more photos than ever. All of your original, full-resolution photos and videos are stored in iCloud while device-size versions are kept on your device. You can download the original photos and videos over Wi-Fi or cellular when you need them. 
    If you turn on Download Originals, iCloud Photo Library will keep your original, full-resolution photos and videos in iCloud and on your device. Download Originals is the default setting for iOS devices with the free 5 GB storage plan and for all Mac devices.
    Have a great day,
    Joe

  • Is there any limit on the amount of data that can be read using DB Adpater?

    We are trying to read large amount of data using "Select" of DB Adapter. I wanted to know if there is any limit to amount of records that can be returned in 1 message?
    We have tried for 30K so far and no issues - but any clues on the threshold?

    Hmmm...I dont think there is a restriction for reading data from tables.
    I have fetched more than 65k data and it ran successfully.
    Cheers,
    Abhi...

  • The amount of data that was returned by data connection has exceeded the maximum limit that was configured by server admin

    Hi There,
    When i try to view info-path form item getting warning (This issue is not with all items but for some of them...)
    "The amount of data that was returned by data connection has exceeded the maximum limit that was configured by server admin............."
    Thanks in advance!!
    Regards
    Vikas Mishra
    Vikas Mishra

    HI Vikas,
    to resolve this do this from central admin
    Ensure to follow the below steps.
                                             i.    Open
    the central administration
                                            ii.    Go
    to General Application Settings
                                           iii.    InfoPath
    Form Services
                                          iv.    Configure
    InfoPath Form Services
                                           v.    Click
    on Data Connection Response Size
                                          vi.    By
    default it is 1500 kilobytes
                                         vii.    Change
    the Response Size in kilobytes (Increase the number).
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • How to limit the amount of disk space Time Machine will use?

    On Yosemite, how do you limit the amount of disk space Time Machine will use?
    I'm using a Seagate Goflex Home 2tb drive connected to my router as a Time Machine backup drive.  I use this for three things 1)Time Machine 2) an occasional backup of  windows document subdirectory  3) backup of music and photos for long term storage.   Doing something like re-partioning the drive is not an option.  I'll just go buy another drive for time machine's sole use. In addition, using software from Seagate is not an option.  I don't want to use their software for different reasons (mainly the GoFlex home is really designed as a "media server"  which I don't use.  I, of course, use iTunes. ) On the Mac, I'm only using about 250GB total but time machine is rapidly using up space.
    Apparently using a terminal command like below, used to work,  but no longer works under Yosemite.
    For a limit of 100gb the number below would be 100 x 1024
    sudo defaults write /Library/Preferences/com.apple.TimeMachine MaxSize 102400
    To remove the limit, use the following command:
    sudo defaults delete /Library/Preferences/com.apple.TimeMachine MaxSize
    Now, I'm not too familiar with terminal and I'm not about ready to issue a command without knowing exactly what it is going to do.
    Is there an easier "switch" someplace or an app that does this?
    If I don't limit the size, at some point there will not be any space left for windows backups and additional photo and music files.

    Hmm- added "sudo" and there was no error reported:
    sudo defaults write /Library/Preferences/com.apple.TimeMachine MaxSize xxxxxx
    I guess we'll see.

  • How can I limit the amount of space on a Time Capsule used by Time Machine?

    I know that you cannot partition a Time Capsule drive.  However, I was wondering about other options for limiting the amount of space used by Time Machine so that I can use the rest of the space for other purposes.
    I heard something about creating a disk image on the Time Capsule to limit the amount of space used by Time Machine.  If I create a disk image, would TM just use all the space that's not part of the disk image?  How do I access the disk image part?  Can I manually drag and drop files to it from my Mac like any other external drive?  Could I set up the disk image part to work with a Windows computer?
    I've also heard things about modifying sparsebundles which I don't know anything about.  How does this work?  What happens to the space that is not part of the TM sparsebundle?  How do I access it?  Can I manually drag and drop files to it from my Mac like any other external drive?  Could I set up the extra space to work with a Windows computer?

    Some other things to make note of:
    Some disk image formats have a maximum size and only use that size after they have had to expand to actually hold that much data. Make sure you are not using this type of image so you can guarantee the space is reserved. Sparse bundles are like this. I haven't read up on the sparse bundle trick, but I assume it's something to do with setting a maximum size for it.
    When you open up the Time Capsule disk, you will first be looking at the normal storage space. When you create an image, there will be a file you click on that mounts another drive that uses space on the Time Capsule. This shows up as just one file unless you open it to see it's contents.

  • How do i limit the aount of emails that is shown on myi phone. on my i pad it has an option to show 100 emails,200 emails etc. but i dont see that option on my i phone

    how do i limit the amount of emails shown on my i phone. on my i pad there is an option to show last 100 emails, 200 emails ect. i dont see that option on my i phone.

    Protech,
    These phones aren't magic... you only have a finite amount of storage, so you should have considered the size of your mailbox before purchasing the lower capacity iPhone. Can't get mad at Apple or the design for that...
    Note, it is a bad practice to run a business from the iPhone, so why do you have a pressing need to search for information in old emails?
    You're treating it like a database and it's not designed for that. Email is for communication and information transmission.
    For context, would you keep every single paper letter and sticky note you've used/received for your business?
    And then search through those files all the time when you needed information about a client or part design?
    That is what you're doing in a virtual sense...
    Time for you to look into databases (contacts, notes, Filemaker, etc.) are ways to store and retrieve information without taking up tons of space (like email)
    Who is your email provider?
    Have you considered using their version of the mail app if they have one? (works like webmail but through their app instead)
    You should also consider the databases/archives below and moving the emails/content/information into it.
    Business Database: (has iphone app)
    http://www.filemaker.com/
    Mail archivers:
    http://www.mailsteward.com/
    http://www.mothsoftware.com/content/what-mail-archiver-x/

Maybe you are looking for

  • I just backed up my 5s on Icloud, reset my device and now I'm unable to restore

    After resetting, the phone starts and its give me an option to choose "Restore from iCloud Backup". When I select this, the phone asks me for my apple id and password. After providing this, I'm shown a list of last three icloud backups on my phone. W

  • Error - E 036 No goods receipt possible for purchase order

    Good Day, Am not able to do the Goods Receipt through BAPI : BAPI_GOODSMVT_CREATE.But am able to create GR through MIGO.Am getting the below error through BAPI: E 036 No goods receipt possible for purchase order  4500000563 0010. I gone throug the SD

  • Cancel goods issue in DBM Order

    Hello, Is it possible to storno (cancel) the goods issue for positions  in DBM order if the accounting period is already closed? I would like to storno the position in the current period,hovewer system doesn't allow to do this because takes automatic

  • Error in F-37

    Hi gurus, I am trying to post a customer down payment request in F-37. But it is showing me the following error Vendor 13131 is not defined in company code M110 Message no. F5104 Diagnosis No master record was created in company code "M110" for vendo

  • Getting Error when trying to connect to the Primavera database. PPM V7 SP3

    Hi Guys, Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mailService' defined in class path resource [com/primavera/bre//com/primavera/bre/integration/intgconf.xml]: Invalid destruction signature; ne