User's Group Membership problem with enterprise domain

Hi
I have some problems synchronizing Active Directory in LiveCycle ES 8.0.1.
I'm able to import the users and groups from an active directory to a enterprise domain... but the asociation user to group is not keeped.
The problem could be why the DN of users is different to the DN of the group?
the DN users is something like this:
OU=CED,OU=CDC Utent,DC=house,DC=lan
and the DN of the group:
DC=house,DC=lan
Thanks

Ok, I think that is not DN value the problem... I tried with another active directory and the association user to group is keeped! But why?
In the users details of active directory that doesn't synchronize well I have 2 more attribute:
dSCorePropagationData
profilePath
But really I don't understand where is the problem. Maybe the version of Active Directory?
Does anybody else have this weird issue?
Thanks.

Similar Messages

  • Invoke an adapter on change of User's Group Membership details

    Hi
    I need to invoke an adapter on change of User’s Group Membership details. I am not able to figure out from where I can invoke my adapter.
    Does anyone have any idea about this?
    -- Another Question: what is the purpose of having “tcUSRautoGroupMembership” in User’s Object Form on Post Update. It would be nice if you give some details about this task.
    -Hardew

    Thanks for quick response.
    What you have mentioned, is applicable for a specific value of a user’s OIM Profile filed; that means it will triggered only if a user has specified value i.e. "blah blah" for that field i.e. fieldA.
    However my scenario is slightly different. Let me explain my scenario by example:-
    I have N numbers of OIM groups i.e. g1, g2, g3, g4……, gn and a user called myUser. This user is a member of two groups’ g1 and g2, now if I make myUser to member of one more group i.e. g3 or remove i.e. g1; then I want to perform a custom task using adapter on this Group Membership change.
    Is there any “Data Object Form” where I can associate my adapter on post-update to detect change of User’s Group Membership?
    _hardew                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to verify user LDAP group membership

    Hi,
    we are attempting to determine if a user is a member of a specific LDAP group in our directory and if the user is a member it should return TRUE else FALSE (this is done by defining the LDAP attribute 'CN' (property) which returns a result 'CN=<UserName> or returns 'getting 0 entries'. The query we have is
    (&(cn=<username>)(memberOf=CN=<groupname>,DC=domain,DC=com)).
    Any pointers on how to do this ?
    Thank you.

    You could do a couple of things...
    1) Install dsquery (add remote AD tools to your box) and run something like
    dsquery group -u <user name>
    Username would be their login name, yours is "swaupadh" for example. This would return a listing of all the groups they are in and you could regex through that output for the group you are looking for. Use either the Execute Powershell or Execute Windows Command activity here.
    2) Use powershell functions and powershell capability to check for group membership, something like this:
    function Get-GroupMembership($DN,$group){
        $objEntry = [adsi]("LDAP://"+$DN)
        $objEntry.memberOf | where { $_ -match $group}
    //EXAMPLE CALL
    Get-GroupMembership "Cn=kazun,dc=contoso,dc=com" "Backup Operators"
    Then you can regex through the output for the "True" or "False" word and run with that.
    Either should get you what you want.

  • Problems with Enterprise Manager Oracle 10gR2

    Hi,
    The installation of 10gR2 on Windows 2000 seems to work.
    I only have a problem with web enterprise manager.
    I can connect to the database correctly and I can manage the database (creating tables, users and so on).
    The only problem is in the first page (home) of the database, accessing with the web enterprise manager.
    In fact I get this "error: java.lang.Exception: IOException in sending Request :: Connection refused", but I however access the db.
    I verified the DBSNMP user and it's active.
    Did someone get the same error?
    Excuse if I'm repeating a previous post, but I received answers about linux environment only (I have Windows 2000 server, instead).
    thanks a lot,
    Francesco

    We have in fact seen the same error. In our case, it appeared after the network guys moved the Oracle server from one domain to another. (This is not an action that I highly recommend, by the way.)
    I used emca to delete the Enterprise Manager agent and recreate it. For a single instance server not in a cluster or on a grid, the commands look like this:
    emca -deconfig dbcontrol db
    emca -config dbcontrol db
    That worked just fine. However, we started getting an "account locked" error when the Enterprise Manager started. And the result is the same as you described. The account is not locked by any means. If you ignore what you see on the screen about an error, you can go on and administer the database just fine. It's just when you get back to the home screen, it tells you that your account is locked and you are not in touch with the instance.
    I can make the error go away for awhile by stopping and starting the agent with
    emctl stop dbconsole
    emctl start dbconsole
    But the error comes back in a little while.
    We don't consider it a show stopper, since the database performs normally. It's just one of those things you wish it would not do.

  • Group membership redirect with AD LDS

    I have my LDS instance synchronized with my AD environment. I am only synchronizing objectClass=user. I am creating userProxyFull objects on the LDS side. Authentication is working as I have tested authenticating with an AD user to LDS.
    My application person would like to query group membership, that is the group membership that exists in AD. Is it possible to redirect group membership queries so that the group membership information from AD is provided to the application that is using
    the userProxyFull object in LDS?
    Thanks,
    Paul

    Hi,
    why do you need userProxy and AD LDS, is it that the application can only support LDAP simple bind or that you need a form of distinguishedName other than that in your AD or that the application cannot reach your DCs?
    To do Authorization, if you have ruled out having the application query AD DCs, your options are:
    [1] have the application maintain an Authorization database and sync that from your AD or provisioning system if you really need it to follow AD group membership
    [2] use adamsync to sync the groups as well as doing the userProxy transform, something like:
            <object-filter>(&#124;(objectClass=user)(objectClass=group))</object-filter>
            <attributes>
            <include>objectSID</include>
            <include>member</include>
            <exclude></exclude>
            </attributes>
    it would be best to spin up another AD LDS instance to try this against. You then need to test adding and removing users from the AD groups and check that those changes sync. This might work but unfortunately the more creative you get with object-filter
    in adamsync, the more surprising the results tend to be.
    [3] a variation on [1], ldif export your group memberships from AD and import into AD LDS (distinguishedName re-writing may be required)
    [4] have the application bind with the userProxy credentials to the rootDSE of the AD LDS instance and read tokenGroups to get a list of SIDs that you then need to resolve into groups (I mention this for completeness but it's possibly more complex application
    development than you would want to do...)
    Other options are:
    use a virtual directory tool
    use a different sync tool e.g. FIM or
     Quest One Connect
     disclaimer: I  have never used the latter.
    review the application to see if direct AD DC access is possible.
    Lee Flight

  • OIM 10G OID user account / group membership reconciliation

    Hello
    I have an OID environment that is used for OAM access to applications within the environment. I need to be able to reconcile users from OID into OIM along with their group membership so that roles for users are maintained and updated. I have ORM integrated within the environment so entitlements would need to flow to orm to document that users are members of a role / OIM group. Not sure if this is possible through the trusted reconciliation or if there is a user / group target reconciliation that can be used for this. Any help you can give for this would be appreciated.
    Thanks

    When i use ADCS timestamp as 0 (to capture changes from the beginning and not necessarily after the group change event occured on the AD side) and run AD user target recon this is getting updated. Is this correct and if so how can i always default ADCS timestamp as 0 in the scheduled task and are there any side effects for this sort of approach.
    Prasad.
    Edited by: Prasad on Nov 7, 2011 12:31 PM

  • User and group names truncated with ls

    Hello,
    When using the 'ls -l' command the resulting list truncates user and group names that are longer than 8 characters.
    Is this a know issue?
    I'm running Mac OS 10.4.10.
    Thanks,
    Anthony

    Jun T. wrote:
    If a program like "ls" wants to know the username corresponding to the uid, it must call a library function of the operating system. But there are two library functions, one gives the correct username and the other truncates the username.
    The basic library function is getpwuid(3) which returns the correct username.
    Hello Jun,
    I ran a search using Xfind (Rixstep) on /bin for 'userfromuid' and /bin/ls was listed as I might of expected.
    Also, /bin/ls was also listed when 'getpwuid' was used as a search Key.
    Peeking further into /bin/ls further with Xstrings (which is Rickstep's "adaptation" of the "strings' tool" ) reveals the string '_ getpwuid'.
    Does this mean that at some point the 'ls' command can call the getpwuid() directly under some circumstances rather than going through userfromuid() which relies on the cache you mentioned?
    The problem is the size of the table; userfromuid() allocates only 8
    characters for each username (the number 8 comes from UT_NAMESIZE in /
    usr/include/utmp.h), and truncates the username if it is longer. This
    may be "fixed" in a future version; or it may not be "fixed" to keep
    backward compatibility. I'm not sure.
    I've heard that utmpx.h has 'UTXUSERSIZE' which is defined as 32. Does not that allow for user and group names larger than 8 characters?
    By the way, I can't find the directory usr/include/utmp.h on my drive.
    Is there a way to reset or redefine this 'UT_NAMESIZE' field to more than 8 characters wherever the userfromuid() function stores it?
    The commands "users", "who", and "w" read the file /var/run/utmp, in
    which truncatd usernames of the currently logged-in users are saved.
    Does some command initially call the function as 'ls', userfromuid(), to result in truncated names being saved in file /var/run/utmp as well?
    I think there are many programs which depend on this fixed-width utmp
    file, so it may not be "fixed" in a future version. "
    I believe there are third party tools which rely on the userfromuid() call which require this bug to be fixed in order to display accurate user and group name data.
    Thanks for your informative reply,
    Anthony

  • Problem with Enterprise Portal

    Hi SAP gurus,
    I am having a peculiar problem with my E-portal.
    The system is up and running and when i check through jcmon, all my processes are running OK.
    When i go the portal link, the login page also opens(sometimes immediately/sometimes takes a bit of time).
    However, when i try to login with any user ID or j2ee_admin/admininstrator,it takes ages.
    I have found some errors in /usr/sap/DP1/JC06/j2ee/cluster/server0/log/system/.
    #1.#005056852BFA0020000000A100006A0500048BD06E067656#1279627222218#/System/Server#sap.com/irj#com.sap.portal.prt.runtime.broker#Guest#0##n/a##4cf09f8093f611dfb766005056852bfa#SAPEngine_Application_Thread[impl:3]_17##0#0#Error#1#/System/Server#Plain###[PortalServiceItem.startServices] service initialisation failed:com.sap.ip.bi.web.unifiedrendering|mainservice#
    #1.#005056852BFA0020000000A300006A0500048BD06E069373#1279627222225#/System/Server#sap.com/irj#com.sap.portal.prt.runtime.broker#Guest#0##n/a##4cf09f8093f611dfb766005056852bfa#SAPEngine_Application_Thread[impl:3]_17##0#0#Error#1#/System/Server#Plain###[PortalServiceItem.startServices] service initialisation failed:com.sap.ip.bi.webdynpro.alv.pdf|exportpdfservice#
    #1.#005056852BFA00280000001200006A0500048BD07D750118#1279627481121#/System/Server#sap.com/tcmonitoringsysteminfo#com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer#Guest#0##n/a##d87b207093f611df9096005056852bfa#SAPEngine_Application_Thread[impl:3]_14##0#0#Error#1#com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer#Plain###application [sap/monitoring] Cannot parse JSP  /CrashesList.jsp
    The error is: com.sap.engine.services.servlets_jsp.server.jsp.exceptions.CompilingException: Error while executing the compilation process: [/usr/sap/DP1/JC06/j2ee/cluster/server0/apps/sap.com/tcmonitoringsysteminfo/servlet_jsp/sap/monitoring/work/jsp_CrashesList1279627480225.java:253: processName is already defined in _jspService(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
                    String processName = request.getParameter("processName");
                           ^
    1 error
    Exception id: [005056852BFA00280000001100006A0500048BD07D74FF7E]#
    security.0.log:
    #1.#005056852BFA00280000009600006A0500048BD0F98EF80B#1279629563197#/System/Security/Audit/J2EE#sap.com/irj#com.sap.engine.services.security.resource.audit#Guest#0##n/a##d311609093fb11df8ee6005056852bfa#SAPEngine_Application_Thread[impl:3]_14##0#0#Error#1#com.sap.engine.services.security.resource.audit#Java###ACCESS.ERROR: Authorization check for caller assignment to J2EE resource [ : : : ].#4#keystore-view.TicketKeystore#entry-actions#READ_ENTRY#ALL#
    I am not quite getting if these are the reasons of the problem.
    If anybody has faced this issue, kindly help.
    Regards,
    Santosh Bhat

    I did a research of this issue, and I found a know issue on portal 7.0 SP16 that this message throws. The solution on this case is upgrade your system to sp17.
    Your exception also say that your string "String processName = request.getParameter("processName");" Already exist before. so maybe this can be caused also for some custom code, this is a pssibility?
    jsp_CrashesList1279627480225.java:253: processName is already defined in _jspService(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse).
    Just to let you know the error of the know issue I referred is exacly:
    The error is:                                                           
    com.sap.engine.services.servlets_jsp.server.jsp.exceptions.CompilingExce
    ption: Error while executing the compilation process:                   
    [D:/usr/sap/HGE/JC04/j2ee/cluster/server0/apps/sap.com/tcmonitoringsys
    teminfo/servlet_jsp/sap/monitoring/work/jsp_CrashesList1222431016884.jav
    a:253: processName is already defined in _jspService                    
    (javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletRes
    ponse)                                                                               
    #String processName = request.getParameter                    
    ("processName");                                             
    What I can recomend you is:
    1) If you are on SP16, please evaluate upgrade your system to sp17.
    2) Make suren this issue are not caused for any custom code.
    3) try to go to last path level for the componente that are available on Market Place:
    Obs: Just remember that Paths is not a a SP level, so has just corrections.
    For Example:
    For EP-PSERV component access:
    http://service.sap.com/swdc >>
    support packages >>
    Support Packages and Patches - Entry by Application Group
    SAP NetWeaver and complementary products
    SAP NETWEAVER>
    SAP NETWEAVER 7.0
    Entry by component >>
    EP Core
    PORTAL 7.00
    EPPSERV18P_8-10003474.SCA
    For EPBC component access:
    http://service.sap.com/swdc >>
    support packages >>
    Support Packages and Patches - Entry by Application Group
    SAP NetWeaver and complementary products
    SAP NETWEAVER>
    SAP NETWEAVER 7.0
    Entry by component >>
    EP Core
    PORTAL CORE SERVICES 7.00
    EPBC18P_3-10003473.SCA
    For EPBC2 component access:
    http://service.sap.com/swdc >>
    support packages >>
    Support Packages and Patches - Entry by Application Group
    SAP NetWeaver and complementary products
    SAP NETWEAVER>
    SAP NETWEAVER 7.0
    Entry by component >>
    EP Core
    PORTAL FRAMEWORK 7.00
    EPBC218P_4-10003489.SCA
    Regards,
    Fabio

  • Problems with Enterprise Manager 10g

    Greetings!
    We have 3 databases up and running fine so far. Yesterday I mentioned that the Enterprise Manager for one of the databases is not reachable, although it is up and I can connect to it with SqlPlus. So I checked emctl and it is up and running, and the port I use is also right. Has anyone an idea what I could do in addition to get EM working again? I only have these problems with one db, all others are working great.
    best regards,
    Jörn

    Hi there,
    here is the status of the dbconsole and the agent:
    emctl status dbconsoleTZ set to Europe/Berlin
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    http://orahost.fzh:1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is running.
    Logs are generated in directory /u01/app/oracle/product/10.2.0/db/orahost.fzh_kms/sysman/log
    emctl status agentTZ set to Europe/Berlin
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.5.1
    OMS Version : 10.1.0.5.0
    Protocol Version : 10.1.0.2.0
    Agent Home : /u01/app/oracle/product/10.2.0/db/orahost.fzh_kms
    Agent binaries : /u01/app/oracle/product/10.2.0/db
    Agent Process ID : 23765
    Parent Process ID : 21612
    Agent URL : http://orahost.fzh:3938/emd/main
    Started at : 2008-02-11 12:23:39
    Started by user : oracle
    Last Reload : 2008-02-11 12:23:39
    Last successful upload : 2008-02-14 08:25:48
    Total Megabytes of XML files uploaded so far : 27.19
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 52.00%
    Agent is Running and Ready
    I restartet the agent and the dbconsole without any success. I still cannot reach the EM for the second DB. Any other suggestions?
    best regards,
    Jörn

  • Problem with NFSv4 Domain name

    Hi,
    I am creating zones for the first time.
    I am having problem with the NFSv4 domain name prompt.
    I followed the instructions described in
    http://opensolaris.org/os/community/zones/faq/#cfg_sysidcfg
    After the installation of the zone, on zonepath/root/etc, I created a sysidcfg file and did
    touch *.*NFS4inst_state.domain
    Booted the zone and logged in to the zone console.
    The sysidcfg worked as expected but the NFSv4 prompt didn't go away:
    &#9472; NFSv4 Domain Name &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;
      NFS version 4 uses a domain name that is automatically derived from the
      system's naming services. The derived domain name is sufficient for most
      configurations. In a few cases, mounts that cross domain boundaries might
      cause files to appear to be owned by "nobody" due to the lack of a common
      domain name.
      The current NFSv4 default domain is: "xx.xx.xx"
          NFSv4 Domain Configuration
          &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;
          [X] Use the NFSv4 domain derived by the system
          [ ] Specify a different NFSv4 domain
    &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;
        F2_Continue    F6_HelpWhat is missing?
    I am running
    $ more /etc/release
                           Solaris 10 11/06 s10s_u3wos_10 SPARC
               Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
                            Use is subject to license terms.
                               Assembled 14 November 2006
    $Thanks in advance

    Hi
    Can you please confirm that there is no “Create A records” option under “More Actions” ?

  • SCCM 2012 Update Group inconsistency Problem with Red marked Updates

    Hi everybody,
    we have a big Problem with our SCCM 2012 R2 CU3 Enviroment, regarding of Update Groups which got out of sync.
    we have a SCCM Site Infastructure with one CAS and 4 Primary Sites and on every Site is the SUP Role installed.
    I don't know when this failure occours but i think it was after the CU3 Installation. The Installation itself went smooth without any Errors or Warnings.
    The Problem is as following. We have some updates in Update Groups (all of them are Core XML Updates) which are out of sync and marked red as an invalid Update on 2 Primary Sites. On the CAS Site and the 2 other Primary SItes they are marked as green (downloaded
    yes and deployed yes)
    We have no Replication issues regarding the Replication Status (everything is synchronized to 100%) and the Replication Link Analyzer does also show no Problems at all.
    I now deleted the Deployments and the SW Update Group waited until the replication was fine and created a new one and downloaded these patches on one of the Primary Sites which had shown this Failure.
    The Result was not good. It looks like before. On the CAS and 2 Primary Sites the Deplyment is shown as downloaded but on the other 2 Sites the Status is again Downloaded=no.
    Does anybody have any idea what to do now ? I checked objmgr.log and rcmctr. log but found nothing what shows me the way in the right direction.
    Thx for your time, and it would be fine if anybody can share knowledge about this failure and how to fix it.
    All other Ideas are also welcome.
    Thx a lot in advance and have a nice bug free day :-)
    Bastian

    Hi,
    Please try to manually synchronize software updates from the CAS and monitor the WSUSCtrl.log, WCM.log and wsyncmgr.log on the CAS and Primary sites.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Blackberry users. Any major problems with FON?

    My mobile contract is up shortly and I'm considering a Blackberry as my next phone but having a look on the web there seems to be a lot of problems with BB's & BT FON/Openzone. Does it actually work for people? I see after at least 12 months the BB app that BT, Quote: "are working on", still hasn't appeared. Is it ever likely to? Or should I stick with android? TIA

    Im not a Blackberry user, HTC Desire.
    I have seen a few posts about e-mail issues with BB, quite often we never find out whats happened, as the person who asks the Q doesnt get back with yes this worked etc.
    AFAIK there is no Fon app for BB yet - and one is not needed to sign in either, the app makes it easier.
    In general, over the last several weeks, many of us have found BTOZ/Fon much easier to find and sign into.
    To answer your Q; the Android o/s seems to have an edge over BB on the forum, and now fewer issues with BTOZ/Fon easier to use and access.
    Of course BB users with no problems dont post in to say so.
    AQ.
    "Welcome to Royston Vasey - You'll never leave."

  • Problem with iWeb domain titles

    Greetings, I'm hoping someone can help me.  I recently replaced my old website with one that I created in iweb.  However, as you can see from the screenshot, every page has a redundant and rather unnecessary title tab for the website address.  I upload to my host via FTP, and I'm wondering if that has something to do with it.  Any help is greatly appreciated.  Thanks!
    aaron

    That is perfectly normal in iWeb and if you want it to change, don't name your site with your domain name within iWeb.
    iWeb produces a sitename and you cannot leave this blank so when you publish to a local folder you get your site folder with the same name and the index.html file.
    All you need do is to re-name your site in iWeb and then publish to a local folder and just upload that new site folder with the new name.  Remember also that iWeb produces two index files, one that sits inside the site folder itself and then the other one that just points in towards the first page of the site and must sit outside the site folder.
    This is totally normal in iWeb and is nothing that you have done - just change your site name to something different and more applicable to your site and then you won't get the double domain name.

  • User and Group Recon Error with OID

    On a new development installation of OID and OIM, I am getting the following error while trying to run either User or Group reconciliations:
    LDAP: error code 53 - Function Not Implemented, search filter attribute modifytimestamp is not indexed/cataloged
    How can I add the appropriate index to allow these tasks to run?
    Kerry

    Have you tried:
    4.3 Using Custom Attributes in Oracle Internet Directory
    You can search for an attribute in Oracle Internet Directory only if the attribute is indexed. By default, standard attributes of the user and group entries are indexed. If you use a custom attribute, you can index it by using the catalog command. For example, if you migrate automount data to be used by automount programs such as amd or autofs, index the automountKey attribute by using the catalog command, as follows:
    catalog connect="connect_str" add="TRUE" attribute="automountKey"
    (from http://download.oracle.com/docs/cd/B28196_01/idmanage.1014/e12023/migrate.htm)
    Hope this helps
    Martin

  • Problem with a Domain applied to an Entity attribute

    I have created a validation domain that has the following logic in it. It is simply to check to see if the account number is in the correct format. I am trying to determine if validation domains at the entity level will serve our purpose. The custom code portion of the domain is listed below.
    /**Implements domain validation logic and throws a JboException on error.
    This code checks that the account number is in the format 99999.9999.99 July 10, 2007 mb
    protected void validate() {
    if (mData != null) {
    int length = mData.length();
    if (length < 9) {
    throw new JboException("Account Number must be at least 9 long in the format of 99999.9999 or 99999.9999.99");
    char currentChar;
    for (int i = 0; i < length; i++) {
    currentChar = mData.charAt(i);
    if (i == 5 && currentChar != '.') {
    throw new JboException("Account Number must be in the format of 99999.9999.9.");
    When I apply it to the entity object initially it works well and is listed once on the Entity Attribute Type drop down list. When I test the Application Module at the Entity level (i.e. right click the Application Module and select "test", it initially works well.
    Then without explanation, I try to click on the attribute that has this domain applied to it, and I get the following NullPointerException error with the domain listed twice on the Entity Attribute Type drop down list. I can only remove the domain assigned to the Entity Attribute in the structure pane.
    Has anyone else seen this?
    Mary
    UofW
    java.lang.NullPointerException
         at oracle.jbo.dt.ui.entity.EOAttributePanel.enableDomainFilter(EOAttributePanel.java:1142)
         at oracle.jbo.dt.ui.entity.EOAttributePanel.updateControls(EOAttributePanel.java:517)
         at oracle.jbo.dt.ui.entity.EOAttributePanel.setAttribute(EOAttributePanel.java:871)
         at oracle.jbo.dt.ui.entity.EOAttributeTabPanel.updateControls(EOAttributeTabPanel.java:202)
         at oracle.jbo.dt.ui.entity.EOAttributeTabPanel.setAttribute(EOAttributeTabPanel.java:189)
         at oracle.jbo.dt.ui.entity.EOEditAttributeTabPanel.attrValueChanged(EOEditAttributeTabPanel.java:316)
         at oracle.jbo.dt.ui.entity.EOEditAttributeTabPanel.enter(EOEditAttributeTabPanel.java:104)
         at oracle.jbo.dt.ui.main.dlg.DtuWizard.selectPage(DtuWizard.java:724)
         at oracle.jbo.dt.ui.main.dlg.DtuWizard.selectPage(DtuWizard.java:699)
         at oracle.jbo.dt.ui.entity.EOWizard.selectPage(EOWizard.java:213)
         at oracle.jbo.dt.ui.main.dlg.DtuWizard.newMddPageSelected(DtuWizard.java:745)
         at oracle.jbo.dt.ui.main.dlg.DtjMddTraversable.onEntry(DtuMddNavigable.java:266)
         at oracle.ide.panels.MDDPanel.enterTraversableImpl(MDDPanel.java:926)
         at oracle.ide.panels.MDDPanel.enterTraversable(MDDPanel.java:899)
         at oracle.ide.panels.MDDPanel.mav$enterTraversable(MDDPanel.java:106)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1348)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1216)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1210)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.jbo.dt.ui.main.dlg.DtjDialog.setVisible(DtjDialog.java:137)
         at oracle.jbo.dt.ui.main.dlg.DtjMddWizardDialog.setVisible(DtuWizard.java:2376)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.jbo.dt.ui.main.dlg.DtjDialog.showDialog(DtjDialog.java:115)
         at oracle.jbo.dt.ui.main.dlg.DtjMddWizardDialog.showDialog(DtuWizard.java:2315)
         at oracle.jbo.dt.ui.main.dlg.DtuWizard.createMddWizard(DtuWizard.java:500)
         at oracle.jbo.dt.ui.main.dlg.DtuWizard.setVisible(DtuWizard.java:321)
         at oracle.jbo.dt.ui.entity.EOWizard.setVisible(EOWizard.java:223)
         at oracle.jbo.dt.ui.main.dlg.DtuWizard.showDialog(DtuWizard.java:299)
         at oracle.jbo.dt.jdevx.ui.JdxMenuManager.invokeEOWizard(JdxMenuManager.java:970)
         at oracle.jbo.dt.jdevx.ui.JdxMenuManager.invokeEntityWizard(JdxMenuManager.java:948)
         at oracle.jbo.dt.ui.main.DtuMenuManager.doEditMenuAction(DtuMenuManager.java:1413)
         at oracle.jbo.dt.jdevx.ui.JdxMenuManager.handleDefaultAction(JdxMenuManager.java:407)
         at oracle.ide.controller.ContextMenu.fireDefaultAction(ContextMenu.java:343)
         at oracle.ideimpl.explorer.BaseTreeExplorer.fireDefaultAction(BaseTreeExplorer.java:1576)
         at oracle.ideimpl.explorer.BaseTreeExplorer.dblClicked(BaseTreeExplorer.java:1913)
         at oracle.ideimpl.explorer.BaseTreeExplorer.mouseReleased(BaseTreeExplorer.java:1934)
         at oracle.ideimpl.explorer.CustomTree.processMouseEvent(CustomTree.java:176)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    Frank:
    Thanks so much for your reply. I apologize for not saying that my JDeveloper version is 10.1.3.1.0.
    And Yes, the error is NOT in the tester, it is received when I click on the Attribute that has the domain applied to it in the Entity Object Editor in the Applications Navigator therefore locking up that Entity Object Editor.
    I can only remove the domain from that entity through the structure pane attribute editor AND when I look at the available entity attribute types drop down list, there my domain (which happens to be called UWAcctNumDomain) is listed twice with the path on my 'C' drive preceding the name. When I first created the domain, it was only listed once. Somehow it is now listed twice and that may be the cause of the error.
    I am testing the usability of domains for our purposes. We are establishing re-usable business rules for our Oracle tables and establishing them in a Entity Object jar file with all relationships, column titles, history columns, etc. We would like to define as much as possible at the Model layer so that when they are re-used, those business rules are already established and therefore this will save development time.
    The reason I used the Java Code instead of Expression Language is simply that I took an example of a formatting domain from page 311 of the Oracle JDeveloper 10g Handbook and customized it for our account numbers.
    Any input you have is greatly appreciated.
    Mary
    UofW

Maybe you are looking for