OIM - How To not show the "Disable" option for a Resource object to a group

Hello there,
Is there anyway we can remove or don't show the option to "Disable" a already provisioned resource object ?
I have a requirement over here wherein there is no reason available to show the "disable" option out of the 3 available - "enable", "disable" and "revoke" for an already provisioned RO.
How can we remove it ? We don't want users belonging to a specific group see that option, at all.
Is there any menu item associated with it ? or is there any other way we can configure it ?
Please advise to the earliest.
Thanks !!
P.S.: this is OIM 9102 running on solaris.
Edited by: 786001 on Oct 13, 2010 7:22 PM

Modify JSP:
And to do this just for a particular group, put your java code in JSP itself. This is the easiest approach.
Otherwise you can modify the action class to return two action forwards and then use two different JSP's.
Thanks
Sunny

Similar Messages

  • Why do I not get the checkout option for a pdf type document when clicking on the document link in the SharePoint workflow task?

    We are trying to use workflows to review and edit pdf files in sharepoint 2010. We are having a couple of issues and am hoping someone has the answer.....
    1)  When myself and coworkers click on the pdf document in the library, we get the check out option as expected.  However when we click on the document
    link in a workflow task (on the sharepoint site), the pdf opens as a temporary file and we do not get the check out option.  Why does this happen????? 
    2)  The same thing happens when we click on the document link in the workflow task email;   HOWEVER,  one of our co-workers does get the
    check out option when clicking on the link in the email task.  Why would she get the checkout option using the email and not when clicking on the link in the task list on the sharepoint site ????  We have compared our internet settings and adobe
    settings to ours and found no differences.
    We are using Sharepoint 2010, Windows 7, IE8, Adobe Reader X or XI.  Some of us have Adobe Pro X and have the same issues.

    Hi,
    According to your post, my understanding is that you could not get the checkout option for a pdf type document when clicking on the document link in the SharePoint workflow task.
    I try to reproduce the issue, however, no matter when I click the pdf type document in the library or click on the pdf document link in the workflow task email, it download the pdf doucment and then I can open it.
    It will be better if you can descript how you
    get the check out option as expected when you click on the pdf document in the library.
    Then I upload a
    word type document to the library, no matter when I click the word type document in the library or click on the word document link in the workflow task email, I can open the word document directly and get the check out option as expected.
    I recommend to use the other type docuemts to check whether the check out option works.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Why doesnt my iphone show the email option for photos?

    why doesnt my iphone show the email option for photos? i used to appear now when i select photos to share the option doesnt appear.

    Maybe you're not logged into Twitter.

  • How should i get the delta data for those new object's previous delta data?

    Hallo all,
    i have 2lis_11_vahdr and i am using a standard and loading delta! now i have appended some new fields in the datasource then in infosource then in ods and infocube..! now how should i get the delta data for those new object's previous delta data???
    Jimmy

    Hi,
    After appending new fields in the datasoure.It is not possible to delta load, u should have to load everything
    Thanks,
    Shreya

  • How to show the layout option for double-sided printing on Acrobat Pro X on Mac?

    Adobe Acrobat Pro X version 10.0.0 print dialog does not show the option to select Layout for two-sided (double-sided) printing. How to fix it?
    System: Mac OS X 10.6.6 on Mactel
    Thanks.

    David,
    Wow, it worked. Many thanks. This is what I did, following your directions to print PDF files as double-sided:
    01-Command P & Click "Printer button".
    02-Click Yes.
    03-Click the Popup Arrow to display contents.
    04-Select Two-sided "Long-Edge binding" or whatever needed and Click Print.
    05-Click OK to Print.
    What fooled me is that from Word (.doc) files the screen on step 3 and 4 show directly selecting a popup menu on the initial print window, whereas when printing PDF files it is required to go through steps 1-2-3 above.
    Again, many thanks. You made my day!!!

  • Reminders not showing the repeat option

    I am migrating from PC to Mac.
    And I am trying to set up a new reminder.
    There is an option to set a recurring reminder but, it appears dimmed.
    Can someone help?
    I have Maverick on a Macbook air

    hi,
    The repeat option will depends on the type of error that u got. IF u have some problem with the Trfc and the process turned to red. it means that the load is still running. Bcoz of that u may not find the repeat option. better wait for some times to finish the load successfully..
    Choose your process type and goto details(magnifying glass)
    Check the box "Repeatable"
    can u tell mr what error msgs u got in RSMO?
    u can see in this table RSPROCESSTYPES
    see my thread below
    Repeat Option in Process Chain..(Roll -Up Terminated)
    Shreya

  • View Layouts are not showing the various options

    When I select the View Layouts drop down I do not 'see' the various options.  They seem to be displayed as black on black.  The options are there they are just not visible.  Is anybody else seeing this or is there a work around?  See upper righthand corner of display.

    Download "Preference Manager" free from Digital Rebellion (dot com), and use it to properly, quickly, and safely delete your Motion 5 pref files.  Should clear that up, if simply re-launching Motion 5 doesn't do it.

  • Date difference is not showing the correct result for date interval

    Hi Expert,
                    I've created two formula variable one for PO date and another for GR date
    while i am taking the date difference of GR and PO date for single PO date selection
    it showing me correct result , but while i am taking the date interval for PO date it not
    showing the correct result.
    eg: PO date: 01.01.2010   for a particular PO and Gr date is suppose 03.01.2010, 06.01.2010
          it showing the result 2 and 5.
    But if i am taking date interval for PO date:
    eg: 01.01.2010 - 31.01.2010
    PO date: 10.01.2010 and GR date are suppose 15.01.2010, 22.01.2010 and 30.01.2010
    it showing me 14, 21 and 29
    Thanks and Regards
    Lalit Kumar

    Hi Expert,
                    Through replacement path.
    Thanks and Regards
    Lalit Kumar

  • Tkprof not showing the Execution Plan for Statement

    Hi all
    using oracle 9i release 2
    I have issued the following statements
    alter session set sql_trace
    alter session set events '10046 trace name context forever, level 12';
    --then executed a pl-sql procedure
    after reading the traceout outfile it shows the Execution plan for statements directly wirtten under begin and end block and doesnot displays the plan for the statements written like this
    procedure a is
    cursor b is
    select ename,dname from dept a,emp b
    where a.deptno=b.deptno;
    begin
    for x in a loop --plan not found but stats are written
    select ename into v_ename from emp where empno=300; --does show the plan+stats
    end;
    what I am missing to get the actual plan in trace output file
    thanks in advance

    You have to exit sql*plus after running the procedure, example tkprof is below:
    declare
    cursor c is
    select ename, dname
    from emp, dept
    where emp.deptno = dept.deptno;
    begin
    for v_x in c
    loop
    dbms_output.put_line(v_x.ename || ' ' ||v_x.dname);
    end loop;
    end;
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.06 0 0 0 1
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 0.00 0.06 0 0 0 1
    Misses in library cache during parse: 0
    Optimizer goal: CHOOSE
    Parsing user id: 68
    Elapsed times include waiting on following events:
    Event waited on Times Max. Wait Total Waited
    ---------------------------------------- Waited ---------- ------------
    SQL*Net message to client 1 0.00 0.00
    SQL*Net message from client 1 0.00 0.00
    SELECT ENAME, DNAME
    FROM
    EMP, DEPT WHERE EMP.DEPTNO = DEPT.DEPTNO
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 15 0.01 0.00 0 44 0 14
    total 17 0.01 0.00 0 44 0 14
    Misses in library cache during parse: 0
    Optimizer goal: CHOOSE
    Parsing user id: 68 (recursive depth: 1)
    Rows Row Source Operation
    14 NESTED LOOPS
    14 TABLE ACCESS FULL EMP
    14 TABLE ACCESS BY INDEX ROWID DEPT
    14 INDEX UNIQUE SCAN DEPT_PK (object id 40350)
    Best Regards
    Krystian Zieja / mob

  • Ringtones not showing up as options for all functions?

    I made four ringtones for my new iPhone 5 that I purchased on Saturday. They all show up as options for my calls ringtone, but for the others (texting, voicemail, etc) only one of the four that I made is show as an option. What can I do to fix this?

    I have had the same problem as well. I have been trying since last night to make/purchase ringtones, but when I click "Buy" nothing happens. Anyone find some way to fix this?

  • I have an imac and I set up additional user accounts.  When I start up or restart the computer it only shows me the option of logging on as the system administrator and it does not show the other accounts for my wife and kids.

    When I start up my additional user accounts do not show so I can log onto them.   The same thing happens when I log out as the system admin.  How do I get to the additional accounts that I have set up on my imac so I can log in under them.   Thanks

    There is zero advantage to partitioning a HD for the purpose you have described. I recommend that you take your machine to an AASP, describe the problem and they will help you get it back working. Partitioning a HD is a 1990's approach and is of no value what-so-ever unless you installing multiple operating systems on the HD. In that case it would be valuable.
    Good luck.

  • I do not want the autorenewal option for iCloud-I want to renew at my direction.  How do I achieve this?

    I do not want the auto renewal option for my additional iCloud storage subscription.  How do I achieve this?

    iCloud- Storage upgrades and downgrades
    iTunes Store- Purchasing and managing auto-renewing subscriptions

  • Open in iBooks does not show up in options for a PDF

    I am trying to get a PDF into iBooks on my ipad without syncing to iTunes. I read that when a PDF is opened in email or Safari an "Open in iBooks" option shows up. Under Open in.... I have about 6 options for different Apps but iBooks is not one of them. I do I get iBooks to show up in Open In.........?

    It might depend on whether the PDF has got some of digital rights management on it that is not supported by iBooks. I think the limit for the number of apps that appears in the 'open in' menu is 10 apps, so if you've only got 6, and iBooks is installed on your iPad, then it not appearing in the list kind of implies to me that it's not supported. Have you tried resetting your iPad to see if that 'clears' the problem : press and hold both the sleep and home buttons for about 10 seconds after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How can I set the window options for command-N?

    Hi,
    I have let the Mac OS-X software update run (Java and a few other things), and now when I want a finder window by clicking on the smiling blue face or with command-N, I get a stripped window with only the volumes but no tool bar nor the folders short cuts. How can I restore the full window by default? I can still get the whole window set from the menu bar or with a 3 keys command, but I don't remember where I can set that to be the default window... thanks!

    Oh Sorry, I have found it "show tool bar" in the Presentation menu!

  • Asset report S_ALR_87011963 is not showing the asset values for perion 08

    Hi,
         The internal order number is 400011.The amount 38,300 were booked on this order. I have settled  38,050 into 7 assets hence the balance is 250 in this internal order (Work in progress 100050).
    When i check the Asset expolorer, there it is showing me this remaining value. But when i run any asset report, say Transaction code - S_ALR_87011963(Asset balances) with report date as 30/05/2008 for period 8, the asset 100050 is showing as NIL Value. But if i run it with date as 30/09/2008 for period 12, then it is showing the balance amount.Our fiscal year is frorm Oct- Sep.
    I don't understand why this difference is coming. It should show the balance 250 at the end of period 8.
    The last input on this internal order was in March 08 when I transfered most of the costs to the assets.So no reason to have a difference depending on the date of the report.
    The internal order 400011 is having status as Released at present.
    Can anyboday help me on this. Points will awarded.
    Earliest reply will be highly appreciated.
    Regards,
    Shree.j

    Hi Rau,
    Could you please me How to Upload the GL or Open Item Balances on Month to Month Basis? for this we still use FB01 for Initial Upload?
    My Client is giving the balance for last year Monthly with daily Transactions with past Posting dates obviously,do I need to Upload with same Posting dates or with Current Posting date?
    For reporting Purpose My Client would like to see Monthly Balances of Open items for Initial Upload,"is this same as Month to Month Upload you advised above"?
    What is the Difference b/w Month to Month ORr Just one Amount as total balance uploaded to SAP? which is Best Practice before Initial Upload?
    Thank you ,
    Paarthaa...

Maybe you are looking for