User form customization

hi ,
I have entity adapter for userid and password generation so i dont want those fields to be visible in the create user form and i dont want that fields to be mandatory. How can i change this..
Am using jboss appserver..how can i make them non mandatory and invisible

Hi syednister,
          As per my understanding you need to Customize RCDC of User...
For that you need to create the custom attribute in the Schema management, then adding the attribute in the Administrator can update and view the user MPR.
Add the Filter permission of the attributes and then Customize the RCDC for user creation and editing.
Edit the xml file into any XML editor and by pasting the following code:
<
my:Controlmy:Name="EmployeeEndDate"my:TypeName="UocDateTimeControl"my:Caption="{Binding
Source=schema, Path=EmployeeEndDate.DisplayName}"my:Description="{Binding
Source=schema, Path=EmployeeEndDate.Description}" 
my:RightsLevel="{Binding
Source=rights, Path=EmployeeEndDate}">
        <
my:Properties>
          <
my:Propertymy:Name="Required"my:Value="{Binding
Source=schema, Path=EmployeeEndDate.Required}"/>
          <
my:Propertymy:Name="Value"my:Value="{Binding
Source=object, Path=EmployeeEndDate, Mode=TwoWay}"/>
        </
my:Properties>
      </
my:Control>
and IIS reset....
 

Similar Messages

  • Customize "Disable User" into a User Form

    Hi.
    I created a small User Form, which contains a simple Checkbox. When this Checkbox is checked, I would like to DISABLE a given User.
    I already know the code that could be used; this code needs to be inserted into the UPDATE-USER Workflow. It's as follows :
    *<Action application='com.waveset.session.WorkflowServices'>*
    *<Condition>*
    *<isTrue>*
    *<ref>my.disableuser</ref>*
    *</isTrue>*
    *</Condition>*
    *<Argument name='op' value='disableUser'/>*
    *<Argument name='accountId' value='$(user.waveset.accountId)'/>*
    *<Argument name='doWaveset' value='true'/>*
    *</Action>*
    However, my questions is : exactly where should this Action be inserted?
    Or, shouldn't it be an Activity on its own?
    Should the code also begin with an ID, such as :
    *<Action id='0' process = 'disable'>*
    etc, etc

    So a few things.....
    I assume you have this form as a manual task somewhere in that workflow or a workflow that calls the workflow you mention? It all depends on if you want to do other actions on the user. Do you have other processing that needs to be done, or do you just want to disable the user? If you just want to disable the user based on that checkbox, then you could just include the code you have mentioned into your update user workflow. What else does that workflow do? Are you transitioning to this activity from another activity?
    Personally I like to do conditional checks like you are doing in transitions instead of the XML Object language. I think its cleaner, and visually easier to follow.
    If you are using the BPE or netbeans ide it should automagicly include that action id in for you. But as to if you should include it as an action or activity, that is totally up to you. :)

  • OIM 11gR2 Add combo box UDF on Create User Form

    Hi.
    We have created a new UDF on user form. It is a lookup field and has the following lookup associated: "Lookup.Users.Continente"
    "Lookup.Users.Continente" has two values, both of them checked as Enabled.
    From the form designer all the values are displayed when selecting one default value so it is reading correctly from the lookup.
    We published the sandbox after this.
    Then we created a new sandbox and tried to add that field to the Create User Page. We went to "Create User Page", customize it and add content from "Data Component - Catalog" -> "userVO" -> Select the UDF, clicked on "Add" and selected "ADF Select One Choice".
    A new combobox is added but no values are shown. We have plublished the sandbox, restarted OIM, purged cache, etc... but it still shows an empty combo box. We have also tried adding it as "ADF Input List of values" but it does not add the field to the create user page.
    Any ideas of what are we doing wrong?
    The idea is very simple, just create a field with the same behaviour as, for example,  "User Type" field. A combobox that displays the enabled values from a lookup...
    We have also tried creating the UDF cheking the searchable option, searchable picklist and all the possible combinations.
    Thanks in advance!!

    oim version is oim 11gR2 with BP4

  • Additional user search field in User form similar to "Manager" search field

    Hi,
    I need to add a field to the User form in a OIM 11g R2 system that is practically identical to the "Manager" field (it's just for adding a deputy of some kind).
    I did not find a way to copy&paste the "Manager" field by e.g. exporting a sandbox, modifying it and importing it back into the system and have it work properly afterwards.
    How can this be achieved? Is that documented anywhere?
    Thank you,
    M

    To add new field like Manager on user form. you need to do following steps,
    1. Create Custom Field (UDF) before publishing it take export of that. which will help you to import same sandbox in other environment.
    2. In OIM 11g R2 there is link called as customization when you login into OIM console.
    3. Create new sandbox
    4. Open form you wanted to add created custom field.
    4. Go to customization link and add new field on required location.
    5. Save changes
    6. Publish sandbox
    That's All!!
    Creating a Custom Attribute &amp;#8211; OIM 11g
    Customizing the Interface - 11g Release 2 (11.1.2)

  • OIM Form Customization

    Hi,
    My customer is having following requirements related to OIM Form Customization.
    1.In createuser form,UserID ,Password and Confirm Password Should not be displayed.We are generating userid and password automatically and we should not allow the admin to enter userid and password while creating user.
    2.Is it possible to make a form field mandatory only to specific usertype ? . For contractors,we need to make "Deprovisoning Date" as mandatory field but for employees,it should be a non-mandatory field.
    3.Is it possible to have different form fields in Create user Form and Manager User Form.Since Create user form will be used to create contracors,we we don’t need to specify user defined fields related to employees ( JobName,PoitionName,EmployeeType etc) in create user form.
    I am facing problems in implementing above requirements.Can somebody suggest,how I can implement these?.
    Thanks.

    Please check this Note 468779.1 from metalink.
    Goal
    How To Disable Password And Confirm Password or How to set the password fields as optional?
    Solution
    You can't set password field optional,this is mandatory field and hard coded in action class but you can set default value from jsp(tjspGenerateCreateUserForm.jsp) page. You can't be remove completely password section from User Creation Page as this is hard coded in the source code. Password is mandatory field for User creation API .
    You can provide default password value from the JSP file. After modifying the JSP page as below,while creating OIM user both fields(Password and Confirm password) will not be editable.
    Please try to modify tjspGenerateCreateUserForm.jsp
    *(<BEA-Home>\user_projects\domains\proquire901\XLApplications\WLXellerateFull.ear\xlWebApp.war\tiles\util).
    Add < value="123" readonly="true> these two attribute in password section and
    ChangePassword section.
    ===
    ##Password section######
    <td>
    <html:password name="manageUserForm" property="password"
    value="123" redisplay="true" readonly="true" styleClass="Fields" tabindex="1"/>
    </td>
    ###confirmPassword section######
    <td>
    <html:password name="manageUserForm" property="confirmPassword"
    value="123" readonly="true" redisplay="true" styleClass="Fields" tabindex="2"/>
    </td>
    ==

  • Multi Value User Defined field on OIM user form

    Hi Everyone,
    I have a requirement where i need to assign multiple resources to user as per access policy. These resources should be assign by virtue of some role (custom attribute as of now). The specific requirement is that one user may have multiple roles (and hence resources) and all these values should capture in any user defined field. As the requirement contains multiple Roles so we have to create multi-value user defined field for User form to capture all these role values under single attribute. Does OIM provides any such multi-value field OOTB (lookup, drop down--any customize way we can make them multivalue)?

    He's right. Multi Valued attributes on the User Profile are not available in OIM. If you want to do this, and you have a finite number of possible roles, you can create UDFs for each and map a checkbox or something to it if the user has that value. Then base your acccess policies off those.
    -Kevin

  • IDM  :  Customizing User Forms and/or Interfaces

    Good morning.
    Ok, I do not know if this is the right place to post this Issue. But, I can't seem to find any other forum which deals directly with IDM issues (believe it or not, Sun's Website is absolutely USELESS).
    Here's the thing :
    I am currently developing an IDM System.
    The version I am developing is the latest one : IDM 8.1
    I have created the Resources (LDAP and Active Directory), and done the reconciliation. I've performed all the usual and necessary user-operations (create user, edit user, create role, edit role, etc , etc).
    In short, the IDM is working perfectly...............
    ....except for one thing : "Customizing (User) Forms"
    The IDM I've created is intended for various users; some have administrator rights and access, some don't; some are mere users, some are Human Resources, some are IT, etc, etc
    The point is : I want to create different "Forms" and/or "Interfaces" for some of these different users.
    I know the theory behind this : I need to CUSTOMIZE a specific User Form.
    I also know that it is not advisable to modify the Standard XML Forms which come with the IDM package. The advice is to copy the ones you need to modify, and then make the changes to the copies.
    Here's the million-dollar question : HOW CAN I DO THIS?
    I have checked, and re-checked, and browsed every site imaginable --- from Sun, to Google, to Facebook. I have not found a single helpful answer to this question. Everywhere, everyone talks about WHAT needs to be done to create Custom Forms or Interfaces; but nobody cares to say HOW it should be done.
    Including our wonderful Sun Microsystems!
    Could anyone please tell me, in straightforward terms, how to customize Forms, and how to implement these customized forms into the IDM instance ?
    Thank you.

    Please try Directory Servers / Identity Management - Sun Java System Identity Manager forum @ [http://forums.sun.com/forum.jspa?forumID=764]

  • OIM 11GR2 - mechanism for restoring default adf user forms - create user

    Hi All
    Our developers has pubkished multiple OIM sandbox and create user form is broken
    : the user creation form does not appear - only a html <div> tag .
    The developer reverted the form using the em/console - then he ran the catalog sync job but all he can acheive is a blank form not the original user create forms
    How do we restore the forms to thier original state.
    Thanks

    Not sure if this helps. But try these steps mentioned in the developer's guide. Once I did some UI customization in identity console and could not load my page after that. I followed these steps and was successfully able to restore it back. You can give a try and in step 6 try to select some known sandbox name which did not have any issues.
    1. Login to Oracle Enterprise Manager.
    2. In Application Deployments, select oracle.iam.ui.console.self-service.ear.
    3. On the top-right of the page, select Application Deployment, and then select MDS Configuration from the list.
    4. At the bottom of the screen, select Runtime MBean Browser under the Advanced Configuration section. The right side of the screen refreshes.
    5. Click the Operations tab.
    6. Scroll down and identify the listMetadataLabels MBean operation and invoke it. Select the MBean operation that does not take any parameters. Select the sandbox precreate that you want to restore, and copy it to the clipboard.
    For example, the value you copy can be similar to: Creation_IdM_test_09:25:00.
    7. Click Return to go back to the Operation tab.
    8. Find the promoteMetadataLabel MBean operation.
    9. Invoke the promoteMetadataLabel MBean operation, and enter the value that you copied in step 6.
    10. Restart Oracle Identity Manager.

  • Why doesn't default CREATE USER form show a "Check"  Page before submitting

    Hi
    Interesting question.
    When I create a User (using my Customized Create User Form), and I press SAVE, the Form is submitted immediately. There is no "stop-and-check" page, which allows one to review the entries made BEFORE submitting the form itself.
    For example : when EDITING or UPDATING a User, and you press "Save", the form is not submitted right away. Instead, a new page opens, where you can review the changes you made, to ensure that they are correct. In fact, at the bottom of this new page, there are 4 standard buttons : SAVE...........RETURN TO EDIT............CANCEL
    This is a very good system, because it allows you to check your entries, and make sure they are correct, before pressing SAVE again to submit.
    However, the "Create User" form does not have this same arrangement.
    Is there any way to customize the Form, so that, when creating a User, and you press SAVE, a "check-page" first shows up (just like when updating/editing a user) ?
    Thanks

    Hi
    Interesting question.
    When I create a User (using my Customized Create User Form), and I press SAVE, the Form is submitted immediately. There is no "stop-and-check" page, which allows one to review the entries made BEFORE submitting the form itself.
    For example : when EDITING or UPDATING a User, and you press "Save", the form is not submitted right away. Instead, a new page opens, where you can review the changes you made, to ensure that they are correct. In fact, at the bottom of this new page, there are 4 standard buttons : SAVE...........RETURN TO EDIT............CANCEL
    This is a very good system, because it allows you to check your entries, and make sure they are correct, before pressing SAVE again to submit.
    However, the "Create User" form does not have this same arrangement.
    Is there any way to customize the Form, so that, when creating a User, and you press SAVE, a "check-page" first shows up (just like when updating/editing a user) ?
    Thanks

  • Remove DEFAULT BUTTONS from User Form

    Hi.
    At the bottom of the Create User Form are 6 standard buttons :
    SAVE..........BACKGROUND SAVE..........CANCEL..........RECALCULATE............TEST..........LOAD
    I would like to remove some of them.
    How do I do this?
    P. S. I am aware of the "*noDefaultButtons='true'"* command. This is not what I want. I would like the default buttons to remain. For instance : SAVE and CANCEL.
    I just wish to remove others.

    The code for the default buttons are not likely to be found in a form but rather defined within the java code embedded in the jars.
    Regarding the definition of the other buttons you are unfortunately digging into areas of Sun IDM that are not very well documented.
    (See the results for the processInputs you show: [http://search.sun.com/docs/index.jsp?col=docs_en&locale=en&qt=processInputs&dcol=1514.6|http://search.sun.com/docs/index.jsp?col=docs_en&locale=en&qt=processInputs&dcol=1514.6] )
    The difference between the background save and a regular save (as you noted), from what I'm guessing since it's not well documented, is the definition of the processInputs.backgroundProvisioning in the field name. (Most buttons don't have field names since they don't need to push data back into the user view.) It's being set to "true" but the command is the regular "Save" button command. (The save button command instructs IDM to process the changes WITH form validation as opposed to SaveNoValidate.)
    This means that when the button is clicked the user view is being updated with the processInputs.backgroundProvisioning option set to true. Obviously IDM uses that flag to process the user view differently.
    Again, how and why that is used is not well documented. The only references I can find is in the ViewConstants and UserViewConstants classes in the javadocs but there's really no explanation about the use of the backgroundProvisioning variable.
    This is easily my biggest complaint about IDM. The options you need to customize the product aren't exposed properly to a developer. Sorry I can't be of more help. You've run into the same brick wall many of us have.

  • Miscellaneous issue form customization

    Hello,
    The form mentioned above is INVTTMTX with Form Version : 11.5.239.
    the user is requesting the following customizations to the form:
    -Use the Reference field to hold a list of values of names that currently have no reference in the system.
    -Add a descriptive flexfield to the form; should hold a seial number for the miscelaneous transactions that should be generated automatically.
    I need guidance because I don't know how to the above and what tools shall i use. Detailed instructions and an action plan will be very helpful.
    Thank you

    Hi,
    1. Reference field - isn't this a separate report? Your requirements are not specific enough.
    2. Setup a Descriptive Flexfield Column - read the Flexfields manual. Create a sequence in the database. Use when-validate-record trigger and forms customization or database trigger to populate DFF field.
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • Adding Columns to the matrix in SAP B1 user form using Visual studio 2010

    Hi,
    Using Visual studio 2010, I have created a SAP B1 user form( b1f ) with one matrix.Matrix is having 5 columns. Its working properly. Later, I want to add few more columns. Then I added columns to the matrix as I have created columns initially. But, it does not saves.
    i.e, Whenever I run, In B1 I could see only old columns. Newly created columns are not showing.So, I closed the .net project and opened again. Created columns are not showing in visual studio b1f itself. So, I created again and saved. But, its not saving.I tried it many times.
    What I am missing?
    Any help is appreciated.
    Thanks in advance,
    Parvatha Solai.N

    Hi Parvatha,
    Are you using B1 Studio? Anyway try to clean the solution first then rebuild it. This would re-copy files to the output directory, that contain your changes.
    Best regards,
    Pedro Magueija

  • How to allow domain users to customize page Size in Adobe PDF printer.

    Hi all,
    I am not able to customize page size in Adobe PDF printer when I logged in with Domain user login. But I am able to Customize PDF printer in admin Login.
    I need a solution to allow Domain users to customize page size for Adobe PDF printer.
    Looking for a solution ASAP
    Regards
    Nagesh

    Oops, I misread your question, so I edited my response.

  • How to disable a Entire row in a Matrix in Find Mode (User Form)

    Hi,
    How to disable a Entire row in a Matrix in Find Mode (User Form)
    Regards
    Jambu

    Hi,
       Iam using Bubble event = false in click event but the matrix row
    is allow to edit but we cant save the document in Find Mode That is fine.
    What is my actual requirement is In find mode matrix Row not allow to enter the data .
    For examble In ADD mode i enter the data in Three rows (Item Section - Matrix) and
    save the document. Whwn i open the document in find mode the three row is not allow
    to editable like the same functionality of PO, sales Order, etc ..
    Regards
    Jambu

  • OIM 11G-prepop adapters not able to read from User form

    When I try to auto provision ldap account for users after creation of OIM record using GTC, the ldap provisioning doesnt happen. Basically the prepop adapters not able to read from Xel user form. I am stuck with this issue for a while now .
    I tried remapping..ect etc..ntng helped.
    None of the process form fields are getting prepopulated, when I hard coded avlue in prepop adapters for all the reqd fields in process form, proviosioning gets completed successfully.
    Pls. help me with this.
    Thanks.
    ~VSN
    I get the below errorr:
    <BEA-000000> <Class/Method: tcAdapterExecuter/executeRuleGenerators encounter some problems: java.lang.Exception: Error retrieving user info: User Login
    java.lang.Exception: java.lang.Exception: Error retrieving user info: User Login
    at java.lang.Throwable.<init>(Throwable.java:67)
    at com.thortech.xl.dataobj.rulegenerators.tcAdapterExecuter.executeRuleGenerators(tcAdapterExecuter.java:205)
    at com.thortech.xl.dataobj.util.tcPrePopulateUtility.setDataFromAdapter(tcPrePopulateUtility.java:1020)
    at com.thortech.xl.dataobj.util.tcPrePopulateUtility.prePopulate(tcPrePopulateUtility.java:346)
    at com.thortech.xl.dataobj.util.tcOrderPackages.computeProcessFormData(tcOrderPackages.java:901)
    at com.thortech.xl.dataobj.util.tcOrderPackages.createOrder(tcOrderPackages.java:423)
    at com.thortech.xl.dataobj.util.tcOrderPackages.orderPackageForUser(tcOrderPackages.java:177)
    at com.thortech.xl.dataobj.tcOIU.provision(tcOIU.java:563)
    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:2905)
    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)
    at sun.reflect.GeneratedMethodAccessor1831.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:600)
    at oracle.iam.platform.kernel.impl.EventHandlerDynamicProxy.invoke(EventHandlerDynamicProxy.java:30)
    at $Proxy284.execute(Unknown Source)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runActionEvents(OrchProcessData.java:1035)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:644)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:227)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:669)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeChildProcess(OrchestrationEngineImpl.java:751)
    at oracle.iam.platform.kernel.impl.OrchProcessData.handleAdditionalChanges(OrchProcessData.java:537)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:802)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:227)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:669)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:686)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.notifyParentProcess(OrchestrationEngineImpl.java:828)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:771)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:227)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:669)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeChildProcess(OrchestrationEngineImpl.java:751)
    at oracle.iam.platform.kernel.impl.OrchProcessData.handleAdditionalChanges(OrchProcessData.java:537)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:802)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:227)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:674)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:705)
    at oracle.iam.platform.kernel.impl.OrhestrationAsyncTask.execute(OrhestrationAsyncTask.java:108)
    at oracle.iam.platform.async.impl.TaskExecutor.executeUnmanagedTask(TaskExecutor.java:100)
    at oracle.iam.platform.async.impl.TaskExecutor.execute(TaskExecutor.java:70)
    at oracle.iam.platform.async.messaging.MessageReceiver.onMessage(MessageReceiver.java:68)
    at sun.reflect.GeneratedMethodAccessor2150.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:600)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:148)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy382.onMessage(Unknown Source)
    at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
    at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
    at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
    at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
    at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
    at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Kevin,
    For manual Proviosioning - It works fine.
    It fails when I create user in OIM using flat file GTC . I have an access policy to auto proviosion that user with ldap.
    As mentioned before, I notice none of the prepops on Ldap process form are able to read value from Xel user form.
    Steps I tried Already:
    1- Checking access policy
    2-remapping process form adapters
    Pls. let me know ur thoughts.
    ~VSN

Maybe you are looking for