Manager wants to assign his duties to someone else in CWB

we have a big issue here .
In our organization some managers wants to assign his/her duties to other managers lets say acting managers .Because managers may be travelling so the acting managers should be able to allocate compensation for the managers .the acting manager should not need to be the direct reports of managers .So for example if a manager is travelling someone in HR should be able to allocate compensation to manager's direct employees and his/her direct employees.
i thought that 'Reassign An Employee' function would work but it isnt seem to be working .
Any help in this regard will be highly appreciated.
Thanks in advance

Hi Ravi
1. There is nothing like a manager configured separately in weblogic console. Its like this. Even Manager is also a User, just another user. The link is like this. Each User will have standard properties like firstName, lastName, Department, dateOfBirth, phoneNumber, Email etc etc. They also have a attribute like manager and the value of this is just reference to another user. I hope you got the point.
2. So, in Weblogic console, say you create 2 users: weblogic1, weblogic2, weblogic3. And you can assign some basic properties for each one of them like firstName, lastName etc. For weblogic1, assign manager as weblogic2. For weblogic2 assign manager as weblogic3 etc.
3. Now behind the screens in Workflow, SOA, when you run user.getManager() and if user is weblogic2, the value will come automatically as weblogic2. And it goes on. You do not have to do any programming for this. The workflow will use LDAP APIs to get the value for each standard property if they are named using standards like firstName=givenName, lastName=sn, emailId=mail etc etc. These are all standard AD object properties for Users, Groups. By the way, most of these applies to Groups also in addition to Users.
Now, the real trick is, when you create users in weblogic, you can specify firstname, lastname, mail etc. But to specify manager, for now, use this workaround given in below post. Before you run any samples or explore SOA/BPM, first create some testuser accounts in default weblogic embedded ldap using demo community seed app (servlet). You can open this EAR, and then WAR and extract .xml file and edit to add any stuff you want.
The below link should give you more idea:
Re: Realm is not populated for BPM app (See my reply)
Re: Seed Demo Community Failes
Thanks
Ravi Jegga

Similar Messages

  • How do i transfer information from one iPad to another as I recently bought a new one and want to give the original to someone else.

    I bought an iPad 2 in May without 3G and recently decided I wanted that feature so bought a new one with 3G.  I want to give the original to someone else, but need to know how to transfer my data and apps to the new one and "wipe" the other so it doesn't include any personalized information.  How do i do that? 

    The sync should backup the iPad as Fred said but take no chances.
    Connect your iPad and let it sync. Then right click on the iPad name on the left side of iTunes under devices and select Transfer Purchases. After that completes, right click on the iPad name again and select Backup. After that completes sync one last time and disconnect the iPad.
    When the new iPad arrives, before you connect the iPad - launch iTunes and turn off auto sync. From the menu at the top go to File>Preferences>Devices> and check "Prevent iPods, iPhones and iPads from syncing automatically. Quit iTunes.
    Now connect the iPad and launch iTunes and activate the device. Then after setting up the iPad - right click on the iPad name on the left side - select Restore - restore from Backup -the backup of your old iPad. When it finishes - go into each tab in iTunes and make sure that you have everything that you want to put on the iPad selected to sync - by putting a checkmark in all of the headings - Sync Apps, Sync Music, Sync Photos, etc. Then select all of the content that you want in each of those tabs and then sync by selecting Apply in the lower right corner of iTunes.
    If you have the opportunity to restore from the backup when going through the activation process- restore then and there. I can't remember if iTunes will ask if you want to restore from the backup but if so - go ahead and do it.

  • How can I delete my iTunes account on my macbook pro.  I want to give my computer to someone else

    Hi I have just bought a new mac book and have migrated everything accross.  I want to delete my itunes account so my husband can put his itunes on the computer.  I have deauthorised the computer but my music etc is still say there.  Any ideas?
    BW
    Sarah

    Deauthorising doesn't delete music that already exists on your computer. You'll have to do that manually - assuming you really want to. Deauthorizing means, among other things, 1) any music with DRM, movies, or TV shows on your computer will not play until you reauthorize. Music without DRM will still play. 2) if you have an iPod, iPad, or iPhone you won't be able to sync your applications without first reauthorizing the computer. 3) you won't be able to purchase anything from the iTunes store until the computer has been authorized (with someone's account).

  • Assigning an instance to someone else

    Hi All
    Assume there are two roles "Employee" and "Manager" and four participants say E1, E2, E3 and M1
    E1,E2,E3 have Employee role
    M1 has Manager role
    Suppose there are two instances I1 and I2 assigned to E1.
    Now E1 goes on leave or leaves the company. M1 decides to take those instances from E1's queue and assign them to E2 or E3.
    How can we achieve this?
    Thanks
    Satinder

    Hi Satinder,
    You're right. My answer was underwhelming (using the Process Administration tool).
    Here's an approach to reassigning a batch of instances from one participant. You'll often run into problems reassigning instances because either the Interactive activity where the instance is located does not have its "Assignable" property checked or the supervisor does not have the role assigned. This logic overcomes both of these shortcomings.
    1) place this logic inside a Global Interactive activity in a role. This role should only be assigned to people who you want to be able to reassign instances from one participant to another.
    2) Add a new participant "AUTOCLIENT" and assign it to the new role
    3) Add a new Grab activity called "GrabAutomatic" (see the logic below) and define its property as "From all / To all". If you have a method for the Grab, you won't need the "on ie as Exception" catch block.
    4) the "input" statement is just so you can see an example working from this logic. Replace this with your own UI.
    Although this reassigns ALL of the instances assigned to a specific participant, you could use the search filter to return a list of instances and then let the supervisor pick which ones should be reassigned.
    fromPart as String
    toPart as String
    bp as BusinessProcess
    input "Name of the person to reassign from: " : fromPart,
          "Name of the person to reassign to: " : toPart
        using title = "title",
              buttons = ["Ok", "Cancel"]
        returning selectedButton = selection
    do     
        instF as InstanceFilter = InstanceFilter()
        instances as Fuego.Papi.Instance[]
        instanceDescription as String
        connectTo bp
            using url = Fuego.Server.directoryURL,
                  user = "AUTOCLIENT",
                  password = "P",
                  process = "/" + processName
        logMessage "next is prc id"
        create(instF, processService : bp.processService)
         instF.searchScope = SearchScope(participantScope : ParticipantScope.ALL,
              statusScope : StatusScope.ONLY_INPROCESS)
        addAttributeTo(instF, variable : VarDefinition.PARTICIPANT_ID, comparator : IS, value : fromPart)
        instances = getInstancesByFilter(bp, filter : instF)
        logMessage "instances" using severity = DEBUG
        for each inst in instances do
           logMessage "Found it: " + inst.id
           do
           logMessage "Select: " + inst.selected
           if inst.selected then
              logMessage "instance selected"
                  unSelect inst
           end
           logMessage "instance selected"
           reasign(inst, participant : toPart)
           logMessage "assigned it to " + toPart
           // Throws exception if activity was not assignable
           on e as Exception
              logMessage "Exception: ->" + e.message
              description as String = String(getVar(inst, var : "PREDEFINE_DESCRIPTION"))
              logMessage "Trying grab for " + description
              // determine where activity was before it was grabbed
              backToActivity as String
              backToActivity = inst.activityId
              do
                    grab inst
                         using grabActivity = "GrabAutomatic"
                    logMessage "Grabbed Instance Status: " + inst.grabbed
                        using severity = DEBUG
                     do
                        runTask inst using activity = "GrabAutomatic"
                     on ie as Exception
                        // exception that occurs if there is no logic inside Grab
                     end
                     logMessage "Ran Grab " + inst.grabbed
                        using severity = DEBUG
                       route inst
                          using activity = backToActivity
                     logMessage "Routed back"
                         using severity = DEBUG
                      reasign(inst, participant : toPart)
                      logMessage "reassigned it to " + toPart
               on e1 as Exception
                  logMessage "Exception w/i exception: " + e.message
                  errors as String
                  errors = errors + "Instance: " + description + " could not be reassigned\n\n"
                  logMessage "Errors: " + errors    
               end
           end
        end
    on exit
        disconnectFrom bp
    endHope this helps,
    Dan

  • App Store wants me to sign in as someone else?

         I'm using a pre-owned computer, but with no identity problems until now: I restarted my computer and when I opened App Store later and tried to update a couple apps, it required me to sign in with the Apple ID of the previous owner. Strangely, I've gone to Store:Sign In/Sign Out several times with my own ID, and up there it says I'm signed in, but when I press "Update" next to the app that needs updating, it still asks me for the Apple ID that's not mine. (Btw, in that pop-up window, the Apple ID box with [email protected] in it, is greyed out so I can't change it; otherwise I would change it to my own.) I'm having no troubles with my ID on iTunes, so I don't know what the deal is.
    Why I restarted my computer in the first place: I downloaded the OS X Mavericks update and it restarted my computer. ...When I was logging back in, it asked me to sign in with my Apple ID, and I did. No problems there...
    Please help.

    The original owner was supposed to erase the hard drive and restore the version of OS X that shipped on the Mac. That Mac is associated with the original owner's Apple ID. All apps that were bought by the original owner are now pirated software on your part as the original owner cannot legally share them with you.
    The original owner needs to call Apple Care and have the Mac disassociated from their Apple ID.
    You need to use OS X Recovery to erase the Mac, reinstall OS X Mavericks and the iLife apps.
    Then you need to set it up as a new Mac, open the Mac App Store and accept the iLife apps into your account and then reinstall all of your own iTunes and Mac App Store content.
    OS X Recovery -
    http://support.apple.com/kb/HT4718

  • How do I resize a photo to attach it to someone else's web site

    I want to add photo attachments to someone else's web site. my files are raw, off the camera i.e. big.  I can easily resize if I email. but why can't find an easy way to downsize in iPhoto?  what should I do?

    The image you're viewing in iPhoto are jpeg versions of the RAW files.  So all you need to do is drag it to the desktop and you will get a jpeg file of around 2-3 MBs depending on the RAW file size.
    Or you can export as leonieDF has suggested while setting the compression level (Quality) and maximum pixel dimension to get the image and file size you need.
    OT

  • My friend itune account has been hack by someone . so he don't have password or security questions answers.So he want to delete his itune account because he can't signout his icloud account on his iphone.somebody help us!!

    My friend itune account has been hacked by someone.And he change every things like password,security questions and recovery mail.So my friend don't have password or security questions answers.And he want to delete his itune account because he can't signout his icloud account on his iphone.Please tell me how to turn off find my iphone without password.
    somebody help us!!
    sorry for my some mistake in descussion because i am bad in english.

    Welcome to the Apple community moonlight94.
    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact AppleCare (or Apple ID Support), upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

  • How do I replace someone else's Mac ID with my own? Bought iPhone second hand. Previous owner re-set the phone but his ICloud account stayed on now my phone. He uses his macID on his new iPhone now?? Any ideas, as this issue is blocking my access to iTune

    How do I replace someone else's Mac ID with my own?
    Bought iPhone second hand on TradeMe.
    Previous owner re-set the phone but his ICloud account stayed on now my phone. He uses his AppleID on his new iPhone now and, understandably, does not want to give me his password. Any ideas?? Please.
    This issue is blocking my access to iTunes and any other file from my home computer. It keeps on telling me that I have to autorise my computer to pass on files, yet, it seems, for all this to happen, I need to get logged in through the phone's Apple ID. This of course is different to my one on my computer - and I have no password for it.
    This phone is not stolen!! I payed still a fair bit for it. Am still in contact with the previous owner. He doesn't know how to fix the problem either.
    Would appreciate any suggestion ????
    Thanks
    SamSings

    Settings>general>resets>erase all content and settings.
    That will put it back to its out of the box state. Set it up with your own apple Id.

  • I have an iPhone sync'd to my iTunes. My boyfriend has his own iPhone with his iTunes account set up within it. We want to sync his iPhone to my iTunes account on the PC but we wnt to retain everything from both phones and the iTunes account. Help?!?!

    I have an iPhone sync'd to my iTunes. My boyfriend has his own iPhone with his iTunes account set up within it. We want to sync his iPhone to my iTunes account on the PC but we want to retain everything from both phones and the iTunes account. Is this possible? Help!

    zoe1713 wrote:
    Is this possible?
    No. If you connect his phone to your iTunes account/computer, ALL iTunes content on his phone will be erased. By design, iPhone syncs or manually manages iTunes content with ONE computer at a time.

  • HT4436 If someone else has set up an ICloud account (that uses his name in the email address) using my Apple ID, do I have to change my Apple ID to open an account with my name in the email address?

    If someone else has set up an ICloud account using my email address and Apple ID but has chosen his name for the mail name, can I get rid of his name in the [email protected] and put mine in there?  Or do I have to set up a whole new acount with a new Apple ID?  Will I be able to do that with his name already linked to my email address?

    How did he manage to do this? - he would have to have known your password if he was using an existing Apple ID. You should change it immediately to something strong and unguessable. That will prevent him accessing the account or using the email he has set up (assuming he hasn't changed the password and locked you out).
    You can't change the primary @icloud.com address once set up, though you can create additional addresses as email aliases: if he's given this address out you will get his emails but you could set up a Rule to trash them.
    You might to better to create a new ID and iCloud account anyway. To do this you wil need a different non-Apple email address (you could use a free GMail one); or you have the option in the iCloud prefs pane to choose an @icloud.com address and make that the ID.

  • HT1338 evr since i put a child lock on my Mac its never been the same .. now i cant even open my yahoo mail without it wanting me to reinstall this can someone please help me work this out

    ever since i put a child lock on my Mac its never been the same .. now i cant even open my yahoo mail without it wanting me to reinstall this, can someone please help me work this out

    What "child lock" are you talking about?
    Do you mean you set up a Managed account (Parental Controls), or some other software?
    For Parental Controls, select the account in Users & Groups and uncheck the "Enable parental controls" checkbox.

  • I think Barry Hemphill said he could SELECTIVELY delete SEVERAL iPad browser history entries at once. I can,t find his email. Someone plz tell me how or fwd this to Barry. Thnx

    I think Barry Hemphill said he could SELECTIVELY delete SEVERAL iPad browser history entries at once. I can,t find his email. Someone plz tell me how or fwd this to Barry. Thnx

    Hello milkisoo,
    Wow! Purchasing a new computer and monitor should be a fun and exciting experience, and instead, it sounds like it’s turned into a complete nightmare. I can only imagine your disappointment when you found two charges relating to its purchase on your debit card account, and I’m sorry for any aggravation this caused. 
    As I want to provide you some piece of mind, I pulled up your order number using your email address attached to the forum. After review of its payment information, I found we collected only one payment.  However, when orders are first placed on BestBuy.com, a pending authorization should show up on your bank card to make sure funds are available for the order until it is fulfilled. From there, the authorization should drop off and the collection charge should appear.  This is the case for your one charge of $1,051.69.
    It also sounds like an error may have occurred when you initially attempted to place your order,  resulting in one of your gift cards not registering properly and the order not being completed.  Your card’s issuing bank doesn’t appear to have recognized this and pushed through the pending authorization. This occurred a second time when your account information didn’t quite match up with what we had on file. Please know that we haven’t ordered a collection of these funds and your issuing bank should release the two pending authorizations within 5 to 7 business days.
    Thank you for posting.
    Alex|Social Media Specialist | Best Buy® Corporate
     Private Message

  • How to manage IP address assignment for laptops?

    Dear All,
    I'm looking for an efficient way to manage IP address assignment for laptops.
    I have a DHCP server with reservation for all my devices.
    Laptops usually have 2 NICs: LAN and WiFi card.
    So, how can I manage the IP assignment for these devices?
    If I make a DHCP reservetion with two different IP addresses, I can have problems with DNS round-robin.
    Should I enable the DNS secure dynamic update for domain members and then reserve two different IP addresses on DHCP?
    I don't want that user needs to manually change their NIC configuration.
    What you suggest?
    Thanks

    The best way to manage it would be to "not" manage it.  DHCP by definition is supposed to be "dynamic".  DHCP Reservations are great for a few devices that live under "special circumstances" but you never want to set Reservations for everything,...if
    you do that then just don't have DHCP to start with and statically assign everything.
    The combination of DHCP with dynamically updated DNS in AD means you never have to know or ever care what the IP# is.  Everything is referred to by it's hostname.
    Some things to keep in mind:
    Every interfaces has a different MAC,...meaning the Laptops have two MACs. Therefore it is impossible to reserve the same IP# for both. So they end up with a different IP# depending on which Nic they use.  Running two laptop nics on the same LAN at
    the same time is always bad.  Either always use the wireless,...or always turn off the wireless nic when laptops are local within your facility and can use the physical nic.   In other words pick one,...or the other,...never allow both to work
    at the same time.  This is a responsibility and education issue of the user,...you can't do this for them.
    User can not change their own network IP Specs unless they are Local Administrators on their machines,...and they should never be allowed to be Local Administrators.

  • With my hp office 5010 all in one printer, i'm not able to scan, and this is one of his duties. why

    with my hp office 5010 all in one printer, i'm not able to scan, and this is one of his duties. why isn't it possible?? Bad ssoftware while downloading it from internet because I lost CD rom. No pilot available for scanning with it??? Bad version of soft??? I bauught this printer because of his utility and space occupped: able to print, copy and scan in  same machine, gain of room, perfect, but my scanning function is not working!!!! I would like to solve this damned problem which upset me since several weeks.... Waiting for an answer and a solution,  best regards

    pmonteil31 wrote:
    Waiting for an answer and a solution,  best regards
    Hi,
    Sorry you have to wait longer because I can not find your printer model under Google. Must be very old ?
    Regards,
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I just got my apple ID on my computer, but it had someone else's ID before, it wont let me download songs I've already purchased. Even if i wanted to it wouldnt let me purchase those idems again.. what do I do?

    I just got my apple ID on my computer, but it had someone else's ID before, it wont let me download songs I've already purchased. Even if i wanted to it wouldnt let me purchase those idems again.. what do I do?

    Delete and redownload the ones that don't work if doing so is free in your country.
    (100619)

Maybe you are looking for