Change group uniqueID to objectGUID

Hello,
we have a portal installation based on Netweaver 2004s/Windows. We also use an corporate ADS for the user authentication. Further we use the ADS-groups to set permissions and roles for a group of users.
Because of the fact that the unique ID of the ADS group is in standard structured like this: <Principal_Type>.<Home_Data_Source_ID>.<Uniquename> i.e. USER.CORP_LDAP.uid=miller,ou=research,o=sap, it's problematic to rename a ADS-group because all assigned roles get lost.
That's why we think of using the ADS-attribute objectGUID as the uniqueID for the group.
But it is only possible to change the Uniquename. But if I do this, I cannot find any group by name search with the Identity Management.
Is it possible to change the structure of the attribute uniqueID? I can't find anything about that in the help.
Thank you!
Best Regards
Frank

Hi Alex,
Try this tcode:-    crmd_mkt_tools
Go to the "Marketing Attributes" section and there you will find relevant solution tools for your purpose.
Hope this helps.
rgrds,
Randhir Soni

Similar Messages

  • Unable to change group text name or add person to some group texts in iOS 8

    I really like the ability to change group text names as it helps me separate work group texts from personal especially when I have coworkers that have separate business phones. I'm unable to change the name of some group texts as the option is not there when I go into details. I'm also unable to add contact to the same group texts that I'm unable to change the name on. Is this a glitch or am I missing something?

    Hi CaliWingsFan,
    If you are having issues with renaming and adding users to group texts, you may want to try some things to troubleshoot.
    First, quit all running applications and test again -
    iOS: Force an app to close
    Next, I would try restarting the iPhone -
    Turn your iOS device off and on (restart) and reset
    If the issue is still present, you may want to restore the iPhone as a new device -
    iOS: How to back up your data and set up your device as a new device
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Transaction code to change group indicator & group number of a routine

    Transaction code to change group indicator & group number of a routine

    Post Author: paul.carpenter
    CA Forum: Formula
    Sorry for the ignorance.  I did a little more playing, created a group summary count, then checked it against my record count per group.
    All set now!

  • How to change group colors

    How to change group color in ical

    To change group colors:
    highlight 'desired' group,
    under <Edit>, choose <Get Info>,
    this should give you a smaller window:
              'desired' Info
              Name: desired                    Box with color choices
                                                       (dropdown colors; 'other' accesses other color palettes)
              Description: (can be added)
              Box ' Ignore alarms'
              'Publish...'                    'Cancel'                    'OK'
       4. make color choice,
       5. choose <OK> to complete color change, or <Cancel> original color remains.
    I do hope I've gotten this correct.

  • Changed group membership in WGM 10.6.3 from the 10.6 server. The change takes overnight to work. Formerly ran WGM from my 10.6.8 mac (worked perfectly)  but now I am at 10.7.5 and must use WGM on the server. Has anyone else seen this behavior?

    Changed group membership in WGM 10.6.3 from the 10.6 server. The change takes overnight to work. Formerly ran WGM from my 10.6.8 mac (worked perfectly)  but now I am at 10.7.5 and must use WGM on the server. Has anyone else seen this behavior?

    Hi
    "Changed group membership in WGM 10.6.3 from the 10.6 server. The change takes overnight to work"
    If I've understood you correctly I've never known this or anything else to take that long? What were you trying to do exactly?
    "Formerly ran WGM from my 10.6.8 mac (worked perfectly)  but now I am at 10.7.5 and must use WGM on the server. Has anyone else seen this behaviour?"
    http://support.apple.com/kb/HT1822
    HTH?
    Tony

  • How to change Group membership

    As number of VM servers we are using grows we would like to organize them into groups to simplify management (e.g. business critical, internal, test, ...).
    We are aware we can change group name (membership) using "Deploy" option. This however requires to shutdown VM, re-deploy (copy) and remove the old one.
    Is there more feasible option?
    Do I need to use Oracle Grid Control for this ?
    Thanks
    Honza

    Honza wrote:
    Is there more feasible option? Not at the moment, no.
    Do I need to use Oracle Grid Control for this ?Grid Control's VM Management Pack actually doesn't have the same group functionality that Oracle VM Manager does. If you do want to split your VMs into groups, you will have to stick to using Oracle VM Manager.

  • Change group of user in solaris

    i have a doubt as to how to change group of a user in solaris. I want to change the group of the user. Please, do the needful.
    regards

    For Oracle specific questions you can try Database forum, for OS specific ones I already addressed you Create user in solaris, and Sun has its own site as well (http://www.sun.com).

  • How do you Change Group Sort Direction using Report Client

    It looks like there should be a sort direction property on the ISCRGroupOptions object but there is none. So how do you set the sort direction of the group?

    I tried that and it did not work. Here's the code to change the grouping, note I also change the associated sort object. I did notice that if you go into the crystal reports designer and bring up the Record Sort Export and select the group's corresponding sort that the Sort Direction radio buttons are disabled. The question is how to change the sort direction shown on the Change Group Options dialog?
            public bool GroupModify(short GroupIndex, string TableName, string ColumnName, SortDirection SortDirection)
                bool result = false;
                if ((_ReportClient != null) && (GroupIndex >= 0) && (GroupIndex < this.GroupCount()))
                    CrystalDecisions.CrystalReports.Engine.Group docGroup = _ReportDocument.DataDefinition.Groups[GroupIndex];
                    ISCRField field = _ReportClient.DataDefController.FindFieldByFormulaForm(docGroup.ConditionField.FormulaName);
                    if (field != null)
                        Group group = _ReportClient.DataDefController.GroupController.FindGroup(field);
                        if (group != null)
                            Group newGroup = group.Clone();
                            newGroup.ConditionField = FieldGet(TableName, ColumnName);
                            if ((newGroup.ConditionField != null) && (_ReportClient.DataDefController.GroupController.CanGroupOn(newGroup.ConditionField)))
                                _ReportClient.DataDefController.GroupController.Modify(group, newGroup);
                                result = this.SortSet(TableName, ColumnName, SortDirection);
                return result;
            public bool SortSet(string TableName, string ColumnName, SortDirection SortDirection)
                bool successful = false;
                if (_ReportClient != null)
                    ISCRField field = FieldGet(TableName, ColumnName);
                    if (field != null)
                        ISCRSort sort = _ReportClient.DataDefController.SortController.FindSort(field);
                        if (sort != null)
                            _ReportClient.DataDefController.SortController.ModifySortDirection(sort, CRSortDirection(SortDirection));
                return successful;
            public int GroupCount()
                int count;
                if (_ReportClient != null)
                    count = _ReportClient.DataDefController.DataDefinition.Groups.Count;
                else
                    count = 0;
                return count;

  • How can I dynamically change group field column?

    Hello!
    I need to group data and create group totals for that table. Is
    it possible to dynamically change group field column for
    specific table, depending on data retreived from parameter form?
    Thanks,
    Mario.

    quote:
    Originally posted by:
    ljonny18
    Hi,
    I am using a grid within a component in my Flex application.
    I have an XML dataProvider, and I want to change the row
    colour of my Grid depending on a value coming form my dataProvider
    – but I cant seem to get this to work :(
    can anyone help / advise me on how I can dynamically change the
    colour of my grid row depending on a value coming from my XML
    DataProvider????
    Thanks,
    Jon.
    Hi,
    a few hours ago I stumbled across this cookbook entry - it
    didn't solve MY problem, but maybe it provides a way to solve your
    problem?
    http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&postId=61&product Id=2&loc=en_US
    From the article:
    quote:
    Changing the background color of a DataGrid cell is not as
    simple as changing some style because the default renderer for a
    DataGrid cell does not have a backgroundColor. Therefore, to do
    this simple task, you have to create a custom itemRenderer where
    you draw your own background in the updateDisplayList function.
    HTH
    Uwe

  • Changing group bt code

    dear all
    i need to know if there is way to change the group selection for the report
    so i can build my report dynamically
    iam using cr 7 and vb6
    please if any one know any way to change the group field by coding
    please advice

    Hi, I did not worked on VB.
    But you can certainly get help from following link.
    It talks about changing group condition field dynamically in .Net (I guess VB).
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313338333233323334%7D.do|changegroup]
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313338333233323334%7D.do
    --Kuldeep

  • ITunes sync doesn't recognize changed groupes in Address Book

    iTunes sync doesn't recognize changed groupes in Address Book. What to do?
    I've cleared All Contacts on the iPad2 so it is blank now. I want to sync just a particular new group which is the combination of two former groupes which didn't sync correctly.  

    To be more clear (in hopes you can get it to work!) :
    Under Mail -> Preferences -> Composing
    1. Be sure to CHECK the box that says autocomplete addresses under the Addressing heading.
    2. Quit Mail and restart.
    If that doesn't work then I would suggest quitting Mail and trashing the Preference file (~/Library/Preferences/com.apple.mail.plist). Then restart Mail and make sure the box is checked as above and restart Mail. Note that all preferences will be reset to the default and you may need to reconfigure Mail the way you like it. You can always drag the plist file back and restart Mail.app to restore your previous settings.
    Ed

  • FSL-04017 Unable to change group. ID: 505. Operation not permitted

    while i'm installing Solution manager 4.0 with oracle 10g in linux enterprise 4,after the 23rd phase which is "install instance basics" i recived the following error
    INFO 2007-06-25 12:02:25
    Working directory changed to /tmp/sapinst_exe.3484.1182753067.
    INFO 2007-06-25 12:02:25
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO 2007-06-25 12:02:25
    Working directory changed to /tmp/sapinst_exe.3484.1182753067.
    INFO 2007-06-25 12:02:25
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO 2007-06-25 12:02:26
    Working directory changed to /tmp/sapinst_exe.3484.1182753067.
    INFO 2007-06-25 12:02:26
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    WARNING[E] 2007-06-25 12:02:26
    FSL-02015 Node /proc/sys/kernel/cad_pid does not exist.
    WARNING[E] 2007-06-25 12:02:26
    FSL-02015 Node /proc/sys/kernel/cap-bound does not exist.
    WARNING[E] 2007-06-25 12:02:26
    FSL-02015 Node /proc/sys/fs/binfmt_misc/register does not exist.
    INFO 2007-06-25 12:02:27
    Copied file '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/inifile.xml' to '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/inifile.14.xml'.
    INFO 2007-06-25 12:02:27
    Copied file '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/inifile.xml' to '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/inifile.15.xml'.
    INFO 2007-06-25 12:02:40
    Copied file '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/keydb.xml' to '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/keydb.8.xml'.
    INFO 2007-06-25 12:02:41
    Execute step createInstanceDirectories of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0.
    INFO 2007-06-25 12:02:55
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO 2007-06-25 12:02:55
    Working directory changed to /tmp/sapinst_exe.3484.1182753067.
    INFO 2007-06-25 12:02:55
    Working directory changed to /tmp/sapinst_exe.3484.1182753067.
    INFO 2007-06-25 12:02:55
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO 2007-06-25 12:02:55
    Creating instance directories for instance IND/DVEBMGS00...
    INFO 2007-06-25 12:02:56
    File system node /usr/sap/ccms/IND_00 exists already. Nothing to do.
    INFO 2007-06-25 12:02:56
    File system node /usr/sap/IND/put exists already. Nothing to do.
    INFO 2007-06-25 12:02:56
    Account indadm already exists.
    INFO 2007-06-25 12:02:56
    Account 507 already exists.
    INFO 2007-06-25 12:02:56
    Account 507 already exists.
    INFO 2007-06-25 12:02:56
    Account sapsys already exists.
    ERROR 2007-06-25 12:02:56
    MUT-03025 Caught ESyException in Modulecall: Could not set effective group. Operation not permitted.
    ERROR 2007-06-25 12:02:56
    FSL-04017 Unable to change group. ID: 505. Operation not permitted
    ERROR 2007-06-25 12:02:56
    FCO-00011 The step createInstanceDirectories with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|createInstanceDirectories was executed with status ERROR .
    thks & Rgds
    George Varghese

    Hi
    Well, it is not advised to do it manually, the logged in user (sidadm)
    should have the permissions, the reason being it is required at several points of time and with several folders..
    However, for learning purpose, here is the syntax to be given in command line-
    chgrp -R groupname <directoryName> (for all subdirectory - recursive)
    I gave this jsut to cross verify, please assign the access rights (add to admin group) and then continue installation,
    Revert for queries,
    Cheers
    Senthil

  • [svn] 4547: Change Group's measured minimum size computation.

    Revision: 4547
    Author: [email protected]
    Date: 2009-01-15 16:23:22 -0800 (Thu, 15 Jan 2009)
    Log Message:
    Change Group's measured minimum size computation.
    In this change:
    If a Group clips content or resizeMode is scale, then measured minimum is zeroed out.
    QE Notes: A couple of FxContainer and FxDataContainer tests will fail. Other tests that depend on measured minimum size of a Group with clipContent="true" or resizeMode="scale" will fail and need to be updated.
    Doc Notes:
    Bugs: None
    Reviewer: Hans
    tests: compile, checkintests, mustella (gumbo/core/..., gumbo/components/FxContainer, gumbo/components/FxDataContainer)
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxContainer.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxDataContainer.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/GroupBase.as

    FYI - This regression has been filed here: http://bugs.adobe.com/jira/browse/SDK-31989

  • Com.apple.alf.plist file keeps changing group membership

    Hey All, I've read several discussions about this issue.  The com.apple.alf.plist file keeps changing group membership from admin to wheel.  Disk Utility repair changes the group membership to admin but it will change back to wheel during normal use of the computer, it seems that accessing systempreferences.app and security preferences will change the group to wheel. 
    I don't really want to get into a discussion about the wheel account, unless necessary, but since this is a very important system settings file I'd like it to work correctly.  I have noticed several issues with the firewall not responding as expected such as turning off by itself, and app settings changing or disappearing from the security preference pane.  So, I have deleted the plist file and restarted as recommended on other discussions but the issue always returns during normal use.  I think it might be the application owning the plist file causing the issue, but I am not sure which one owns the plist file.  I assume it would be systempreference.app since I think it is a firewall plist file. The permissions for systempreferences.app is strange also; 
    - everyone - custom
    - system    - read/write
    - wheel      - read/write
    - everyone  -read
    This may be the culprit but I tried to make a minor change, so as not to mess up the operating system, and disk utility repair permissions just puts it back the way it was.   Any ideas about this would be very appreciated.
    Note:  I have done a complete system reinstall and the issue still returns.

    OK, Since I haven't gotten any responses about this it must be a complicated issue.  Just as a quick check could some of you good people out there look at the "Get Info" window for the systempreferences.app and see if your permissions look like mine?  I'm still having trouble with the firewall settings not acting as expected such as apps and processes that I have approved/denid connection access not showing up in the firewall pane of system preferences and having to reapprove each startup.  Thank you in advance for any help on this.

  • Changing group names (5.x)

    We are using ADAWS in a version 5 portal. We need to change the names of some groups in Active Directory (AD). To test this, I changed one group name in AD and ran the AWS and PWS synchronizations. It appears that the group is still synchronized; however, the name of the group in the portal did not get changed. It still has the old name.
    Will I have to manually change the group names in the portal to match the new AD names? It appears that after creation, Active Directory and the portal deal with groups only on the basis of objectGUID/AUTHUNIQUENAME and memberships, not the Active Directory "CN", "name", or "sAMAccountName" entries. (We have set "Group Name Attribute" to "CN" in the PWS Agent Configuration.) ---Ken

    I doubt this will help you in the short term, but I would encourage anyone developing portlets to use portal "Activity Rights" to check for whether a user should be allowed to do things rather than just checking for a specific group name. Activity Rights are exactly what they sound like: the right to do something, but basically, they are just a named key that is attached to a group (or several groups). The EDK provides a simple call to check if a person has any specific Activity Right.
    The advantages of Activity Rights are that: they can be managed in the portal; they can be assigned to multiple groups, and removed from all groups; the portlet doesn't need to hard code a Group name, just the Activity Right key value; Activity Rights are migratable objects, which means that (unlike object ids) they can be migrated and checked by the same code in Dev, Test, and Prod systems.

Maybe you are looking for