Exchange provisioning for select users

Scenario:
Users in Set 123 need AD accounts only
Users in Set B need Ex mbxs (& AD accounts obviously)
Users can move from Set 123 to Set B, or go directly into Set B
We cannot simply create a 'base' AD sync rule, and then a dependent Ex sync rule with homemdb,mail,msexchhomeserver &mailnickname - we cannot use 'initial flow only' in a dependent sync rule.  We don't want FIM to continue to set the msexchhomeserver
and other attributes - we want to transfer authority to Exchange to manage those attributes.
If we create two separate sync rules, not dependent, we can't control which tries to execute first.  If we have the ex sync rule with
just homemdb,mail,msexchhomeserver &mailnickname attributes set for initialflowonly, it will fail if it tries to run before the sync rule that creates the AD account.
Separately, does initial flow only run when the user is added to the scope of the sync rule for the first time, or when the object is actually provisioned in AD?  In other words, if a user object exists in AD and FIM is aware of this, will FIM flow
out attributes in a sync rule set for initial flow only?
Ben Pahl

We solved this by:
Flowing in AD Base sync rule inbound mail, msexchhomeservername,homemdb,msexchrbacpolicylink,msexchmailboguid, mdbusedefaults & mailnickname
Creating equal precedence for all of those attributes with FIM Service *being careful to never run a full import/sync from FIM Service and then immediately exporting to AD, without doing a full import/sync from AD first* 
Creating a set that says: *you are supposed to get an exch mbx based on job codes X-XX, *you don't have a value in your msexchmailboxguid currently, *your hrstatus is active
Creating transition in MPR to the above set that fires workflows.  some workflows stamp static values (homemdb value, msexchhomeservername, etc) to the user object in FIM service.  some generate unique values for things like mail and mailnickname,
and stamp them on the user object in fim service
The MPR above also adds the user to the scope of a dependent sync rule that does not use initialflowonly for the referenced ex values above.  they flow out from fim service to metaverse, then the ex extension provisions the mbx.  when the user
transitions out of the set above (they now HAVE a mbx, so they move out) they are removed from the scope of the exchange sync rule.
Ben Pahl

Similar Messages

  • Need to give REVOKE CLOSE option in CO02 only for selective users

    Hello,
    Need to Restrict Revoke Close Option in Tcode CO02 (Under Functions - Restrict Processing - Revoke Close) through Role/Object Level.  Can any one suggest how to control this .    Need to give access for CO02 for 5 Users , but only 2 Users can able to do Revoke Close Option , other 3 Users should not able to do this activity.
    BR,
    Murali

    There is no authorization object as B_USERSTAT_T , but there is a authorization object as B_USERSTAT . I tried to create a Temporary Role and manually assigned this Object .  In this object there is no way to control REVOKE Close option . 
    But there is one way noted in Google to restrict Revoke Close option .
    1.Goto BS22
    2.Select the system status TEC0 (I0045) & just duble click it,
    3.Maintain the Revoke technical completion (BUTA) =Forbidd (not allowed),
    But if i set the above Parameter ,  this will restrict Revoke Option for all the users .  I need to control ONLY for selective users .  I can set some value in user data for those users  , based on that i can write some coding to restrict , but i want to know where to write this code ....  I tried in some area , but it never works.
    Can any one give some idea to fix this issue.
    BR,
    Murali

  • Do I can create a page who is locked just for selected user?

    Do I can create a page who is locked just for selected user?

    The manner how you put files on the server is unimportant.
    It's the Webserver (usually Apache) itself that does the protecting.
    So either use the control panel where you host your website, or use the method explained on the page I linked to.
    Should look like this (on the left) :
    Your visitor will see this :
    http://home.wyodor.net/protect/
    Use : root/root
    Inside it looks like this :

  • How to add folder from KM content to Portal Favorites for selected users

    Hi all,
    I have cretaed  a folder in KM content (In documents) for uploading implementation related ddocuments.
    how to add this folder in "Portal Favorites" of selected users only.
    Please guide.
    Thanks in advance.

    Hi,
    well one way could be the following.
    Go into KM-Content --> Repository "userhome" --> select the user you want --> navigate into his folder Favorites --> create a new internal link in this folder to the folder you want
    In the favorites of the user there is now a link to the desired folder and after clicking a new window will be opened. You can copy this internal link to the favorites folder of the other users you want.
    Regards
    Alex
    Edited by: Alexander Götz on Apr 16, 2009 5:12 PM

  • Disabling external sharing in OneDrive for Business for selected users

    Hello,
    I have a requirement to disable external sharing option in OneDrive for Business for a few user and allow external sharing for a selected users. Is this possible?
    What I know is, we can enable or disable external sharing for all the users who use OneDrive for business by configuring Sharing option for My site collection at "xxx-my.sharepoint.com". But I want to know is if it is possible to handle this at
    user level by doing changes to "xxx-my.sharepoint.com/personal/user_domain.com" site collection.
    Thanks,
    Lakshmi

    Thanks Vasil for your reply. Yes, as you mentioned, removing edit option or admin access is not the right solution for my requirement. I just want to know why My site collection is tightly coupled with personal site collections. Many users will use OneDrive
    to store data and share it with others internally and externally. So, as a security measure there should be some option to enable this only for a specific users. Hoping someone will give me idea to achieve this.

  • Mass password change for selective User id's ?

    Hi,
        Thanks to answer for my last question, really appreciated your help.
    My new question: 
    1.   If I create Mass User Id's by using SU10, pwd's are generated automatically. Is there a way to pick a pwd e.g  initpass for all ?
    2.   Is there any program available which can be used to reset pwd's for several User Id's as   initpass or something like that ?
    Please help. thnx in advance.
    Syd.

    You can also create an ABAP program which can be used to mass change users passwords.
    Here are the functions that will do what you need
    SUSR_GENERATE_PASSWORD - Generates a Password
    BAPI_USER_CHANGE - You can use this BAPI to change just the password of a user
    Here is an example of some abap code. There may be some syntax errors and possible other issues. I just typed this out and didnt check it. Hope this helps
    constants: con_comma TYPE c VALUE ','.
    data: it_tab TYPE filetable,
            gd_subrc TYPE i,
            v_filename_string TYPE string,
            p_npass like XU400-NEWCODE.
    DATA: BEGIN OF itab OCCURS 0,
              dLine(40) type c,
          END OF itab.
    DATA: begin of it_Users occurs 0,
              UserID like BAPIBNAME-BAPIBNAME,
              Password Like XUBCODE,
          end of it_Users.
    parameters: p_file like rlgrap-filename default 'c:\users.txt' LOWER CASE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    *&                   FILE_OPEN_DIALOG METHOD                           *
        CALL METHOD cl_gui_frontend_services=>file_open_dialog
            EXPORTING
              window_title     = 'Select File'
              default_filename = '*.txt'
              multiselection   = ' '
            CHANGING
              file_table       = it_tab
              rc               = gd_subrc.
            LOOP AT it_tab INTO p_file.
            ENDLOOP.
            v_filename_string = p_file.
    START-OF-SELECTION.
    *&                   GUI_UPLOAD function                               *
       Upload file to internal table
          CALL FUNCTION 'GUI_UPLOAD'
            EXPORTING
              FILENAME                      = v_filename_string
              FILETYPE                      = 'ASC'
              HAS_FIELD_SEPARATOR           = 'X'
            TABLES
              DATA_TAB                      = ITAB
           EXCEPTIONS
             FILE_OPEN_ERROR               = 1
             FILE_READ_ERROR               = 2
             NO_BATCH                      = 3
             GUI_REFUSE_FILETRANSFER       = 4
             INVALID_TYPE                  = 5
             NO_AUTHORITY                  = 6
             UNKNOWN_ERROR                 = 7
             BAD_DATA_FORMAT               = 8
             HEADER_NOT_ALLOWED            = 9
             SEPARATOR_NOT_ALLOWED         = 10
             HEADER_TOO_LONG               = 11
             UNKNOWN_DP_ERROR              = 12
             ACCESS_DENIED                 = 13
             DP_OUT_OF_MEMORY              = 14
             DISK_FULL                     = 15
             DP_TIMEOUT                    = 16
             OTHERS                        = 17.
          IF SY-SUBRC <> 0.
           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    Loop through internal table and split the comma delimited file
      LOOP AT ITAB.
          SPLIT ITAB-dLINE AT con_comma INTO it_Users-UserID
                                           it_Users-Password.
          APPEND it_Users.
      ENDLOOP.
    LOOP AT it_Users.
         if it_users-Password is initial.
            CALL FUNCTION 'SUSR_GENERATE_PASSWORD'
                 IMPORTING
                     PASSWORD = p_npass
         endif.
         CALL FUNCTION 'BAPI_USER_CHANGE'
                   EXPORTING
                     USERNAME                = it_users-userid
                     PASSWORD                = p_npass
                     PASSWORDX               = 'X'
                   TABLES
                     RETURN                  = it_ret2.
                  Loop at it_ret2.
                    if it_ret2-number = 039.
                      write: / 'password changed'.
                    else.
                      write: / it_ret2-message.
                    endif.
                  endloop.
                  Write: / ''.
                  refresh it_ret2.
    ENDLOOP.

  • Personalisation Of language for selected users

    Hi,
    Is it possible to change the language settings, for some users by using some scipt or manually(by the end user)? By default the language taken up by the portal is the browsers language, but I want to change the language to a few users. I am not sure about Internationalisation concept being used here, is it possible to make changes through it on netweaver active and running portal without disturbing the other users?
    I have refferred to the service note <a href="https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=947081">947081</a> but unable to move any further.
    Please assist.

    There is a language field within the portal's user administration dialogue.  In my environment this is blank by default but I am able to choose a specific setting on a per-user basis.  I authenticate users via LDAP and Windows Integrated Authentication/Kerberos tickets from an Active Directory database but even users defined here can have a portal specific language defined.  When I changed my language from English to Japanese, the logoff dialogue box text was written in Japanese characters rather than English.
    I wish to avoid administering users directly in the portal and to keep all administration in AD (single point of control).  Therefore, I do not want to have to manually change a Japanese user's language setting.  If this is picked up from the Windows/Browser language setting then I'm happy.  If not, there is a "language" attribute defined in the "Reference Documentation for User Management" section of "Identity Management of the Application Server Java" at http://help.sap.com/saphelp_nwce10/helpdata/en/3a/4a0640d7b28f5ce10000000a155106/frameset.htm
    I suspect that it is possible to map an AD attribute to the Java "language" attribute to set this.  This would be done in the "dataSourceConfiguration....xml" file and UME configuration processes.  The challenge might be to find an appropriate AD attribute to contain the correct value (with the correct syntax) for the NWJava attribute.  Of course, it might also be possible to modify the logon code of the portal to select any AD attribute and map it directly but I have absolutely no experience of how to do this.

  • Can we hide a specific subject area in answers for selected users

    Hi,
    Can we hide a specific subject area in answers for few users. I want to expose a particular subject area for only 2 users out of 10 . Right now if i expose it all 10 ppl with answers access will see that subject area. can i hide it for the other 8 without removing their answers access.

    Log in as Admin- Setting-Administration-Manage Privileges-Search for your subject area and place appropriate restriction..

  • Override User Restrictions (N Characters) for select users in BOXI R2

    We have a requirement to display Crystal Reports passed from BMC Remedy Mid-Tier to BMC Remedy AR Web Report Viewer to BOXI.  The AR Web Report Viewer will only pass along 11 characters of the password and the BOXI system is set to require a minimum of 15.   Is there a way to override the application set 15 character user restriction for 1 user?
    Thank you for your assistance.

    You can't override this for a single user. N characters is applicable to all Enterprise accounts. However there is a trick to create a user account with a password that is less than 15 characters. You can lower the number of required characters to 11, create the user account and then change the number back to 15. Make sure that for this particular user you uncheck the feature that you need to change the password at first logon. Changing the number back to 15 will have no effect on already existing user accounts that have a password which is less then 15 characters.
    Hope this helps...
    Martijn van Foeken
    Focuzz BI Services
    http://www.focuzz.nl
    http://nl.linkedin.com/in/martijnvanfoeken
    http://twitter.com/mfoeken

  • Exchange 2010 Create new folder for select users off the root of the mailbox

    I need to create a new folder for a select set of users.  This folder needs to be off the root of their mailbox.  I  considered using a custom managed folder but we do not have the enterprise CAL’s to support this option.  I only have
    about 15 users so I could do this one by one if needed.  I am not a powershell user but have been using the Exchange Management Shell and would like to us this app to create the folders but I’m not finding the right syntax for the new-mailboxfolder cmdlet. 
    What is the correct method for using the EMS to create a new folder in a mailbox.

    I was checking back thru my notes and seem to remember running this cmdlet:
    [PS] C:\Users\administrator.STOUSE\Desktop>get-mailboxPermission | FL
    cmdlet Get-MailboxPermission at command pipeline position 1
    Supply values for the following parameters:
    Identity: administrator
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\administrator
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : False
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\StouseSA
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : False
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : True
    InheritanceType : All
    User            : STOUSE\Domain Admins
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : True
    InheritanceType : All
    User            : STOUSE\Enterprise Admins
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : True
    InheritanceType : All
    User            : STOUSE\Organization Management
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : True
    InheritanceType : All
    User            : STOUSE\administrator
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Servers
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Domain Servers
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Organization Management
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Public Folder Management
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : False
    InheritanceType : All
    User            : NT AUTHORITY\SYSTEM
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : NT AUTHORITY\NETWORK SERVICE
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Servers
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Domain Servers
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Delegated Setup
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Organization Management
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Trusted Subsystem
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Services
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\administrator
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Enterprise Admins
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Domain Admins
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
     

  • How to provision an app for all users with all dependencies?

    I have created an app package with VS that I want to provision for all users of a target system using
    DISM /Online /Add-ProvisionedAppxPackage /FolderPath:".\%package%" /SkipLicense
    The path contains the content of the *Test folders VS creates when creating store packages. However DISM expects a ".main" file in this folder to work (0xc1570102).
    What's the correct way to provision an app with all its dependency packages? (Using the PackagePath option?)

    After some further testing in Profile Manager I found that adding the applescript to items that open at logon seems to work. No need for the plist, unless of course I decide not to use Profile Manager at all.

  • LiveLinkException [HR#10049]: User is not provisioned for this operation

    Hi,
    I installed EAL 11.1.1.4.000 on win2008 R2 64bit Japanese OS.
    But I met an issue after successful added Analytics Link Server node.
    When Adding bridge components to an Analytics Link Server, the error message said as:
    "Financial Management Server cannot be added: User is not provisioned for this operation"
    and the EAL.log shows:
    "LiveLinkException [HR#10049]: User is not provisioned for this operation"
    Does it means I did the wrong setting when configure EAL?
    Thanks

    Have you set up the correct provisioning for the user in Shared Services?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • OIM use case- Email notifcation post Exchange provisioning

    Hi,
    Consider the following use-case:
    After AD and Exchange accounts are provisioned for a user, email notification need to be sent to the user's manager containing some attributes. One of the attributes is user's email address which will not be given by the user. It would be concluded when Exchange Account is provisioned. Now this email adress is to be retrieved. It could be done by giving a JNDI call to lDAP in the java code.... how this is to be initiated...please give some pointers in this direction..

    Like Rajiv is saying OIM normally sets the email address during provisioning so you can use the value from the process form.
    There are some circumstances and configurations when Exchange will overwrite the email address with a "better" email address. In that case you can use s slight modification of this code http://iamreflections.blogspot.com/2010/08/manage-ad-with-jndi-demo-tool.html
    The attribute you need to get is called mail (there are a dew other alternatives but mail is always present)
    Best regards
    /Martin

  • Disbale Desktop Sharing in Jabber for Windows for single users

    Hi,
    is there possibility to administrative disabling the desktop sharing feature for selected users?
    CUP and CUCM is 8.6. Jabber is 10.5. Use DesktopSharing via Chat without any phone or deskphone only.
    Regards

    I am referring to the new Screen Sharing way in Jabber 10.5 for screen sharing without having a video call running:
    "In addition to the video screen share (BFCP) feature that is available to video-enabled clients when on a call, users can now screen share directly from an IM conversation when video share is not provisioned or available."
    Source: http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/jabber/Windows/10_5/rn/JABW_BK_J559CFFB_00_jabber-windows-release-notes-10-5/JABW_BK_J559CFFB_00_jabber-windows-release-notes-10-5_chapter_00.html

  • Exchange Provisioning Issue in OIM 11g

    Hi ,
    I am trying to do AD and Exchange provisioning. AD User is getting provisioned succesfully, However Exchange is getting rejected. That particular Create Mailbox is getting rejected, Can you please help me here.
    Here are logs trace,
    Running Create mailbox
    <Jul 16, 2012 11:19:08 AM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <====================================================>
    <Jul 16, 2012 11:19:08 AM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <com.thortech.xl.integration.Exchange.tcExchangeTasks : createMailboxForADUser : Insufficient data, may be all mandatory field are not present : :Does not exist>
    <Jul 16, 2012 11:19:08 AM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <====================================================
    >
    <Jul 16, 2012 11:19:08 AM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <================= Start Stack Trace =======================>
    <Jul 16, 2012 11:19:08 AM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <com.thortech.xl.integration.Exchange.tcExchangeTasks : createMailboxForADUser>
    <Jul 16, 2012 11:19:08 AM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <Does not exist>
    <Jul 16, 2012 11:19:08 AM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <Description : Does not exist>
    <Jul 16, 2012 11:19:08 AM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <com.thortech.xl.exception.ProvisioningException: Does not exist
    at com.thortech.xl.integration.Exchange.tcExchangeTasks.getObjectByObjectGUID(Unknown Source)
    at com.thortech.xl.integration.Exchange.tcExchangeTasks.createMailboxForADUser(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpMEXCCREATEMAILBOX.CREATEMAILBOX(adpMEXCCREATEMAILBOX.java:708)
    at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpMEXCCREATEMAILBOX.implementation(adpMEXCCREATEMAILBOX.java:199)
    at com.thortech.xl.client.events.tcBaseEvent.run(tcBaseEvent.java:196)
    at com.thortech.xl.dataobj.tcDataObj.runEvent(tcDataObj.java:2492)
    at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(tcScheduleItem.java:2917)
    at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(tcScheduleItem.java:547)
    at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:602)
    at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
    at com.thortech.xl.dataobj.tcORC.insertNonConditionalMilestones(tcORC.java:844)
    at com.thortech.xl.dataobj.tcORC.completeSystemValidationMilestone(tcORC.java:1159)
    at com.thortech.xl.dataobj.tcOrderItemInfo.completeCarrierBaseMilestone(tcOrderItemInfo.java:735)
    at com.thortech.xl.dataobj.tcOrderItemInfo.eventPostInsert(tcOrderItemInfo.java:171)
    at com.thortech.xl.dataobj.tcUDProcess.eventPostInsert(tcUDProcess.java:235)
    at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:602)
    at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
    at com.thortech.xl.dataobj.tcTableDataObj.save(tcTableDataObj.java:2906)
    at com.thortech.xl.dataobj.tcORC.autoDOBSave(tcORC.java:3002)
    at com.thortech.xl.dataobj.util.tcOrderPackages.createOrder(tcOrderPackages.java:526)
    at com.thortech.xl.dataobj.util.tcOrderPackages.orderPackageForUser(tcOrderPackages.java:177)
    at com.thortech.xl.dataobj.tcOIU.provision(tcOIU.java:527)
    at com.thortech.xl.dataobj.tcOIU.eventPostInsert(tcOIU.java:303)
    at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:602)
    at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
    at com.thortech.xl.dataobj.tcTableDataObj.save(tcTableDataObj.java:2906)
    at com.thortech.xl.dataobj.tcUserProvisionObject.insertImplementation(tcUserProvisionObject.java:283)
    at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:591)
    at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
    at oracle.iam.accesspolicy.impl.handlers.provisioning.ProvisionAccountActionHandler.execute(ProvisionAccountActionHandler.java:104)
    at oracle.iam.accesspolicy.impl.handlers.provisioning.ProvisionAccountActionHandler.execute(ProvisionAccountActionHandler.java:35)

    Now I get this error, What is missing here?
    Running Create mailbox
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <====================================================>
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController : connectToAvailableAD : Empty Argum
    ents Passed in either Root Context,Admin FQDN,Admin Password,Server Address,Port Number in the IT Resource. >
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <====================================================
    >
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <====================================================>
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController : connectToAvailableAD : The error o
    ccured in tcADUtilLDAPController::connectToAvailableAD():Empty Arguments Passed in either Root Context,Admin FQDN,Admin Password,Server Address,Port Number in the IT Re
    source. >
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <====================================================
    >
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <================= Start Stack Trace =======================>
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController : connectToAvailableAD>
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <Empty Arguments Passed in either Root Context,Admin FQDN,Admin Password,Server Address,Port Number in t
    he IT Resource. >
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <Description : Empty Arguments Passed in either Root Context,Admin FQDN,Admin Password,Server Address,Po
    rt Number in the IT Resource. >
    <Jul 16, 2012 1:25:20 PM EDT> <Error> <OIMCP.MEXC> <BEA-000000> <java.lang.Exception: Empty Arguments Passed in either Root Context,Admin FQDN,Admin Password,Server Add
    ress,Port Number in the IT Resource.
    at com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController.connectToAvailableAD(Unknown Source)
    at com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController.search(Unknown Source)
    at com.thortech.xl.integration.Exchange.tcExchangeTasks.getExchMailboxStores(Unknown Source)
    at com.thortech.xl.integration.Exchange.tcExchangeTasks.createMailboxForADUser(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpMEXCCREATEMAILBOX.CREATEMAILBOX(adpMEXCCREATEMAILBOX.java:625)
    at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpMEXCCREATEMAILBOX.implementation(adpMEXCCREATEMAILBOX.java:188)
    at com.thortech.xl.client.events.tcBaseEvent.run(tcBaseEvent.java:196)

Maybe you are looking for

  • Editing iPhotos in Aperture

    I've had Aperture 3 for a week now, and I'm pretty well up to speed on the features. Three things are still puzzling me: 1) Is there a way to share Aperture photos with another Mac on my home network? This was easy in iPhoto, but I don't see the capa

  • Developing a plugin for Adobe Reader 9.0

    Hi All, I want to develop a plugin in Adobe Reader 9.0. I have setup Visual Studio 2005 and the plugin wizard. I am using the samples from acrobat SDK 9.0, I am able to build the samples and *.api is created. I have put that file in the plugins direc

  • CS6 Functional Content will not install

    Help: Just discovered I was supposed to have "functional content" in Encore, Premiere, and After Effects CS6.  I installed this from the disks originally.  Did not realize the install did not work.  Ended up downloading functional content from Adobe

  • Clustering in glassfish

    Hi We use JSF -EJB frame work with toplink essentials as the persistance provider , As our application became highly transactional we moved to clustered setup of glassfish . Now we getting issues because of stale data ( the data updated on one instan

  • Our records indicate that your phone has been replaced??

    I am trying to get some support for my iphone 3g, and when I entered the serial number I got this message: Our records indicate that this product has been replaced. Please provide your product's replacement serial number to find its support and warra