Changing Resource Order in Provisioned Resource Page

Hi,
Is is possible to change the order of the Resources which are getting displayed in Provisioned Resource Page.Let us say I have 2 resources A and B .I always wanted to A first and then B ,in the Provisioned resource page of that user.Any clue on how to achieve this?.Thanks in Advance.

I think Oracle has already provided this. Just click on Resource Name there it will sorted first A and then B.
If you want to sort in some other way then you'll have to write your custom code to do that.

Similar Messages

  • How to Change the order or location of pages within Chapters

    I am using the iBook Author very often. Right now I'm confronted with the problem, that I want to change the sequence of Pages WITHIN Chapters.
    Furthemore, and even a greater problem, when writing books, it can happen, that you have to change the sequence a bit.
    Let's say you have a book with 10 Chapters and decide afterwards, to take 2 Chapters to be part of new Section (which is in new Chapter).
    So the questions are:
    1) how can I re-order Pages within Chapters
    2) how can I re-order Pages into other Chapters
    3) how can I move Pages from one Chapter into a new Section
    ... hope someone has the solution

    >Furthemore, and even a greater problem, when writing books, it can happen, that you have to change the sequence a bit.
    I'd like to caution your that such non-liner editing can be a quick way to corrupt a book, so try to resist doing that as much as possible.
    So the questions are:
    1) how can I re-order Pages within Chapters
    2) how can I re-order Pages into other Chapters
    3) how can I move Pages from one Chapter into a new Section
    You can only copy/paste content from one page's content into another in those examples, either by replacing existing content, or by inserting a blank page in the new target location and then deleting the source page when done.

  • Approvals for changes to a provisioned resource

    I need to create an approval process for updating individual fields on the process form. The resource does not allow multiple accounts, so the option to update it doesn't seem possible. I know there is something I am missing here.
    What is the best way to create an approval workflow for changes to an existing provisioned resource?
    Any suggestions are greatly appreciated!
    KC

    Hi,
    OIM dosn't support approval based resource modification,this is one thing we are lacking in OIM but there are few way to over come this.Here is one solution that I can think of.
    1.Create a dummy resource for example "OID Resource Modification".
    2.Create the resource form which will have all field name which can be modified.
    3.Let this field value flow into process form of OID Resource Modification.
    4.Create your approval process for this resource.
    5.Now in the provisioning process of OID Resource Modification you can have task which will update the process form of orignal resource.
    6.You will be requesting this resource modification.
    Please let me know if you have any questions.
    Regards
    Nitesh

  • Massive change orders to Alterntive Resources in planned Orders

    Hi SAP Experts,
    We would like to change a lot of orders from one resource to an alternative resource in the DS planning board. We can only do this order by order but in such case we already know that for a set of orders we have the same alternative resource so I would be easier to just select a lot of resources to move from one resource to another resource.
    Thanks and BR
    Mauricio

    Hi,
    If you know the orders/operations, which are to be moved to alternative resource, you can select them using CTRL+click on those operations. Then by drag and drop, you can shift them to the alternative resource. While drag and drop also, you have to keep the CTRL key pressed.
    Hope this will help you.
    Regards,
    Manimaran M.

  • Provisioning resources in order in OIM 11g R2

    Hi folks,
    We want to assign resources in a particular order to users. Here is the order and steps we followed-
    [1] LDAP users
    [2] Custom Adapter to RDBMS
    We want to assign the RDBMS resource after LDAP resource is assigned. We are provisioning these via access policy. Access policy priority which assigns LDAP resource is highest and Access policy priority to assign RDBMS is lower. We also marked LDAP User as dependent in "Depends On" tab of RDBMS resource object, and in LDAP user resource object in Status definition we have checked Launch dependent checkbox against status "Provisioned" & "Enabled".
    However when access policies are evaluated, we do see that RDBMS resource is still in "waiting" status & LDAP user resource is "provisioned". The dependent resource provisioning is not being triggered. Please let me know if I am missing anything here........
    THANKS,  

    Hi,
    If this approach is not working ,other option is remove the dependency from resource object.In dependent resource object first unconditional task will be "check the status of parent resource object as provisioned",  if not then reject the task else proceed the workflow by setting the response a completed.else task timed retry scheduled task will complete the task.
    Demerit extra tasks of same name for  resource will be visible.
    We have observed similar issue in 9i where 2 level dependency was not working.
    Regards
    Shashank k

  • Provisioning Resource to User with childtables

    Hi,
    I have four child tables for a user resource. They are basically different type of groups for the user. While provisioning resource to the user could we have a logic to show childtable1 and child table2 if user selects an option 'a'; Show childtable3 and childtable4 when user selects option 'b' while doing Provision Resource from OIM?
    Please let me know how to achieve this.
    Thanks,
    Ravi

    Added to the previous requirement is there any way where I can configure order of display of childforms?
    I mean how can I have childform3 to display first, childform1 second and childform2 in the third place while provisioning resource to the user?
    Thanks,
    Ravi

  • Disable provisioned resource via API

    Hi All,
    could anyone of you post an example of request "Disable Provisioned Resource" by using the OIM API?
    Thank you,
    Giuseppe.

    there is no API for enable/disable but you have to call Enable User and Disable User task using OIM API
    Use below API for same
    use tcProvisioningOperationsIntf API.
    public void addProcessTaskInstance(long plTaskKey,long plOrcKey)
    plTaskKey - The key of the process task defined in process definition(nothing but MIL_KEY)
    plOrcKey - The key of the process order instance
    Use belo query to get MIL_KEY/plTaskKey before executing above method
    String sqlquery="select mil.mil_key from mil,pkg,tos,obj " +
    "where mil.mil_name = "Enable User" +
    "and obj.obj_name='<RO NAME>' " +
    "and obj.obj_key = pkg.obj_key " +
    "and tos.pkg_key = pkg.pkg_key " +
    "and mil.tos_key = tos.tos_key" ;
    use below for db connection in oim 11g
    Connection con=Platform.getOperationalDS().getConnection();
    Statement st=con.prepareStatement(query);
    ResultSet rs=st.executeQuery();
    while(rs.next())
    ong milkey=rs.getLong("mil_key");
    similarly you can get the ORC_KEY and call this method for running process task using code. Make sure 'manual insert' and 'Allow Multiple' property is enabled for this task. if not do it using design console

  • PasswordField at request "Modify Provisioned Resource"

    Hi, I'm using OIM 11g R1
    I have a resource with a field Password (masked=true on the request dataset and PasswordField on the form).
    When I do a request "Modify Provisioned Resource" without modify the field Password and modifiing just an other field, the request send the value "********" on the password field and this call the task "Passowd Updated".
    How I fix it?
    TKS

    This is the code of my ModifyValidation plugin:
                                for (RequestBeneficiaryEntityAttribute attribute :
                                     requestBeneficiaryEntityAttributes) {
                                    if (attribute.getName().equals("Login")) {
                                        String requestLogin = (String)attribute.getValue();
                                        validateLogin(requestLogin);
                                    } else if (attribute.getName().equals("Password")) {
                                        String requestPassword = (String)attribute.getValue(); // Here, if I don't change the Password field, I get the value "********" instead of the old value of the password field
                                        validatePassword(requestPassword);
    And if the request send the value "********" on the password field and this call the task "Passowd Updated" with this value...
    I put que attribute masked="false" at this field on request Dataset and when I open the request, the field value already is "*********" and the value of the password field was "12121212".
    Tks

  • Produce one planned order in more resources at same time

    Dear Experts,
    My client uses PP-PI and he has a requirement for a line that he has 4 resources to do the same operation. We are using a class 019 to plan the resources as alternative resources, but he also wants in some cases to produce the same process order in more than one resource at the same time.
    How can I produce the same process order in more resources and do not split the order?
    Thanks in antecipate
    Thiago Cyrillo

    In the case of some special case, you could add some operation to the process order , assign it to the different resource and link the phases of these operations as parallel. You should also enter the operation quantity, this is the way that splitting takes place.
    Regards

  • Error obtained while provisioning resource to the organisation

    Hi,
    I have created a workflow to connect to a target and provision resource.But when i am trying to provision resource to the organisation i am getting the below error.
    l
    Either you do not have the appropriate permissions to complete this action or a system error has occured.
    Please contact your administrator for further assistance.
    logs show that one entity adapter is throwing error as its reading a OBJ_key as 0 ..why is that so
    Please help.
    Its urgent.
    Thanks
    Sk

    You have an entity adapter where? Can you explain the whole process from beginning to end what happens when you submit the request?
    -Kevin

  • [CS5.5] issue with stacking order on spreads when pages change

    Have recently had a situation where items on a right hand page have "disappeared" behind an item placed over the reader's spread in a layout using facing pages.
    For example,
    this spread has 3 elements: an item of type per page, both brought to front; and a green background sent to back. all fine so far.
    i have then deleted the last two pages from the file... still going great guns...
    i then delete the first two pages from the file... then the preverbial hits the fan.
    the type on page two is gone! oh no!!! the reality is that the type is now BEHIND the green background.
    I am aware that had the green background been split in two at the spine, the result would be this:
    but it's too late now.
    has anyone else experienced this phenomenon and is it safe to call this a "bug"? anyone wanting to attempt the following steps can download a PDF containing the indesign file as an attachment within the pdf from this url: http://colecandoo.files.wordpress.com/2012/06/spreadfail.pdf
    colly

    Although the green block is, for practical purposes, on both pages, to InDesign, it's really only assigned to the left page of the spread. For example, if you start with this:
    …which has a green box in the background, spanning both pages of each spread, and yellow boxes on odd pages and magenta boxes on odds…
    …and you delete page one, you get this:
    …where the yellow and magenta boxes have switched sides, but notice that the green box that had been across both pages is now only on the odd pages. That's because the green boxes were actually assigned to the even pages, which have now shifted to become the odd pages, and the box stayed with it's page.
    Now, here's what happens when you delete page 2:
    Except for page one, which hasn't moved or changed, the screen shots from removing page one and page two look the same, because I only removed one page at a time. That caused the pages to switch sides.
    Now, here's what happens when you remove pages one and two at the same time:
    This is what you are getting. As best as I can guess, the reason that the green box is above the yellow boxes is because the left page of the spread is higher in stacking order than the page on the right. My guess is that the stacking order of the objects on each page is reaffirmed when pages are deleted. And in this case, I don't think it matters whether you delete them one at a time or two. Here is a screen shot of what it looks like when I delete page one, then delete page two right afterward (actually, since page two had become page one, I had to delete page one the second time to delete the original page two, but you know what I mean):
    This screenshot looks the same as the previous, even though this one had two pages deleted one at a time, and the previous one had two pages deleted together. I can't say whether this is a bug or not, but I assume that the engineers at Adobe didn't choose this behavior on purpose. It's probably a side-effect of some other choice that probably makes perfect sense.
    I think the answer is to either  place objects that span a spread on the master, or to use layers if the master option isn't practical for the job you are doing.

  • How do I change the order of pages in a multi page document

    I used to be able to change the order of separate pages in thumbnail view, but can no longer do this in the current Pages.  How do I do this?
    I am writing a book and need to be able to move pages around at will.

    See your other post.
    Peter

  • In Firefox 4, how do I change the order of plugins on the Add-ons Plugins manager page (I turn Shockwave Flash on only to see videos - having it off prevents screen freezing - and so I want it stay at the top of the list)?

    In Firefox 4, how do I change the order of plugins on the Add-ons Plugins manager page? I turn Shockwave Flash on only when I want to watch a video and then turn it off to prevent screen freezing, and so I want it to PUT it and KEEP it at the top of the list.

    Hit Ctrl+0 (That's a zero, by the way). I'm not sure if it will work, but hey, that's the first thing I would try.

  • Can I change the order or rotate pages in acrobat reader?

    This may be a silly question... I actually own & use Pro, so I don't use Reader. But my grandmother has the reader and wants to know if she can change the order of pages (and rotate pages) in acrobat reader. Or does she need to buy acrobat standard?
    Thanks!

    To the best of my knowledge, she can't with just the free Reader. But she can ask you to do it for her...

  • How to change the order of entries on the podcast or blog pages?

    Hi,
    I tried to move entries in the entry area on the podcast page to change the existing order but it seems they stay in the way they were created. Is there any opportunity to change the order of entries after they were created?
    Thank you,
    Vlad

    I'm having the same problem. How do I do this? I just
    hit delete entries. So the blog doesn't show up on
    iWeb, but it shows up on my website.
    This is NOT the same problem.
    Clear your browser cache.

Maybe you are looking for

  • Should I delete iPhoto now that I've updated the OS and have Photos?

    I opened Photos and it seemed to import a lot of photographs, but did it take everything from iPhoto?

  • Automated email using blobs in the database

    hi, I am wanting to have the facility for my db to send emails with attachments(with the file stored in the db) in an automated fashion. the things I have working at the moment. 1. I have got a DBMS_JOB working to handle the automated part. 2. I have

  • Error Correction While Importing CDs

    Just wondered if people generally keep this switched on or off while importing CD's into iTunes?

  • Adding option to smart album drop-down list

    I want to create a smart album of all 5-star images, but to exclude one project. So I create a new smart album, go to the gear, add "Other Metadata" and in the first list, select "Project." But there is no option in the second drop-down for "is not."

  • Multiple OBIEE installations on Linux

    Are there any issues or gotchas to installing multiple full OBIEE infrastructures (specifically, OAS 10.1.3.3.0 and OBIEE 10.1.3.4.0) on a RH Linux box? I want to have two separate stacks present, one acting as Dev and one as UAT on the same hardware