LDAP OID Distinguished Name for Groups

Hi, Can I use another "Distinguished Name for Groups" in LDAP (OID) configurazion in BIP Admin?
Watching the user guide http://download.oracle.com/docs/cd/B40078_02/doc/bi.1013/b40017/T421739T475591.htm#T434695
Distinguished Name for Groups
For example: cn=Groups, dc=us,dc=oracle,dc=com
The default value is cn=OracleDefaultDomain,cn=OracleDBSecurity,cn=Products,cn=OracleContext,dc=example,dc=com
If a try to use the dn cn=RoleNames,cn=SIM,dc=example (instead of "example" I use the real name of dc), LDAP integration doesn't function.
Do you know why?
Thank you,
R.

Hi
We're facing a similar issue in our environment in that users authenticate with their SAMAccount names, which are FirstInitial+Lastname, eg. jdoe (John Doe). LDAP requires us to use the full DN name in certain domains (not all) to login, which is rather irritating.
There are several domains. In windows we all login with the samaccount name, which follows the same principle for everyone. So DomainXYZ\jdoe .
In LDAP though, it appears that for DomainABC it needs CN=John Doe, whereas for DomainXYZ it will accept CN=jdoe etc.
Would you mind elaborating on how you managed to search LDAP for your purposes? I hope to get some insights in how to use the package dbms_ldap, because I'm rather new to APEX and with a growing userbase I'd like to move away from Apex user accounts.
Thank you
Tom

Similar Messages

  • Wrong Distinguished Name for SAP-Router

    Hello Everybody,
    I have a Problem about the Distinguish name of my sap router.
    The Problem, when I go to sap to look for my Distinguish name and therefore to generate the saprouter certificat.
    I found something totally wrong :
    e.g. CN=SAProuter, OU=0000755120, OU=SAProuter, O=SAP, C=DE
    but it muss be like this e.g. CN=Routi, OU=0003380660, OU=SAProuter, O=SAP, C=DE
    How can I change this, I don't want to start my saprouter with the wrong Distinguish name.
    Thanks in Advance.
    Best Regards,
    Kais

    Hello,
    Is your SAPRouter in the DMZ ?
    In that case, you have to open the firewall port.
    Regards,
    Abhilash

  • Renaming Artist name for groups of songs.

    I listen to a lot of classical music. Here the artist name, composer name, and album name can all be screwed up between different music companies where one uses one company uses one field for the artist name and another for the composer name. The other problem is that the composer's names are always spelled differently for the same composer, where one uses "Mozart", another "W. A. Mozart", etc.
    So the problem is I need to rename an entire album's list of composer names at once when I import a CD to my iPod. Is ther a way to do that other than copy and paste the desired new name in each track?

    Select all the songs you want then right click - get info.
    Anything in the boxes will be copied to every song selected.

  • Names for groups

    I have several contacts that are in more than one group.  Do I need to have the name listed but once in "all Contacts"?  I.e.  Mary Smith is in  3 groups, should her name be in all contacts more than once?

    No. The main list will allow you to group contacts any way you want, as often as you want.

  • How to give alias name for group of columns.

    the below is the query to get Columns. But, i need to make single alias name to all the column which i get. I need to get column names also event, domain, entity, bpdid. Above columns should be under single alias name like 'baseMessage'. Please advise on this.
    select (select decode(ICKD_CHR_KY1_ID,'I','New','D','Cancelled','U','Modified') from ICKD where ICKD_APLN_ID = 'CSTCOM' and ICKD_NUM_KY1_ID = 1438227010) event, 'Client' domain, 'CustomerCommunication' entity, 'General' scope, (select ICKD_NUM_KY6_ID from ICKD where ICKD_NUM_KY1_ID = 1438227010 and ICKD_APLN_ID = 'CSTCOM') bpdId from dual;

    ; WITH CTE AS (
        SELECT Case When  sum(b.targetTotal) > 0 then  Sum(b.targetTotal)  
                          else 0
               end as Profttarget,
               Case When  sum(a.salestotal) > 0 then  Sum(a.salestotal)  
                          else 0
               end as Sales,
               Case When  sum(a.salescost) > 0 then  Sum(a.salescost)  
                    else 0
               end as SalesCost
        From  Sales A
        JOIN  Target B A.salesdate = B.salesdate
    SELECT Profttarget- ( Sales - SalesCost ) as TargetRequired
    FROM   CTE
    This gives you a query that runs in SQL Server.
    But it does not look right to me. I don't know what the keys of these tables are, but is it really salesdate in both? And even if it is, the join still looks strange.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Configuring WebLogic 8.1 for Oracle LDAP - OID

    I know this may not be the right place to post this question but I'm totally lost. I am not getting any resources on the net or on the bea forum. I hope I get something valuable from this forum :-)
    We need to configure WebLogic Server 8.1 SP2 for OID/Oracle LDAP. Unfortunately for us built in config are available for MS Active Dir Service, Open LDAP, etc but not for Oracle LDAP. :-(
    Can some one please throw some light on this topic. Does oracle have any downloadable to bridge the gap?
    Thank You in advance. :-D.
    Regards,
    Yazad Khambata

    You should use a controller servlet which forwards to the correct JSP. Then the JSP name is not displayed in the address bar.
              With 8.1 you simply could use a Java pageflow to link several JSPs.
              Generated URLs in the browser will look like
              http://localhost:7001/sampleportal/newpageflow1/test.do;jsessionid=BFssBfmdv4Ly1GDG7gJNZH1d3s2ShJG2qpG4KJJMVvSf0JdyG2nQ!1118879021

  • Retrieving user detail, group name for all users

    Hi,
    How can I retrieve User name, email, authentication, user group name
    for all users using SDK.
    It is possible to create this report in webi or CR?
    Thank you for reply,
    Gregor

    Use the following code to retrieve this information:
    IInfoObjects users = oInfoStore.query("select * from ci_systemobjects where si_kind='user'");
    for (int i=0; i<users.size(); i++)
             IUser user = (IUser)users.get(i);
             // user.getTitle(); for user name
             // user.getFullName(); for user's full name
             //  user.getEmailAddress(); for user's email address
             //  for authentication type:
             IUserAliases alises = user.getAliases();
             for(int j=0; j<aliases.size();j++)
                       IUserAlias alias = alises.get(j);
                       // alias.getAuthentication() for authentication associated with this alias, since same user can have more than 1 authentication. e.g. Enterprise and Ldap.
             // for user group memberships:
             java.util.Set groups = user.getGroups();        
             // the groups Set object will contain SI_ID of all the user groups that this uses is member of. You need to query by the SI_ID of the usergroup to get the group names.
    //  e.g.
    //    oInfoStore.query("select si_id, si_name from ci_systemobjects where si_kind='usergroup' and si_id in (a,b,c....)");
    where a,b,c are the SI_IDs of the usergroups.
    To create a report based on the above fetched data, there are several methods such as:
    you can use Java resultset where in you create the report structure in designer and push the data at runtime using java result set objects. Another way is to push this info in Excel or Access and design your report based on that excel\access.

  • Possible to hide Grouping name for certain tracks only?

    I am organising my classical music library and using the Grouping column with good success.
    However, it would be visually better to be able to hide the Grouping name for the subsequent movements of a piece. For example in a Dvorak album:
    ..Grouping*.............................*Name
    1.Cello Concerto in B minor.1.Allegro
    2...........................................2.Adagio
    3...........................................3.Allegro moderato - Finale
    4.New World Symphony........1.Adagio
    5...........................................2.Largo
    6...........................................3.Scherzo
    7...........................................4.Allegro con fuoco

    I have never used the shuffle by groupings feature, but I would think it would be affected.
    You need to experiment and decide how important shuffle by grouping is compared to the appearance in the iTunes Library.
    iTunes is not good at dealing with classical music and you will find a lot of discussion of the problem with Google.
    Here is an example:
    http://www.till.com/blog/archives/2008/09/classical_itune.html

  • How to find the group name for a section programatically?

    I have these display formulas that are being repeated in each group footer.  The only thing that changes are the group names.
    How can I find the group name for the current section?
    The bolded(or starred) items are what I'm trying to create a generic function for.
    Ontario
         Bob
                   1000     Sales     Other
                   2000     Random     Billing
                   200     Phone     Billing
         *Total for Bob*      3200
         Sally
                   2000     Sales     Client
                   1000     Random     Billing
                    300     Cell     Billing
         *Total for Sally* 3300
    *Total for Ontario*       6500
    Thanks in advance,
    J

    I'm not sure if the GroupingLevel or GroupNumber fuctions will help.  (There description in the on-line help leaves much to be desired, IMHO...)
    If not, you could try adding formula fields to each level that sets a global variable to tell your other formula fields what level it is on.  If you only have one or two other formulas, and only one or two groups, this really wouldn't be a whole lot easier.  But if you had a lot of groups or a lot of formula fields that you want to make "group independent" it could help.
    So for each footer, create a formula field like (basic syntax):
    WhilePrintingRecords
    global geoupLevel as String
    groupLevel = "Province"
    formula = ""
    (changing the name given to groupLevel for each footer).  Then in your "generic" formula you could put something like:
    WhilePrintingRecords
    global groupLevel as string
    select case groupLevel
      case "Province"
        formula = "Total for " + {Province}
      case "Name"
        formula = "Total for " + {Name}
      else
        Formula = "Totals"
    end select
    HTH,
    Carl

  • Object Name for Release Group

    All,
    Can anyone please tell me the object name for Release Group ?
    regards

    Hi Sandeep,
    for what you are looking for object name of release group.???
    If you want to add release group in Authorization profile,it is not possible.
    You can add Release code in authorization profile...not release group.
    If you have any specific requirement,please let me know.
    Regards,
    Manish.
    If ans is usefull,don't forget to reward.

  • After LDAP failure rebuild I cannot turn on Wiki for group

    Our LDAP database died today so I converted the Open Directory Master to Standalone then back to an Open Directory Master and rebuilt our users and groups. No settings were changed in the Web section of the server. But now I cannot choose anything from WorkGroup Manager -> (Group) -> Basic -> Enable the following services for this group on: It only offers me "(None)" and not our site.
    I removed the site from the Web settings and made a new one, still the same behavior.
    I feel like I'm missing something obvious, can anyone point me in the right direction?
    OS X Server version 10.5.6

    Hi,
    If you rebuilt the LDAP and ensured the UIDs are the same for groups as before, it seems rebuilding the connection with web service is not complete.
    I have had to do the following after some upgrades:
    If you have your groups listed in the website under Web Services /Services for Groups then remove them, restart web service (or teams), reinstall the groups in the Services for Groups and again restart web service. Then Enable the services for each group in WGM.
    HTH,
    Harry

  • Mail adopts group name for "To" & "From"

    My wife's Mail app (on MBA running Yosemite) adopts one of her Contacts group names  for the "To" with incoming mail and for the "From" with outgoing mail i.e., her name or email address don't display, the group name displays. I looked at her contacts and the group and saw that she had herself in the group so I took her out but to no avail. I then clicked on the drop down of the group name displayed in the "To" and selected the "Remove from ..." Option. But to no avail.
    Any ideas as to what is causing this would be appreciated.

    Does the Previous Recipients List have anything to do with this? If she sends an email to a group (her book group) in which she is also listed, would Mail then display the group name in the "TO" instead of my wife's name? Or if the email is from someone on the group list, display the group name instead of the sender's name?
    I'm just apply some possible logic as to how this app might be wired wrong...I've seen the posting on grouping unrelated emails in "conversations" which seems to me to be a coding bug.
    Manage email addresses in the Previous Recipients list
    Mail keeps a list of the email addresses you send messages to, and uses the list to suggest or complete addresses for you when you send email. You can delete obsolete or incorrect addresses from the list so Mail stops suggesting them, and use the list to quickly see or add people in the Contacts app.
    Choose Window > Previous Recipients.
    Do any of the following:
    Sort the list: Click a column header.
    Search for a name: Enter the name in the search field.
    Show recipients in Contacts: Double-click a name. A card icon precedes names that are already in Contacts.
    Add recipients to Contacts: Select a name, then click Add to Contacts.
    Remove recipients from the list: Select one or more names, then click Remove From List.

  • NLS ISO88595 support for ldap OID C API

    Please Help!
    How to order from Oracle Internet Directory C API to process single byte
    string (ISO-8859-5) instead of
    Unicode string ( in input and output parameters values ) ?
    #include <ldap.h>
    char* base ="cn=�������_�����, cn=com"; /* in ISO */
    ldap_search_s(ld , base .... ); /* not detecting base with russian word */
    How to switch NLS ISO support for ldap OID C API ?
    If any other approach to solve it problem?
    (for example in Oracle OCI C API it solved by setting client NLS_LANG
    environment variable .
    In my case NLS_LANG not working)

    UP plz

  • Changing MS Cluster Group name for ECC 5

    Hi,
    Is it safe to change the MS Cluster Group name for ECC 5 cluster after installed?
    If not is there a safe way to do it?
    Thanks in advance,
    Roey

    Hi Roey,
    There must be no problem in renaming th cluster group
    Please refer to follwoing link:
    http://www.eggheadcafe.com/software/aspnet/32064632/rename-exchange-cluster-g.aspx
    The procedure of doing is mentioned here
    http://technet.microsoft.com/en-us/library/cc757533.aspx
    Make sure you keep following points in mind:
    1. Make sure you have a full backup of SAP
    2. Bring cluster groups offline and then rename them and then bring up the cluster group
    I hope there will be no issue
    Rohit

  • Account Group Name for Vendor

    For account group name the field is KTOKK , there is a name that goes with this which is the field Txt30.
    Can someone tell me what table this belongs so I would be able to use it in a join. I can only find the Pooled Table that it belongs to.
    Thanks,
    Evan

    Hi Evan,
    Field Name for Vendor Account Group Name is TXT30 and it will store in Table T077Y
    Reg,
    Ashok
    Close this thread, If answered.

Maybe you are looking for

  • Logical standby as read only

    we are using 3 node RAC in 10g R2 and we have been requested to create one physical(for DR) and one logical standby(for reporting) for the primary database.we created both successfully. everything worked fine until i opened the logical standby databa

  • SuperDrive making noise or lagging

    Hello, My SuperDrive is slow at reading/playing DVDs and/or makes "reading" noises. The playback is choppy and pixelated. I have never experienced this before. All playback was pristine and crisp until recently. I have not installed or done any upgra

  • Migrating to new machine - time for a new library?

    I am going to be setting up my new iMac (24-inch 3.06 GHz, 4GB Ram, 1TB HD) over the weekend. I have a VERY large iTunes library, over 50,000 items. I find that using iTunes on my current system (Powerbook G4, 17-inch, 1.67 GHz, 2GB Ram) is very slug

  • Faulty Sales order

    A sales order was wrongly entered in the sales , and the billing has been done. Now I have reversed the billing document and the order is not allowed to be deleted because of subsequent items. Now the order I have given the reason for rejection. But

  • Design structure for systematized backup - Pt. 1

    Introduction: I am planning to set up a system for regular back up of my wife's G4 (mirrored drive door). It originally came with both System 9 and System X all mixed together on the internal hard drive. We can choose which system to boot into in Sta