Remove custom attribute labels

Hi.
Does anybody know how remove the custom attribute labels on a page.
Thanks
Portal version 9.0.2.6.18 and 9.0.4.0 (10g)

Try below:
http://www.harbar.net/archive/2012/07/23/sp13adi.aspx
http://social.technet.microsoft.com/Forums/office/en-US/d183d133-7fdd-4053-a2ef-dd09b892bf33/error-when-i-get-the-custom-property-an-administrator-must-create-this-property-in-the-profile?forum=sharepointdevelopmentprevious
 This error indicated that the property is not exist in the UserProfile properties. I think you need first to check out the "ZipCode" has been created in your default user profile.
Create custom profile property:
http://technet.microsoft.com/en-us/library/cc262327.aspx#create
In code, it is a good practice to make sure the specific property whether it exists or not.
SPSite site = new SPSite(SPApplicationRootUrl);
SPServiceContext serviceContext = SPServiceContext.GetContext(site);
UserProfileConfigManager profileConfigManager = new UserProfileConfigManager(serviceContext);
ProfilePropertyManager profilePropertyManager = profileConfigManager.ProfilePropertyManager;
CorePropertyManager corePropertyManager = profilePropertyManager.GetCoreProperties();
CoreProperty coreProperty = corePropertyManager.GetPropertyByName("ZipCode");
if (coreProperty != null)
Also you can try to create your custom property in code behind:
http://www.sharemuch.com/2010/03/30/how-to-create-custom-sharepoint-2010-user-profile-properties-programatically/
Hope this can help. 
If this helped you resolve your issue, please mark it Answered

Similar Messages

  • Remove Obsolete Attribute Discovery in SCCM2012

    I have SCCM 2012 and Windows 2008 R2, I create custom attribute on AD for my Computers, on Discovery Properties of my SCCM I added my custom attribute and can see on properties of my computers on SCCM.
    I want delete custom attribute of properties the computers of SCCM, I remove custom attribute on Discovery Properties but still showing on my computers.
    My question is, How to Delete custom attribute of computers on SCCM?
    Thanks.

    Not sure about this one, but I would think it will be removed when the maintenance task
    Delete Aged Discovery Data runs. Otherwise you could also remove the object and rediscover it, but in that case you'll loose deployment information about the object.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • How can I add a custom attribute to a catalog area? (CRM Isa Sales)

    Gents,
    How can I add a custom attribute to a catalog area? (CRM Isa Sales)
    Actually I would like to use the Catalog Area Type (maintained in trx COMM_PCAT_ADM on Catalog Area Header level). This field doesn't seem to be available in J2EE webshop. (The field documentation says it is for documentation purposes only so I don't expect it to be transferred).
    As this field is not readily available, I would like to add is as an attribute to the Catalog Area. BADI's PCAT_IMS_FEED_ATT and PCAT_IMS_FEED_VAL seem to indicate that it should be possible to add additional fields not only on product level, but also on Area level:
    Example implementation code:
    method IF_EX_PCAT_IMS_FEED_ATT~READ_NEW_FIELDS.
    * Example, how to add new attributes to a indexcategory
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' carries the attributetype ('S'tring, 'I'ntegar or
    * 'F'loat)
    * Structure 'IS_OBJECTS' carries actuall identifiers
      data: ls_fields        type comt_pcat_ims_feed_ux.
      case iv_level.
        when 'C'.                        "Category Level
    *     no new field
        when 'P'.                        "Product Level
          ls_fields-field = 'CUSTOMER_EXIT_FIELD'.
          ls_Fields-value = 'S'.
          append ls_fields to ct_fields.
    *     exproduct fields
          ls_fields-field = 'REMAN_ABL'.
          APPEND ls_fields TO ct_fields.
          ls_fields-field = 'EXCH_BUS'.
          APPEND ls_fields TO ct_fields.
      endcase.
    endmethod.
    However, when I create an implementation and add some code in the when 'C' part, the attributes do not seem to get transferred. (I've checked in the debug mode of the developer studio).
    - My example code:
    METHOD if_ex_pcat_ims_feed_att~read_new_fields.
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' contains the attributetype
    * ('S'tring, 'I'ntegar or * 'F'loat)
      DATA:
      ls_fields LIKE LINE OF ct_fields.
      CASE iv_level.
        WHEN 'C'.                        "Category Level
          ls_fields-value = 'S'.
          ls_fields-field = 'ZTEST'.
           APPEND ls_fields TO ct_fields.
        WHEN 'P'.                        "Product Level
      ENDCASE.
    ENDMETHOD.
    and:
    METHOD if_ex_pcat_ims_feed_val~read_new_fields.
      CASE iv_level.
        WHEN 'C'.
         ls_fields-field = 'ZTEST'.
         ls_Fields-value = 'Value 1'.
         append ls_fields to ct_fields.
        WHEN 'P'.
      ENDCASE.
    ENDMETHOD.
    In the ABAP debugger, I can see that my code is touched during initial and delta replications, however, after replication, the fields do not show up in the Java debugger.
    Any ideas?
    regards,
    Wilco Menge

    Hi,
    How can I customize the /bin/wcmcommand or how can I make use of [2] to create a custom WCMCommand?
    I think the "formUrl" is to post those input value to the jcr repository?
    var createDialog = {
            "jcr:primaryType": "cq:Dialog",
            "id": CQ.Util.createId("cq-createdialog"),
            "title":CQ.I18n.getMessage("Create Page"),
            "formUrl": CQ.shared.HTTP.externalize("/bin/wcmcommand"),
            "params": {
                "cmd":"createPage",
                "_charset_":"utf-8"
    I have added a field called "starred"
    Moreover, when I using the firebug to trace the post command, I can see that the starred value is posted also.
    :status
    browser
    _charset_
    utf-8
    cmd
    createPage
    label
    b
    parentPath
    /content/keyword_elaboration
    starred
    c
    template
    /libs/collab/commons/templates/form
    title
    a
    Source
    cmd=createPage&_charset_=utf-8&%3Astatus=browser&parentPath=%2Fcontent%2Fkeyword_elaboration&title=a&label=b&starred=c&template=%2Flibs%2Fcollab%2Fcommons%2Ftemplates%2Fform
    However, when I go to the crxde to view the node's attribute, the properity starred is not created
    Are there anything I did wrong or missing?
    Thanks.
    Message was edited by: aslkit

  • How can I add a custom attribute to the create page dialog?

    I followed the following link to add a custom attribute called starred and this attaribute can be displayed in siteadmin grid
    http://dev.day.com/docs/en/cq/current/developing/customize_siteadmin.html
    I would like to let the user input the value when they create a page. That's why I would like to add a custom field in the input dialog box as attached pic.
    The method you describe before can only added those CQ bulid-in attribute.
    For those custom attribute, how can I added it?

    Hi,
    How can I customize the /bin/wcmcommand or how can I make use of [2] to create a custom WCMCommand?
    I think the "formUrl" is to post those input value to the jcr repository?
    var createDialog = {
            "jcr:primaryType": "cq:Dialog",
            "id": CQ.Util.createId("cq-createdialog"),
            "title":CQ.I18n.getMessage("Create Page"),
            "formUrl": CQ.shared.HTTP.externalize("/bin/wcmcommand"),
            "params": {
                "cmd":"createPage",
                "_charset_":"utf-8"
    I have added a field called "starred"
    Moreover, when I using the firebug to trace the post command, I can see that the starred value is posted also.
    :status
    browser
    _charset_
    utf-8
    cmd
    createPage
    label
    b
    parentPath
    /content/keyword_elaboration
    starred
    c
    template
    /libs/collab/commons/templates/form
    title
    a
    Source
    cmd=createPage&_charset_=utf-8&%3Astatus=browser&parentPath=%2Fcontent%2Fkeyword_elaboration&title=a&label=b&starred=c&template=%2Flibs%2Fcollab%2Fcommons%2Ftemplates%2Fform
    However, when I go to the crxde to view the node's attribute, the properity starred is not created
    Are there anything I did wrong or missing?
    Thanks.
    Message was edited by: aslkit

  • UWL refresh problem for ABAP BOR custom attributes

    Hi all,
    we are facing an issue with an UWL iView. We wanted to display custom attributes from an ABAP Business Object (ABAP_BOR).
    The feature is working but when an end-user receives a new task in his UWL view, he needs to click on the refresh button in order to have all the custom attributes correctly displayed.
    We have only the problem with custom attributes, for the columns containing standard workflow decision task attributes, the data are displayed directly without the need to push the refresh button.
    We are on EP 7 SPS11 and the back-end is an ECC6 version.
    We have followed the methodology described in the How to configure and customize the Universal Worklist pdf document:
    ABAP BOR
    <CustomAttributeSource id="ABAP_BOR"
    objectIdHolder="externalObjectId"
    objectType="FORMABSENC"
    cacheValidity="final">
    <Attribute name="COSTCENTER" type="string"
    displayName="Cost Center"></Attribute>
    <Attribute name="FIRSTDAYOFABSENCE" type="date"
    displayName="First day of absence"></Attribute>
    <Attribute name="LASTDAYOFABSENCE" type="date"
    displayName="Last day of absence"></Attribute>
    </CustomAttributeSource>
    Do you have an idea where this problem come from and how it could be solved?
    Thanks in advance and regards,
    Sébastien BODSON

    Hi Chintan,
    This parameter has no impact on the problem we face. I found an exact description of our problem on SAP Help portal, in the UWL pages:
    CustomAttributes, CustomAttributeSource and Attribute
    Extract from SAP Help portal:
    Every item type can have custom attributes defined, which can be filled from Business Object or Provider Data Containers like the Business Workflow Container or the Alert Container. These attribute sources are defined within the CustomAttributeSourcetag, which contains information on which attribute connector brings the custom attributes, how to identify these custom attributes in the provider system and how long the cache is valid.
    Note that once an item arrives, these custom attributes are retrieved in additional calls to the backend. For performance reasons, in order to minimize responses times to the end user, this may happen while the item is displayed to the end user - causing such attributes to be empty initially and only to appear in subsequent requests.
    The display names of the attributes for column headers and labels are defined in the display attributes of the default view of the item type.
    Does anyone know a workaround in order to have directly the complete information displayed?
    Sébastien BODSON

  • Profile customized attribute is not working?

    Hi,
    I downloaded ‘WCSpacesExtensions’ project from Oracle because I want to add some customize attributes to Profile. I added ‘project’ to ExtendedProfileAttributes.java, and created getter and setter methods. In a jsff, this is my EL #{wcProfileCustomAttribute['securityContext.userName'].project}. The setProject() sets up the attribute, but when getProject() is invoked, ‘project’ is returned as NULL.
    Every time the jsff page references the attributes via EL, it creates a new instance ExtendedProfileAttributes obj. because you can see it calls the constructor over and over. It saves value of ‘sip’ (=> setSip():12345), but when trying to read its value, it's NULL (=> getSip():null). So, I can't read and save the attribute per user.
    Any feedback is greatly appreciated.
    .jsff page
    <mds:insert after="oliplam3" parent="olipfl1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <af:panelLabelAndMessage xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    label="*Sip" id="splam2">
    <af:inputText xmlns:af="http://xmlns.oracle.com/adf/faces/rich" id="sit1"
    value="#{wcProfileCustomAttribute[(pageFlowScope.userId == null ? securityContext.userName : pageFlowScope.userId)].sip}"/>
    </af:panelLabelAndMessage>
    </mds:insert>
    <mds:insert after="splam2" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <af:panelLabelAndMessage xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    label="*Proj" id="splam3">
    <af:inputText xmlns:af="http://xmlns.oracle.com/adf/faces/rich" id="sit2"
    value="#{wcProfileCustomAttribute[(pageFlowScope.userId == null ? securityContext.userName : pageFlowScope.userId)].project}"/>
    </af:panelLabelAndMessage>
    </mds:insert>
    ExtendedProfileAttributes.java
    package custom.webcenter.spaces;
    import oracle.adf.share.logging.ADFLogger;
    * This is a sample class for profile extension
    * Add getter (and setter if you need to save)
    * for any new custom attribute.
    * New attriutes defined here can be acessed
    * via EL like
    * #{wcProfileCustomAttribute['smith'].sip}
    * in the jspx/jsff.
    public class ExtendedProfileAttributes
    private String sip;
    private String project;
    public ExtendedProfileAttributes(String profileID)
    // Query from custom attribute source and cache them
    //project = profileID + "'s Project";
    //mSIP = profileID + "'s SIP address!!!***";
    //mStreetAddress = profileID + "'s street address";
    System.out.println("ExtendedProfileAttributes(). user:" + profileID);
    System.out.println("ExtendedProfileAttributes(). sip:" + sip + " project:" + project);
    public void setSip(String s) {
    this.sip = s;
    System.out.println("=> setSip():" + this.sip);
    public String getSip() {
    System.out.println("=> getSip():" + this.sip);
    return this.sip;
    private static String CLASS_NAME = ExtendedProfileAttributes.class.getName();
    public void setProject(String project) {
    this.project = project;
    System.out.println("=> setProject():" + this.project);
    public String getProject() {
    System.out.println("=> getProject():" + this.project);
    return project;
    DEBUGGING:
    ===========
    ExtendedProfileAttributes(). user:securityContext.userName
    ExtendedProfileAttributes(). sip:null project:null
    => setSip():12345
    ExtendedProfileAttributes(). user:weblogic
    ExtendedProfileAttributes(). sip:null project:null
    => setProject():333
    <Feb 24, 2012 11:24:57 AM EST> <Warning> <oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer> <ADF_FACES-60099> <The region component with id: T:wcCmdLinkGSSwit:spaceSwitcherComp:crtGS has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.>
    <Feb 24, 2012 11:24:57 AM EST> <Warning> <oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer> <ADF_FACES-60099> <The region component with id: T:spcNavPanel:dc_r3 has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.>
    ExtendedProfileAttributes(). user:weblogic
    ExtendedProfileAttributes(). sip:null project:null
    ExtendedProfileAttributes(). user:weblogic
    ExtendedProfileAttributes(). sip:null project:null
    ExtendedProfileAttributes(). user:weblogic
    ExtendedProfileAttributes(). sip:null project:null
    => getSip():null
    Thanks a lot.

    Hi,
    if this is a WebCenter specific issue, they do have their own forum on OTN: WebCenter Portal
    Frank

  • How to implement for coherence*web to remove an attribute of a specific sessionid?

    Hi,
    Customer using coherence*web 3.6 wants to remove an attribute in NamedCache with a specific jsessionid.
    If it is possible, please let me know how to implement it.
    Thanks in advance,
    YH

    Hi sangee,
    you could get what you want to do by using a Java Server Page instead of both a HTML page and a Servlet.
    I should code something like this:
    <%Strung color="yourColor"%>
    <html><head><title></title></head>
    <body bgcolor="<%=color%>
    </body>
    </html>

  • OIM 11gR2 - custom attribute with illegal binding on Create User form in published sandbox

    Hi,
    I think I have managed to paint myself into a corner!
    In OIM 11gR2 I have added a number of custom attributes to the "User Form" - some Text-, some Lookup-type attributes.
    While customizing the "Create User" page within a sandbox and adding a SelectOneChoice item and fiddling around with its binding, I was distracted by a phone call and the browser timed out.
    The binding property on the new item is now not correct and the sandbox has unfortunately been published, and I am now unable to enter the "Create User" page - when I try, I get the following:
    <Sep 23, 2013 2:39:11 PM CEST> <Warning> <oracle.adf.view.rich.component.fragment.UIXRegion> <ADF_FACES-00009> <Error processing viewId: /user/createView URI: /oracle/iam/ui/runtime/form/view/pages/userCreateForm.jsff actual-URI: /oracle/iam/ui/runtime/form/view/pages/userCreateForm.jsff.
    javax.el.PropertyNotFoundException: Target Unreachable, 'ekstraresource1__c' returned null
            at com.sun.el.parser.AstValue.getTarget(AstValue.java:108)
            at com.sun.el.parser.AstValue.isReadOnly(AstValue.java:149)
            at com.sun.el.ValueExpressionImpl.isReadOnly(ValueExpressionImpl.java:248)
            at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:486)
            at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.cacheReadOnly(EditableValueRenderer.java:416)
            at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.beforeEncode(LabeledInputRenderer.java:128)
            at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:340)
    <Sep 23, 2013 2:39:11 PM CEST> <Warning> <oracle.adf.view.rich.component.fragment.UIXRegion> <ADF_FACES-00009> <Error processing viewId: /catalog-tf/cart-details URI: /oracle/iam/ui/catalog/pages/cart-details.jsff actual-URI: /oracle/iam/ui/catalog/pages/cart-details.jsff.
    javax.el.PropertyNotFoundException: Target Unreachable, 'ekstraresource1__c' returned null
            at com.sun.el.parser.AstValue.getTarget(AstValue.java:108)
            at com.sun.el.parser.AstValue.isReadOnly(AstValue.java:149)
            at com.sun.el.ValueExpressionImpl.isReadOnly(ValueExpressionImpl.java:248)
            at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:486)
            at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.cacheReadOnly(EditableValueRenderer.java:416)
            at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.beforeEncode(LabeledInputRenderer.java:128)
            at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:340)
    Caused By: java.io.IOException: javax.el.PropertyNotFoundException: Target Unreachable, 'ekstraresource1__c' returned null
            at oracle.adfinternal.view.page.editor.renderkit.PageCustomizableRenderer.encodeAll(PageCustomizableRenderer.java:764)
            at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
            at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
            at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
            at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
            at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
    etc.
    Of course the sandbox should not have been published - but it is - and I am stuck trying to figure out how to somehow undo this mess.
    Is it possible to clean up this mess by diving to the database and removing some rows from the right tables - or perform some other operations undo my mistake?
    Thanks in advance,
    - Tom

    oim version is oim 11gR2 with BP4

  • LDAP Sync is not working on custom attributes

    Gurus,
    I have installed and configured OIM 11g release 2. While configuring OIM, i have enabled ldapsync to OID.
    Created a custom attribute in OID and also on OIM. But when I change this attribute in OIM, that change is not going to OID and vice versa. There are not errors in the logs.
    Please throw some light on this.

    While creating a custom attribute in oim, you will give label, name right..At the same time there will be an option to provide ldap attribute name. You need to provide the name of the attribute that you created in OID here. Then only ldap sync will work on custom attributes. without specifying ldap attribute name, ldap sync wiill not work.
    Give a try and post your results here.

  • Dealing with custom attributes in sp11

    Hi all
    I need to do following changes to some custom attributes in ep7 sp11:
    1) change label of standard attributes on the registration page/user profile
    2) make certain attributes mandatory
    I was able to accomplish 1) in sp4 through adminlabels.properties file, but not in sp11
    Can somebody tell how to accomplish the above requirement in sp11
    Thanks

    Isn't there anyone who has had any past experience or atleast give some useful pointers to these?

  • Override attribute label values?

    Hi!
    I want to override view attribute label default values and replace them with translations that I get from a database table.
    I've made custom classes TranslateViewDefImpl (overriden function 'getAttributeDefImpls') which extends ViewDefImpl, TranslateViewObjectImpl (overriden 'getViewAttributeDefImpls') extends ViewObjectImpl, TranslateViewRowImpl (overriden 'createViewRowAttrHints' following this post) extends ViewRowImpl where I try to override attribute definitions.
    I used 'setProperty' method on attribute definitions to set 'AttributeHints.ATTRIBUTE_LABEL' and at first everything seemed fine - the right attribute translation appeared. But the problem is when we have two or more clients with different locale using the same page. In overriden methods using 'adi.setProperty(AttributeHints.ATTRIBUTE_LABEL, labelTranslation)', label gets set to the right client's (A) locale translation, but the problem is when another client B with different locale accesses the same page. At first he sees the right translations, but when the first client A refreshes the page, all attribute label translations are in the wrong locale (using client B's locale). When client A refreshes the page again, labels are in the right locale again, but when client B refreshes, he sees client A's locale translations.
    It looks like these overriden classes are all static for the whole application and when a property gets set, all clients are using the same property, adi.getProperty(AttributeHints.ATTRIBUTE_LABEL) returns the same value for all clients using the application.
    Then I stumbled accross this next post. At first I thought I've found the solution, but when I tried this approach it didn't work. This is the code:
    AttributeDefImpl at = (AttributeDefImpl) vo.getAttributeDef(0); 
         at.setProperty(AttributeDefImpl.ATTRIBUTE_LABEL +"_ResId",  
                        "VEmployees.Id_LABEL"); 
         at = (AttributeDefImpl) vo.getAttributeDef(1); 
         at.setProperty(AttributeDefImpl.ATTRIBUTE_LABEL +"_ResId",  
                        "VEmployees.LastName_LABEL"); 
         ViewDefImpl viewDef = (ViewDefImpl) ((ViewObjectImpl) vo).getDef(); 
         //Create custom properties bundle definition 
         PropertiesBundleDef rb = new PropertiesBundleDef(viewDef); 
         rb.setPropertiesFile("com.cs.blog.dynamicbundle.model.VEmployeesBundle"); 
         viewDef.setResourceBundleDef(rb); 
    I can't find anywhere documentation using "_ResId" with AttributeDefImpl.ATTRIBUTE_LABEL and setting my own resource bundle (that gets all translations from a database source). When I use this approach, attribute label values are not changed and have their default value.
    Please help. Is my approach way off? How did you translate view attribute labels using database translations?
    I'm using JDevelper 11.1.2.3.0

    Marko,
    All you need is:
    1. Your EO to point towards a ListResourceBundle class, instead of the default property bundle, as I described above.
    2. Each EO attribute to have the right name for the label:
        <Attribute
              Name="CountryNo"
              Precision="22"
              ColumnName="CountryNo"
              SQLType="NUMBER"
              Type="java.math.BigDecimal"
              ColumnType="NUMBER"
              IsPersistent="false"
              IsUpdateable="false">
            <Properties>
                <SchemaBasedProperties>
                    <LABEL
                          ResId="COUNTRY_NO_LABEL"/>
                    <FMT_FORMATTER
                          ResId="DefaultNumberFormatter_FMT_FORMATTER"/>
                    <FMT_FORMAT
                          ResId="MASK_NUMBER_1"/>
                </SchemaBasedProperties>
            </Properties>
        </Attribute>
    Here, you will need COUNTRY_NO_LABEL to be a key in your  dynamic resource bundle .
    As for my last comments, I am just pointing out that if you will add your labels through JDeveloper UI (through UI Hints tab), JDeveloper might try to change your code from ListResource class. Is why is better to do it manually, I think.
    Hope this helps,
    Florin

  • Adress list custom attribut user in multiple group

    Hello,
    I am trying to configure some distribution group in exchange 2007
    I wanted to have list based on my OU but i cant find how so i went with custom attribut
    I put my member in the correct service BUT i have the manager that need to be on all the group and some user in2 or 3 group.
    I cant figure how and where to do this!
    Can you help?

    So you're trying to use Dynamic Distribution Groups?
    If you're creating the DDG using the Exchange Management Console just be sure to select the "recipient container" in the second dialog box (the one labeled "Filter Settings").
    Sometimes its easier to create a "normal" static distribution group and then add the DDGs as members. You can add the DDG that selects the managers to as many different groups as you like. You may wind up with more groups, be the filter on the DDGs will
    be much easier to understand (or to create if you must use Powershell to construct the DDG).
    --- Rich Matheisen MCSE&I, Exchange MVP

  • Extracting custom attributes for individual objects

    CRM service maintain those custom attributes and set types. By checking the 'BW relevant', it generates all the custom data sources for BW. The data sources are in $tmp, but can be viewd in RSO2.
    Those custom attributes can be added to 0crmp_prod and updated via flexible update from those generated datasource. My concern is that it creates a lot of maintenance depending on the number of set types maintained in CRM. Currently there are about 50 set types being maintained in CRM, which means additional 50 transfer rules for 0crm_prod.
    My question is whether there is more efficient way to handle this situation.
    Thanks for any suggestion.
    Jennifer

    It sounds as if your custom attributes may not have been created properly which is leading to your current problem. When creating a new attribute, one of the final steps is adding it to a specific 'Class'.  This is where you choose
    Computer or User or any other specific need you have.  It sounds very much like this is the piece that has been missed.
    To fix it you'll first need to clean out the User specific pieces that have gotten into the system.  Easier said than done, I understand, but it will be crucial going forward.  Once cleaned, add the attributes to the Computer class one at a time
    using the Active Directory Schema admin tool.  You will need to be a member of the Enterprise Admins to add yourself into the Schema Admins and please remember to remove yourself after you are done (Best Practice). 
    Refer to this for additional info:
    http://social.technet.microsoft.com/wiki/contents/articles/20319.how-to-create-a-custom-attribute-in-active-directory.aspx
    and: 
    http://blogs.technet.com/b/isingh/archive/2007/02/18/adding-custom-attributes-in-active-directory.aspx
    Hope that helps
    Gary
    Gary G. Gray
     MCP, MCTS, MCITP, MCT Alumni
    Please remember to mark the replies as answers if they are helpful.
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

  • ACS 5 search in custom attributes

    Hi there
    on ACS 5 we have the possibility to add custom attributes under System Administration > Configuration > Dictionaries > Identity > Internal xxx.
    At the moment there seems no way to search for a value of a custom attribute or even display a column with the custom attribute under Internal Users or Internal Hosts. Does Cisco have plans to implement this in the future?
    Thanks and best regards
    Dominic

    Good question, I'd like to know this as well for the netscreens. For junos, this is how I tried to do it (you would drop the "netscreen" from yours, but not sure if you would add both as mandatory)
    Acs4.x setup
    junos-exec
      local-user-name=readonly
    acs5.2 setup
    attribute -  local-user-name
    value - readonly
    mandatory
    # junos config
        login {
            class admin {
                idle-timeout 30;
                permissions all;
            class read-only {
                idle-timeout 30;
                permissions [ view view-configuration ];
            user admin {                                 
                class admin;                 
            user readonly {                                 
                class read-only;  
    The problem I have though, is this fixes my login to work to my JunOS devices, but it breaks the authentication to my Cisco IOS devices. The AAA logs show that the authentication succeeded, but the router says "authorization failed". Once I remove either the attribute from my shell profile, or make it optional then the Cisco router works for auth, but the JunOS device stops working (The username it tries to use is "remote" instead of the user I am trying to authenticate with).

  • Custom "All" label in af:selectManyChoice / with Skinning

    Hi everyone,
    I would like to continue this thread :
    [ER] Custom "All" label in <af:selectManyChoice />
    Where was discussed about the af:selectManyChoice component. I'm currently using jdev 11.1.2, and I realised that none attribute was created in order to custom "All" label.
    I wanna do this requirement with Skinning, but I didn't found how can I do this? Anyone can help me?

    Check the sample where the label for 'All' is modified to 'Entire Set of drinks':
    http://adfsampleapplications.googlecode.com/svn/trunk/SelectManyChoice.rar
    Check for SkinBundle.properties which has the key and is registered in trinidad-skins.xml
    Thanks,
    Navaneeth

Maybe you are looking for